Dialectical CES
Project description
neondroplets
Auto-generated OpenAPI spec for CES SDK generation. Build: 202605082119
This Python package is automatically generated by the OpenAPI Generator project:
- API version: 1.0.3+build.202605082119
- Package version: 1.0.3
- Generator version: 7.23.0-SNAPSHOT
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
Requirements.
Python 3.10+
Installation & Usage
pip install
If the python package is hosted on a repository, you can install directly using:
pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git
(you may need to run pip with root permission: sudo pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git)
Then import the package:
import neondroplets
Setuptools
Install via Setuptools.
python setup.py install --user
(or sudo python setup.py install to install the package for all users)
Then import the package:
import neondroplets
Tests
Execute pytest to run the tests.
Getting Started
Please follow the installation procedure and then run the following:
import neondroplets
from neondroplets.rest import ApiException
from pprint import pprint
# Defining the host is optional and defaults to http://localhost
# See configuration.py for a list of all supported configuration parameters.
configuration = neondroplets.Configuration(
host = "http://localhost"
)
# Enter a context with an instance of the API client
with neondroplets.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = neondroplets.AGUIApi(api_client)
event_batch = neondroplets.EventBatch() # EventBatch |
try:
# Handle Events
api_response = api_instance.handle_events(event_batch)
print("The response of AGUIApi->handle_events:\n")
pprint(api_response)
except ApiException as e:
print("Exception when calling AGUIApi->handle_events: %s\n" % e)
Documentation for API Endpoints
All URIs are relative to http://localhost
| Class | Method | HTTP request | Description |
|---|---|---|---|
| AGUIApi | handle_events | POST /api/v1/ag-ui/events | Handle Events |
| AgentsApi | agent_execute | POST /api/v1/agents/{agent_id}/execute | Agent Execute |
| AgentsApi | agents_get_agent_card | GET /api/v1/.well-known/agents/{agent_id}/card.json | Get Agent Card |
| AgentsApi | clone_template | POST /api/v1/{agent_id}/prompts/clone | Clone Template |
| AgentsApi | create_agent | POST /api/v1/agents | Create Agent |
| AgentsApi | create_agent_prompt | POST /api/v1/{agent_id}/prompts | Create Agent Prompt |
| AgentsApi | create_eval_case | POST /api/v1/agents/eval/datasets/{dataset_id}/cases | Create Eval Case |
| AgentsApi | create_eval_dataset | POST /api/v1/agents/eval/datasets | Create Eval Dataset |
| AgentsApi | create_knowledge_base | POST /api/v1/knowledge-bases | Create Knowledge Base |
| AgentsApi | create_semantic_model | POST /api/v1/semantic-models | Create Semantic Model |
| AgentsApi | delete_agent | DELETE /api/v1/agents/{agent_id} | Delete Agent |
| AgentsApi | delete_eval_case | DELETE /api/v1/agents/eval/datasets/{dataset_id}/cases/{case_id} | Delete Eval Case |
| AgentsApi | delete_eval_dataset | DELETE /api/v1/agents/eval/datasets/{dataset_id} | Delete Eval Dataset |
| AgentsApi | delete_eval_run | DELETE /api/v1/agents/eval/run/{run_id} | Delete Eval Run |
| AgentsApi | delete_knowledge_base | DELETE /api/v1/knowledge-bases/{kb_id} | Delete Knowledge Base |
| AgentsApi | delete_prompt | DELETE /api/v1/{agent_id}/prompts/{agent_prompt_id} | Delete Prompt |
| AgentsApi | discovery_agents | GET /api/v1/discovery/agents | Discovery Agents |
| AgentsApi | discovery_search | POST /api/v1/discovery/search | Discovery Search |
| AgentsApi | discovery_servers | GET /api/v1/discovery/mcp-servers | Discovery Servers |
| AgentsApi | discovery_tools | GET /api/v1/discovery/tools | Discovery Tools |
| AgentsApi | execute_consensus | POST /api/v1/consensus | Execute Consensus |
| AgentsApi | execute_switchboard | POST /api/v1/switchboard | Execute Switchboard |
| AgentsApi | get_agent | GET /api/v1/agents/{agent_id} | Get Agent |
| AgentsApi | get_agent_card | GET /api/v1/agents/{agent_id}/card.json | Get Agent Card |
| AgentsApi | get_eval_run_results | GET /api/v1/agents/eval/run/{run_id}/results | Get Eval Run Results |
| AgentsApi | get_eval_run_status | GET /api/v1/agents/eval/run/{run_id} | Get Eval Run Status |
| AgentsApi | get_prompt_history | GET /api/v1/{agent_id}/prompts/history | Get Prompt History |
| AgentsApi | get_semantic_model | GET /api/v1/semantic-models/{model_id} | Get Semantic Model |
| AgentsApi | inference_step | POST /api/v1/agents/{agent_id}/inference/step | Inference Step |
| AgentsApi | list_agent_prompts | GET /api/v1/{agent_id}/prompts | List Agent Prompts |
| AgentsApi | list_agent_versions | GET /api/v1/{agent_id}/versions | List Agent Versions |
| AgentsApi | list_agents | GET /api/v1/agents | List Agents |
| AgentsApi | list_all_prompts | GET /api/v1/prompts | List All Prompts |
| AgentsApi | list_eval_cases | GET /api/v1/agents/eval/datasets/{dataset_id}/cases | List Eval Cases |
| AgentsApi | list_eval_datasets | GET /api/v1/agents/eval/datasets | List Eval Datasets |
| AgentsApi | list_eval_runs | GET /api/v1/agents/eval/runs | List Eval Runs |
| AgentsApi | list_knowledge_bases | GET /api/v1/knowledge-bases | List Knowledge Bases |
| AgentsApi | list_semantic_models | GET /api/v1/semantic-models | List Semantic Models |
| AgentsApi | list_semantic_shapes | GET /api/v1/semantic-models/shapes | List Semantic Shapes |
| AgentsApi | list_tools_alias | GET /api/v1/tools | List Tools Alias |
| AgentsApi | patch_agent | PATCH /api/v1/agents/{agent_id} | Patch Agent |
| AgentsApi | patch_prompt | PATCH /api/v1/{agent_id}/prompts/{agent_prompt_id} | Patch Prompt |
| AgentsApi | restore_agent_version | POST /api/v1/{agent_id}/versions/restore | Restore Agent Version |
| AgentsApi | seed_knowledge_base | POST /api/v1/knowledge-bases/{kb_id}/seed | Seed Knowledge Base |
| AgentsApi | trigger_eval_run | POST /api/v1/agents/eval/run | Trigger Eval Run |
| AgentsApi | trigger_pairwise_eval_run | POST /api/v1/agents/eval/run/pairwise | Trigger Pairwise Eval Run |
| AgentsApi | update_eval_case | PATCH /api/v1/agents/eval/datasets/{dataset_id}/cases/{case_id} | Update Eval Case |
| AgentsApi | update_eval_dataset | PATCH /api/v1/agents/eval/datasets/{dataset_id} | Update Eval Dataset |
| MCPApi | call_tool | POST /api/v1/mcp/tools/call | Call Tool |
| MCPApi | delete_server | DELETE /api/v1/mcp/servers/{server_id} | Delete Server |
| MCPApi | discover_models | POST /api/v1/mcp/discover | Discover Models |
| MCPApi | list_servers | GET /api/v1/mcp/servers | List Servers |
| MCPApi | list_tools | GET /api/v1/mcp/tools | List Tools |
| MCPApi | register_server | POST /api/v1/mcp/servers | Register Server |
| MCPApi | sync_server | POST /api/v1/mcp/servers/{server_id}/sync | Sync Server |
| MCPApi | update_server | PATCH /api/v1/mcp/servers/{server_id} | Update Server |
| MCPHubApi | get_hub_blueprint | GET /api/v1/mcp-hub/{registry_id} | Get Hub Blueprint |
| MCPHubApi | install_blueprint_nested | POST /api/v1/projects/{project_id}/mcp-servers/install | Install Blueprint Nested |
| MCPHubApi | list_hub_blueprints | GET /api/v1/mcp-hub | List Hub Blueprints |
| MCPHubApi | list_hub_publishers | GET /api/v1/mcp-hub/publishers | List Hub Publishers |
| MCPHubApi | publish_blueprint | POST /api/v1/mcp-hub | Publish Blueprint |
| MCPHubApi | sync_hub_blueprints | POST /api/v1/mcp-hub/sync | Sync Hub Blueprints |
| ObservabilityApi | get_trace_detail | GET /api/v1/observability/traces/{trace_id} | Get Trace Detail |
| ObservabilityApi | get_traces | GET /api/v1/observability/traces | Get Traces |
| PromptsApi | create_prompt | POST /api/v1/prompt-templates | Create Prompt |
| PromptsApi | get_prompt | GET /api/v1/prompt-templates/{template_id} | Get Prompt |
| PromptsApi | list_prompts | GET /api/v1/prompt-templates | List Prompts |
| PromptsApi | prompts_delete_prompt | DELETE /api/v1/prompt-templates/{template_id} | Delete Prompt |
| PromptsApi | update_prompt | PATCH /api/v1/prompt-templates/{template_id} | Update Prompt |
| ApplicationsApi | bind_agents | POST /api/v1/mas-apps/{app_id}/agents | Bind Agents |
| ApplicationsApi | bind_semantic_domain | POST /api/v1/mas-apps/{app_id}/semantic-domains | Bind Semantic Domain |
| ApplicationsApi | create_application | POST /api/v1/mas-apps | Create Application |
| ApplicationsApi | debug_route | GET /api/v1/mas-apps/debug | Debug Route |
| ApplicationsApi | delete_application | DELETE /api/v1/mas-apps/{app_id} | Delete Application |
| ApplicationsApi | get_blackboard | GET /api/v1/mas-apps/{app_id}/blackboard/{session_id} | Get Blackboard |
| ApplicationsApi | list_app_agents | GET /api/v1/mas-apps/{app_id}/agents | List App Agents |
| ApplicationsApi | list_applications | GET /api/v1/projects/{project_id}/mas-apps | List Applications |
| ApplicationsApi | list_semantic_bindings | GET /api/v1/mas-apps/{app_id}/semantic-domains | List Semantic Bindings |
| ApplicationsApi | patch_application | PATCH /api/v1/mas-apps/{app_id} | Patch Application |
| ApplicationsApi | unbind_agent | DELETE /api/v1/mas-apps/{app_id}/agents/{agent_id} | Unbind Agent |
| ApplicationsApi | unbind_semantic_domain | DELETE /api/v1/mas-apps/{app_id}/semantic-domains/{domain_id} | Unbind Semantic Domain |
| ApplicationsApi | update_blackboard | POST /api/v1/mas-apps/{app_id}/blackboard/{session_id} | Update Blackboard |
| ChatApi | chat_completions | POST /api/v1/chat/completions | Chat Completions |
| ConfigApi | add_model_to_provider | POST /api/v1/config/providers/{provider_name}/models | Add Model To Provider |
| ConfigApi | config_events | GET /api/v1/config/events | Config Events |
| ConfigApi | create_folder | POST /api/v1/config/folders | Create Folder |
| ConfigApi | create_model_provider | POST /api/v1/config/providers | Create Model Provider |
| ConfigApi | delete_asset | DELETE /api/v1/config/assets/{modality}/{asset_id} | Delete Asset |
| ConfigApi | delete_folder | DELETE /api/v1/config/folders/{folder_id} | Delete Folder |
| ConfigApi | delete_model | DELETE /api/v1/config/models/{model_id} | Delete Model |
| ConfigApi | delete_model_provider | DELETE /api/v1/config/providers/{provider_name} | Delete Model Provider |
| ConfigApi | get_active_model | GET /api/v1/config/active-model | Get Active Model |
| ConfigApi | get_assets | GET /api/v1/config/assets | Get Assets |
| ConfigApi | get_configuration_targets | GET /api/v1/config/targets | Get Configuration Targets |
| ConfigApi | get_model_configuration | GET /api/v1/config/models | Get Model Configuration |
| ConfigApi | get_semantic_config | GET /api/v1/config/admin/semantic-config | Get Semantic Config |
| ConfigApi | get_spiral_config | GET /api/v1/config/admin/spiral-config | Get Spiral Config |
| ConfigApi | get_system_config | GET /api/v1/config/system/{key} | Get System Config |
| ConfigApi | list_folders | GET /api/v1/config/folders | List Folders |
| ConfigApi | move_asset | POST /api/v1/config/assets/{asset_id}/move | Move Asset |
| ConfigApi | proxy_asset | GET /api/v1/config/assets/{org_id}/{user_id}/{modality}/{asset_id} | Proxy Asset |
| ConfigApi | register_configuration_target | POST /api/v1/config/targets/register | Register Configuration Target |
| ConfigApi | set_active_model | POST /api/v1/config/active-model | Set Active Model |
| ConfigApi | set_semantic_config_bulk | POST /api/v1/config/admin/semantic-config/bulk | Set Semantic Config Bulk |
| ConfigApi | set_spiral_config_bulk | POST /api/v1/config/admin/spiral-config/bulk | Set Spiral Config Bulk |
| ConfigApi | set_system_config | POST /api/v1/config/system | Set System Config |
| ConfigApi | test_provider_connection | POST /api/v1/config/test-connection | Test Provider Connection |
| ConfigApi | update_model | PUT /api/v1/config/models/{model_id} | Update Model |
| ConfigApi | update_model_provider | PUT /api/v1/config/providers/{provider_name} | Update Model Provider |
| ConfigApi | upload_asset | POST /api/v1/config/upload | Upload Asset |
| ContextApi | generate_context | POST /api/v1/context | Generate Context |
| ContextApi | generate_context_stream | POST /api/v1/context/stream | Generate Context Stream |
| ContextApi | generate_response | POST /api/v1/generate | Generate Response |
| ContextApi | generate_response_stream | POST /api/v1/generate/stream | Generate Response Stream |
| ContextApi | get_model_catalog | GET /api/v1/context/models/catalog | Get Model Catalog |
| ContextApi | get_model_tasks | GET /api/v1/context/models/tasks | Get Model Tasks |
| ContextApi | persist_model | POST /api/v1/context/models/persist | Persist Model |
| DomainsApi | create_domain | POST /api/v1/domains | Create Domain |
| DomainsApi | delete_domain | DELETE /api/v1/domains/{normalized} | Delete Domain |
| DomainsApi | get_domain | GET /api/v1/domains/{normalized} | Get Domain |
| DomainsApi | get_domains | GET /api/v1/domains | Get Domains |
| DomainsApi | update_domain | PUT /api/v1/domains/{normalized} | Update Domain |
| PresetsApi | get_all_multimodal_presets | GET /api/v1/config/presets/multimodal | Get All Multimodal Presets |
| PresetsApi | get_all_provider_templates | GET /api/v1/config/presets/providers | Get All Provider Templates |
| PresetsApi | get_specific_multimodal_preset | GET /api/v1/config/presets/multimodal/{provider_type} | Get Specific Multimodal Preset |
| ProjectsApi | create_project | POST /api/v1/projects | Create Project |
| ProjectsApi | get_project | GET /api/v1/projects/{project_id} | Get Project |
| ProjectsApi | get_project_quota | GET /api/v1/projects/quota | Get Project Quota |
| ProjectsApi | list_projects | GET /api/v1/projects | List Projects |
| SemanticApi | branch_semantic_model | POST /api/v1/semantic/models/branch | Branch Semantic Model |
| SemanticApi | compile_graph | POST /api/v1/semantic/compile | Compile Graph |
| SemanticApi | compose_shapes | POST /api/v1/semantic/shapes/compose | Compose Shapes |
| SemanticApi | copilot_stream | POST /api/v1/semantic/copilot/stream | Copilot Stream |
| SemanticApi | create_semantic_model_post | POST /api/v1/semantic/create | Create Semantic Model |
| SemanticApi | discovery_stream | POST /api/v1/semantic/discovery/stream | Discovery Stream |
| SemanticApi | get_semantic_model | GET /api/v1/semantic/models/{model_id} | Get Semantic Model |
| SemanticApi | get_shape_details | GET /api/v1/semantic/shapes/{shape_id} | Get Shape Details |
| SemanticApi | list_domains | GET /api/v1/semantic/domains | List Domains |
| SemanticApi | list_model_versions | GET /api/v1/semantic/models/versions/{domain_id} | List Model Versions |
| SemanticApi | list_semantic_models_get | GET /api/v1/semantic/models | List Semantic Models |
| SemanticApi | list_semantic_shapes_get | GET /api/v1/semantic/shapes | List Semantic Shapes |
| SemanticApi | propose_migration | POST /api/v1/semantic/models/propose-migration | Propose Migration |
| SemanticApi | publish_semantic_model | POST /api/v1/semantic/models/publish | Publish Semantic Model |
| SemanticApi | rename_domain | PATCH /api/v1/semantic/domains/{domain_id} | Rename Domain |
| SemanticApi | semantic_create_domain | POST /api/v1/semantic/domains | Create Domain |
| SemanticApi | semantic_delete_domain | DELETE /api/v1/semantic/domains/{domain_id} | Delete Domain |
| SemanticApi | validate_ontology | POST /api/v1/semantic/validate | Validate Ontology |
| SessionsApi | add_history | POST /api/v1/history | Add History |
| SessionsApi | clear_all_sessions | DELETE /api/v1/sessions | Clear All Sessions |
| SessionsApi | delete_session | DELETE /api/v1/sessions/{session_id} | Delete Session |
| SessionsApi | get_all_sessions | GET /api/v1/sessions | Get All Sessions |
| SessionsApi | get_session_details | GET /api/v1/sessions/{session_id} | Get Session Details |
| SessionsApi | get_sessions_by_topic | GET /api/v1/sessions/by-topic/{topic_name} | Get Sessions By Topic |
| SessionsApi | update_session_snippet | PUT /api/v1/sessions/{session_id}/snippet | Update Session Snippet |
| TopicsApi | clear_all_topics | DELETE /api/v1/topics | Clear All Topics |
| TopicsApi | create_topic | POST /api/v1/topics | Create Topic |
| TopicsApi | delete_topic | DELETE /api/v1/topics/{topic_name} | Delete Topic |
| TopicsApi | get_topic_tree | GET /api/v1/topics/tree | Get Topic Tree |
Documentation For Models
- AGUIEvent
- ActiveModelRequest
- AgentCard
- AgentCardCapability
- AgentCardIdentity
- AgentCardInterface
- AgentCardOpsMetadata
- AgentCreate
- AgentInferenceRequest
- AgentPatch
- BlueprintPublishRequest
- BranchModelRequest
- BulkSystemConfigRequest
- CapabilitiesInner
- CompileRequest
- ComposeShapeRequest
- ConfigTargetCreate
- ConsensusRequest
- Content
- ContextResponse
- CopilotStreamRequest
- CreateDomainRequest
- CreateSemanticModelRequest
- CreateTopicRequest
- DiscoveryStreamRequest
- DomainCreate
- DomainResponse
- EvaluationRunConfig
- EvaluationRunRequest
- EventBatch
- ExternalChatRequest
- ExternalChatResponse
- FinalContext
- FolderCreate
- GenerationRequest
- HTTPValidationError
- HistoryRequest
- InstallBlueprintRequest
- KnowledgeBaseCreate
- KnowledgeBaseResponse
- LocationInner
- MCPServerRegister
- MCPServerUpdate
- ModelCreate
- ModelPersistRequest
- OriginalPrompt
- PairwiseEvaluationRunRequest
- ProjectCreate
- ProjectResponse
- Prompt
- ProposeMigrationRequest
- ProviderCreate
- PublishModelRequest
- RenameDomainRequest
- SemanticModelCreate
- SwitchboardRequest
- SystemConfigRequest
- TaskCategoryResponse
- ToolCallRequest
- UpdateSnippetRequest
- ValidateOntologyRequest
- ValidationError
- VariableMapping
Documentation For Authorization
Endpoints do not require authorization.
Author
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file neondroplets-1.0.3.tar.gz.
File metadata
- Download URL: neondroplets-1.0.3.tar.gz
- Upload date:
- Size: 116.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7b8489537605eb3f6c76e28707ecc881a2ec3d8dd8871f67f8f5f10348a23c41
|
|
| MD5 |
b24575041eb6b30fb4dcdf6dbc35e29f
|
|
| BLAKE2b-256 |
af3e7cdda3f2c5697bccda21378a99472eef4e33c0d99e30ecada068d327fe79
|
File details
Details for the file neondroplets-1.0.3-py3-none-any.whl.
File metadata
- Download URL: neondroplets-1.0.3-py3-none-any.whl
- Upload date:
- Size: 196.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
53fa9d5b987faeba53721451e58b65bc64d8ed496fc130ce0f1b68adf576d96f
|
|
| MD5 |
db2a8f147a211ef69e893bfa88e50f5a
|
|
| BLAKE2b-256 |
846ae609818bcc7140bf70927f9e4c97a858a50d89258e994c8b8b4adf94636f
|