Core functionality for interfacing with the ConfidentialMind stack
Project description
ConfidentialMind Core
Overview
The ConfidentialMind core package is a Python library that provides core functionality for interfacing with the ConfidentialMind stack. It manages configurations, handles connections between services, and provides utilities for both local development and deployment within the ConfidentialMind ecosystem.
Installation
pip install confidentialmind-core
Features
- Configuration management with real-time updates
- Service connectivity within the ConfidentialMind stack
- Support for local development and stack deployment
Usage
Initializing the ConfigManager
from confidentialmind_core.config_manager import ConfigManager, ConnectorSchema
config_manager = ConfigManager()
config_manager.init_manager(
config_model=YourConfigModel,
connectors=[ConnectorSchema(...)]
)
Using ConfigManager with Streamlit
(Requires Streamlit and the confidentialmind-app-helpers package)
from confidentialmind_app_helpers.streamlit_utils.config_manager_streamlit import init_config_manager
config_manager = init_config_manager(
config_model=YourConfigModel,
connectors=[ConnectorSchema(...)]
)
Accessing Configurations and Connectors
# Get the current configuration
config = config_manager.config
# Get the list of connectors
connectors = config_manager.connectors
# Get the stack ID for a specific connector
stack_id = config_manager.getStackIdForConnector("connector_config_id")
# Get the URL for a specific connector
url = config_manager.getUrlForConnector("connector_config_id")
Local Development
For local development:
- Create a
.env
file in the root directory of your project. - Add the following lines to the
.env
file:CONFIDENTIAL_MIND_LOCAL_CONFIG=True
- If your software has connectors and the respective service is also running locally, add the connector URLs to the
.env
file as well. For example, if the connector ID isllm_connector
and the URL ishttp://localhost:8083
, add the following line:llm_connector_URL=http://localhost:8083
- If you want to connect a locally running service to a service running on a remote ConfidentialMind stack, add the URL and API key for the remote service to the
.env
file. For example, if the connector ID isllm_connector
and the API key isyour-api-key
, add the following lines:
Note: The URL and API key can be created and obtained from the ConfidentialMind portal: navigate to the service you want to connect to, click on the "API Keys" tab, and create a new API key. The URL and API key will be displayed there. You can also click the "Copy .env" button to copy the required environment variables to your clipboard. However, you must still replace the placeholder connector ID with the correct ID in thellm_connector_URL=https://api.example.com/api/hrevxyjgdfwxkaguhpab/ llm_connector_APIKEY=your-api-key
.env
file. - The environment variables will be automatically loaded when you run the application.
The ConfigManager
will use these environment variables to configure the application for local development.
Note
This package is designed to work within the ConfidentialMind ecosystem. Ensure you have the necessary permissions and access to the ConfidentialMind stack before using this package in a production environment.
For more detailed information on the ConfidentialMind SDK and its capabilities, please refer to the main SDK documentation.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
File details
Details for the file confidentialmind_core-0.1.3.post1-py3-none-any.whl
.
File metadata
- Download URL: confidentialmind_core-0.1.3.post1-py3-none-any.whl
- Upload date:
- Size: 17.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 86027039a7b59800fd17863700d28a7ce974cd7e3422b1094d7082cba9c4fdd5 |
|
MD5 | 1aa6a2d7e087725a46319f019cd2f65f |
|
BLAKE2b-256 | fd23a055d6e778d1031f9ffa6b04faf7970a1b5e8a43aa7a8a61de34b580d17a |