superoptix 0.2.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- superoptix-0.2.4/.github/ISSUE_TEMPLATE/bug_report.yml +94 -0
- superoptix-0.2.4/.github/ISSUE_TEMPLATE/feature_request.yml +122 -0
- superoptix-0.2.4/.github/ISSUE_TEMPLATE/question.yml +103 -0
- superoptix-0.2.4/.github/pull_request_template.md +100 -0
- superoptix-0.2.4/.github/workflows/ci.yml +44 -0
- superoptix-0.2.4/.github/workflows/release.yml +74 -0
- superoptix-0.2.4/.github/workflows/ruff.yml +29 -0
- superoptix-0.2.4/.gitignore +82 -0
- superoptix-0.2.4/.pre-commit-config.yaml +15 -0
- superoptix-0.2.4/.python-version +1 -0
- superoptix-0.2.4/.superoptix/memory/memory.db +0 -0
- superoptix-0.2.4/AGENTS.md +39 -0
- superoptix-0.2.4/CHANGELOG.md +292 -0
- superoptix-0.2.4/CODE_OF_CONDUCT.md +128 -0
- superoptix-0.2.4/CONTRIBUTING.md +199 -0
- superoptix-0.2.4/LICENCE +190 -0
- superoptix-0.2.4/MANIFEST.in +72 -0
- superoptix-0.2.4/PKG-INFO +576 -0
- superoptix-0.2.4/README.md +181 -0
- superoptix-0.2.4/Reference/stackone/.cursor/rules/development-workflow.mdc +1 -0
- superoptix-0.2.4/Reference/stackone/.cursor/rules/examples-standards.mdc +1 -0
- superoptix-0.2.4/Reference/stackone/.cursor/rules/git-workflow.mdc +1 -0
- superoptix-0.2.4/Reference/stackone/.cursor/rules/no-relative-imports.mdc +1 -0
- superoptix-0.2.4/Reference/stackone/.cursor/rules/package-installation.mdc +1 -0
- superoptix-0.2.4/Reference/stackone/.cursor/rules/release-please-standards.mdc +1 -0
- superoptix-0.2.4/Reference/stackone/.cursor/rules/uv-scripts.mdc +1 -0
- superoptix-0.2.4/Reference/stackone/.envrc +1 -0
- superoptix-0.2.4/Reference/stackone/.github/actions/setup-nix/action.yaml +50 -0
- superoptix-0.2.4/Reference/stackone/.github/dependabot.yaml +46 -0
- superoptix-0.2.4/Reference/stackone/.github/workflows/ci.yaml +100 -0
- superoptix-0.2.4/Reference/stackone/.github/workflows/nix-flake-update.yaml +63 -0
- superoptix-0.2.4/Reference/stackone/.github/workflows/nix-flake.yaml +35 -0
- superoptix-0.2.4/Reference/stackone/.github/workflows/release.yaml +66 -0
- superoptix-0.2.4/Reference/stackone/.gitignore +19 -0
- superoptix-0.2.4/Reference/stackone/.gitleaks.toml +14 -0
- superoptix-0.2.4/Reference/stackone/.gitmodules +3 -0
- superoptix-0.2.4/Reference/stackone/.mcp.json +12 -0
- superoptix-0.2.4/Reference/stackone/.release-please-config.json +15 -0
- superoptix-0.2.4/Reference/stackone/.release-please-manifest.json +3 -0
- superoptix-0.2.4/Reference/stackone/CHANGELOG.md +178 -0
- superoptix-0.2.4/Reference/stackone/CLAUDE.md +117 -0
- superoptix-0.2.4/Reference/stackone/LICENSE +201 -0
- superoptix-0.2.4/Reference/stackone/README.md +375 -0
- superoptix-0.2.4/Reference/stackone/examples/crewai_integration.py +55 -0
- superoptix-0.2.4/Reference/stackone/examples/file_uploads.py +83 -0
- superoptix-0.2.4/Reference/stackone/examples/index.py +105 -0
- superoptix-0.2.4/Reference/stackone/examples/langchain_integration.py +51 -0
- superoptix-0.2.4/Reference/stackone/examples/openai_integration.py +93 -0
- superoptix-0.2.4/Reference/stackone/examples/stackone_account_ids.py +40 -0
- superoptix-0.2.4/Reference/stackone/examples/test_examples.py +62 -0
- superoptix-0.2.4/Reference/stackone/examples/utility_tools_example.py +214 -0
- superoptix-0.2.4/Reference/stackone/flake.lock +170 -0
- superoptix-0.2.4/Reference/stackone/flake.nix +120 -0
- superoptix-0.2.4/Reference/stackone/justfile +43 -0
- superoptix-0.2.4/Reference/stackone/pyproject.toml +118 -0
- superoptix-0.2.4/Reference/stackone/stackone_ai/__init__.py +11 -0
- superoptix-0.2.4/Reference/stackone/stackone_ai/constants.py +5 -0
- superoptix-0.2.4/Reference/stackone/stackone_ai/feedback/__init__.py +5 -0
- superoptix-0.2.4/Reference/stackone/stackone_ai/feedback/tool.py +225 -0
- superoptix-0.2.4/Reference/stackone/stackone_ai/integrations/__init__.py +20 -0
- superoptix-0.2.4/Reference/stackone/stackone_ai/integrations/langgraph.py +86 -0
- superoptix-0.2.4/Reference/stackone/stackone_ai/models.py +564 -0
- superoptix-0.2.4/Reference/stackone/stackone_ai/py.typed +0 -0
- superoptix-0.2.4/Reference/stackone/stackone_ai/toolset.py +415 -0
- superoptix-0.2.4/Reference/stackone/stackone_ai/utility_tools.py +347 -0
- superoptix-0.2.4/Reference/stackone/stackone_ai/utils/__init__.py +1 -0
- superoptix-0.2.4/Reference/stackone/stackone_ai/utils/tfidf_index.py +242 -0
- superoptix-0.2.4/Reference/stackone/tests/conftest.py +101 -0
- superoptix-0.2.4/Reference/stackone/tests/mocks/serve.ts +134 -0
- superoptix-0.2.4/Reference/stackone/tests/test_feedback.py +395 -0
- superoptix-0.2.4/Reference/stackone/tests/test_fetch_tools.py +442 -0
- superoptix-0.2.4/Reference/stackone/tests/test_integrations_langgraph.py +217 -0
- superoptix-0.2.4/Reference/stackone/tests/test_models.py +962 -0
- superoptix-0.2.4/Reference/stackone/tests/test_tfidf_index.py +452 -0
- superoptix-0.2.4/Reference/stackone/tests/test_tool_calling.py +333 -0
- superoptix-0.2.4/Reference/stackone/tests/test_toolset.py +355 -0
- superoptix-0.2.4/Reference/stackone/tests/test_utility_tools.py +494 -0
- superoptix-0.2.4/Reference/stackone/uv.lock +4966 -0
- superoptix-0.2.4/docs/agent-patterns.md +445 -0
- superoptix-0.2.4/docs/changelog.md +6 -0
- superoptix-0.2.4/docs/contributing.md +199 -0
- superoptix-0.2.4/docs/debugging-guide.md +71 -0
- superoptix-0.2.4/docs/environment-setup.md +262 -0
- superoptix-0.2.4/docs/examples/agents/gepa-integration.md +328 -0
- superoptix-0.2.4/docs/examples/agents/huggingface-demo.md +165 -0
- superoptix-0.2.4/docs/examples/agents/langfuse-integration.md +423 -0
- superoptix-0.2.4/docs/examples/agents/lmstudio-demo.md +161 -0
- superoptix-0.2.4/docs/examples/agents/memory-demo.md +182 -0
- superoptix-0.2.4/docs/examples/agents/milvus-demo.md +168 -0
- superoptix-0.2.4/docs/examples/agents/mlflow-integration.md +363 -0
- superoptix-0.2.4/docs/examples/agents/mlx-demo.md +154 -0
- superoptix-0.2.4/docs/examples/agents/observability-demo.md +174 -0
- superoptix-0.2.4/docs/examples/agents/ollama-demo.md +159 -0
- superoptix-0.2.4/docs/examples/agents/optimas-examples.md +316 -0
- superoptix-0.2.4/docs/examples/agents/qdrant-demo.md +164 -0
- superoptix-0.2.4/docs/examples/agents/rag-chroma-demo.md +186 -0
- superoptix-0.2.4/docs/examples/agents/rag-lancedb-demo.md +178 -0
- superoptix-0.2.4/docs/examples/agents/tools-demo.md +189 -0
- superoptix-0.2.4/docs/examples/agents/weaviate-demo.md +168 -0
- superoptix-0.2.4/docs/examples/agents/weights-biases-demo.md +413 -0
- superoptix-0.2.4/docs/examples/index.md +195 -0
- superoptix-0.2.4/docs/faq.md +287 -0
- superoptix-0.2.4/docs/favicon.png +0 -0
- superoptix-0.2.4/docs/glossary.md +3 -0
- superoptix-0.2.4/docs/guides/agent-development.md +547 -0
- superoptix-0.2.4/docs/guides/agent-discovery.md +311 -0
- superoptix-0.2.4/docs/guides/agent-optimization/datasets.md +843 -0
- superoptix-0.2.4/docs/guides/agent-optimization/full-stack-example.md +974 -0
- superoptix-0.2.4/docs/guides/agent-optimization/memory.md +697 -0
- superoptix-0.2.4/docs/guides/agent-optimization/overview.md +408 -0
- superoptix-0.2.4/docs/guides/agent-optimization/prompts.md +585 -0
- superoptix-0.2.4/docs/guides/agent-optimization/protocols.md +724 -0
- superoptix-0.2.4/docs/guides/agent-optimization/rag.md +614 -0
- superoptix-0.2.4/docs/guides/agent-optimization/tools.md +713 -0
- superoptix-0.2.4/docs/guides/bdd.md +860 -0
- superoptix-0.2.4/docs/guides/cicd-integration.md +657 -0
- superoptix-0.2.4/docs/guides/cli-complete-guide.md +753 -0
- superoptix-0.2.4/docs/guides/cloud-inference.md +558 -0
- superoptix-0.2.4/docs/guides/conversational-interface.md +444 -0
- superoptix-0.2.4/docs/guides/crewai-integration.md +623 -0
- superoptix-0.2.4/docs/guides/crewai-task-optimization.md +521 -0
- superoptix-0.2.4/docs/guides/dataset-import.md +786 -0
- superoptix-0.2.4/docs/guides/deepagents-backends.md +788 -0
- superoptix-0.2.4/docs/guides/deepagents-index.md +312 -0
- superoptix-0.2.4/docs/guides/deepagents-integration.md +957 -0
- superoptix-0.2.4/docs/guides/dspy-optimizers.md +907 -0
- superoptix-0.2.4/docs/guides/enhanced-observability.md +520 -0
- superoptix-0.2.4/docs/guides/evaluation-testing.md +572 -0
- superoptix-0.2.4/docs/guides/examples/simple_calculator_mcp_server.py +85 -0
- superoptix-0.2.4/docs/guides/gepa-optimization.md +1222 -0
- superoptix-0.2.4/docs/guides/google-adk-integration.md +586 -0
- superoptix-0.2.4/docs/guides/index.md +51 -0
- superoptix-0.2.4/docs/guides/langfuse-integration.md +896 -0
- superoptix-0.2.4/docs/guides/logfire-integration.md +503 -0
- superoptix-0.2.4/docs/guides/marketplace.md +451 -0
- superoptix-0.2.4/docs/guides/mcp-rag-complete-guide.md +693 -0
- superoptix-0.2.4/docs/guides/memory-context-optimization.md +71 -0
- superoptix-0.2.4/docs/guides/memory-optimization.md +906 -0
- superoptix-0.2.4/docs/guides/memory.md +605 -0
- superoptix-0.2.4/docs/guides/microsoft-framework-integration.md +465 -0
- superoptix-0.2.4/docs/guides/mlflow-guide.md +358 -0
- superoptix-0.2.4/docs/guides/model-intelligence.md +760 -0
- superoptix-0.2.4/docs/guides/model-management.md +1100 -0
- superoptix-0.2.4/docs/guides/multi-framework.md +633 -0
- superoptix-0.2.4/docs/guides/observability-comparison.md +243 -0
- superoptix-0.2.4/docs/guides/observability.md +682 -0
- superoptix-0.2.4/docs/guides/openai-sdk-integration.md +1037 -0
- superoptix-0.2.4/docs/guides/optimas-integration.md +521 -0
- superoptix-0.2.4/docs/guides/optimization.md +320 -0
- superoptix-0.2.4/docs/guides/orchestra-development.md +621 -0
- superoptix-0.2.4/docs/guides/protocol-first-agents.md +545 -0
- superoptix-0.2.4/docs/guides/pydantic-ai-integration.md +1583 -0
- superoptix-0.2.4/docs/guides/pydantic-ai-mcp-demo.md +708 -0
- superoptix-0.2.4/docs/guides/rag.md +576 -0
- superoptix-0.2.4/docs/guides/rails-analogy.md +977 -0
- superoptix-0.2.4/docs/guides/responsible-ai.md +587 -0
- superoptix-0.2.4/docs/guides/sglang-inference.md +281 -0
- superoptix-0.2.4/docs/guides/stackone-integration.md +551 -0
- superoptix-0.2.4/docs/guides/super-cli.md +816 -0
- superoptix-0.2.4/docs/guides/superspec-agent-building.md +767 -0
- superoptix-0.2.4/docs/guides/superspec-configuration.md +616 -0
- superoptix-0.2.4/docs/guides/superspec-context-engineering.md +539 -0
- superoptix-0.2.4/docs/guides/superspec-dsl-examples.md +1059 -0
- superoptix-0.2.4/docs/guides/superspec-dsl-reference.md +665 -0
- superoptix-0.2.4/docs/guides/superspec.md +2205 -0
- superoptix-0.2.4/docs/guides/technical-architecture.md +699 -0
- superoptix-0.2.4/docs/guides/tiers.md +575 -0
- superoptix-0.2.4/docs/guides/tool-development.md +759 -0
- superoptix-0.2.4/docs/guides/vllm-inference.md +410 -0
- superoptix-0.2.4/docs/guides/weights-biases-integration.md +364 -0
- superoptix-0.2.4/docs/index.md +574 -0
- superoptix-0.2.4/docs/introduction.md +495 -0
- superoptix-0.2.4/docs/javascripts/extra.js +681 -0
- superoptix-0.2.4/docs/llm-setup.md +1102 -0
- superoptix-0.2.4/docs/logo.png +0 -0
- superoptix-0.2.4/docs/logo3.png +0 -0
- superoptix-0.2.4/docs/mission-superoptix.md +151 -0
- superoptix-0.2.4/docs/overrides/home.html +16 -0
- superoptix-0.2.4/docs/project-structure.md +227 -0
- superoptix-0.2.4/docs/quick-start.md +245 -0
- superoptix-0.2.4/docs/setup.md +191 -0
- superoptix-0.2.4/docs/stylesheets/extra.css +583 -0
- superoptix-0.2.4/docs/stylesheets/readthedocs-custom.css +46 -0
- superoptix-0.2.4/docs/superagentic-ai.md +296 -0
- superoptix-0.2.4/docs/superoptix_hero.png +0 -0
- superoptix-0.2.4/docs/techniques/index.md +36 -0
- superoptix-0.2.4/docs/troubleshooting.md +135 -0
- superoptix-0.2.4/docs/tutorials/deepagents-backends-tutorial.md +875 -0
- superoptix-0.2.4/docs/tutorials/deepagents-complete-workflow.md +1655 -0
- superoptix-0.2.4/docs/tutorials/first-orchestra.md +814 -0
- superoptix-0.2.4/docs/tutorials/genies-agent.md +1025 -0
- superoptix-0.2.4/docs/tutorials/index.md +99 -0
- superoptix-0.2.4/docs/tutorials/mcp-optimization.md +501 -0
- superoptix-0.2.4/docs/tutorials/multi-framework-quickstart.md +505 -0
- superoptix-0.2.4/docs/tutorials/openai-sdk-gepa-optimization.md +1427 -0
- superoptix-0.2.4/docs/tutorials/oracles-agent.md +814 -0
- superoptix-0.2.4/docs/tutorials/rag-optimization.md +399 -0
- superoptix-0.2.4/examples/integrations/stackone_benchmark_example.py +55 -0
- superoptix-0.2.4/examples/integrations/stackone_discovery_example.py +73 -0
- superoptix-0.2.4/examples/integrations/stackone_dspy_example.py +63 -0
- superoptix-0.2.4/examples/integrations/stackone_google_adk_example.py +67 -0
- superoptix-0.2.4/examples/integrations/stackone_optimization_example.py +71 -0
- superoptix-0.2.4/examples/integrations/stackone_pydantic_ai_example.py +76 -0
- superoptix-0.2.4/examples/integrations/stackone_semantic_kernel_example.py +78 -0
- superoptix-0.2.4/install.sh +243 -0
- superoptix-0.2.4/mkdocs.yml +265 -0
- superoptix-0.2.4/pyproject.toml +544 -0
- superoptix-0.2.4/ruff.toml +64 -0
- superoptix-0.2.4/superoptix/__init__.py +183 -0
- superoptix-0.2.4/superoptix/adapters/__init__.py +61 -0
- superoptix-0.2.4/superoptix/adapters/dspy_adapter.py +356 -0
- superoptix-0.2.4/superoptix/adapters/framework_registry.py +1127 -0
- superoptix-0.2.4/superoptix/adapters/observability_enhanced_dspy_adapter.py +760 -0
- superoptix-0.2.4/superoptix/adapters/optimas_openai_adapter.py +57 -0
- superoptix-0.2.4/superoptix/adapters/stackone_adapter.py +1234 -0
- superoptix-0.2.4/superoptix/agent_bases/__init__.py +14 -0
- superoptix-0.2.4/superoptix/agent_bases/protocol_agent.py +157 -0
- superoptix-0.2.4/superoptix/agents/README.md +302 -0
- superoptix-0.2.4/superoptix/agents/agriculture_food/crop_manager_playbook.yaml +126 -0
- superoptix-0.2.4/superoptix/agents/agriculture_food/food_safety_inspector_playbook.yaml +125 -0
- superoptix-0.2.4/superoptix/agents/agriculture_food/supply_chain_coordinator_playbook.yaml +125 -0
- superoptix-0.2.4/superoptix/agents/agriculture_food/sustainability_advisor_playbook.yaml +125 -0
- superoptix-0.2.4/superoptix/agents/analysis/README.md +67 -0
- superoptix-0.2.4/superoptix/agents/analysis/sentiment_analyzer_playbook.yaml +167 -0
- superoptix-0.2.4/superoptix/agents/consulting/business_analyst_playbook.yaml +124 -0
- superoptix-0.2.4/superoptix/agents/consulting/change_manager_playbook.yaml +124 -0
- superoptix-0.2.4/superoptix/agents/consulting/performance_consultant_playbook.yaml +124 -0
- superoptix-0.2.4/superoptix/agents/consulting/process_consultant_playbook.yaml +124 -0
- superoptix-0.2.4/superoptix/agents/consulting/strategy_consultant_playbook.yaml +124 -0
- superoptix-0.2.4/superoptix/agents/demo/DEMO_AGENTS_SUMMARY.md +402 -0
- superoptix-0.2.4/superoptix/agents/demo/MEMORY_OPTIMIZATION_DEMO.md +425 -0
- superoptix-0.2.4/superoptix/agents/demo/ODSC_CODE_REVIEW_DEMO.md +598 -0
- superoptix-0.2.4/superoptix/agents/demo/OPENAI_SDK_DEMO.md +512 -0
- superoptix-0.2.4/superoptix/agents/demo/README.md +217 -0
- superoptix-0.2.4/superoptix/agents/demo/SETUP.md +279 -0
- superoptix-0.2.4/superoptix/agents/demo/__init__.py +1 -0
- superoptix-0.2.4/superoptix/agents/demo/assistant_adk_playbook.yaml +132 -0
- superoptix-0.2.4/superoptix/agents/demo/assistant_microsoft_playbook.yaml +88 -0
- superoptix-0.2.4/superoptix/agents/demo/assistant_openai_playbook.yaml +156 -0
- superoptix-0.2.4/superoptix/agents/demo/chatbot_persistent_playbook.yaml +190 -0
- superoptix-0.2.4/superoptix/agents/demo/cloud_demo_oracles_playbook.yaml +109 -0
- superoptix-0.2.4/superoptix/agents/demo/cloud_demo_playbook.yaml +198 -0
- superoptix-0.2.4/superoptix/agents/demo/code_review_assistant_playbook.yaml +398 -0
- superoptix-0.2.4/superoptix/agents/demo/code_reviewer_playbook.yaml +270 -0
- superoptix-0.2.4/superoptix/agents/demo/content_creator_crew_playbook.yaml +162 -0
- superoptix-0.2.4/superoptix/agents/demo/customer_support_with_memory_playbook.yaml +190 -0
- superoptix-0.2.4/superoptix/agents/demo/huggingface_demo_playbook.yaml +201 -0
- superoptix-0.2.4/superoptix/agents/demo/lmstudio_demo_playbook.yaml +204 -0
- superoptix-0.2.4/superoptix/agents/demo/memory_demo_playbook.yaml +203 -0
- superoptix-0.2.4/superoptix/agents/demo/mlx_demo_playbook.yaml +199 -0
- superoptix-0.2.4/superoptix/agents/demo/observability_demo_playbook.yaml +223 -0
- superoptix-0.2.4/superoptix/agents/demo/ollama_demo_playbook.yaml +199 -0
- superoptix-0.2.4/superoptix/agents/demo/protocol_demo_playbook.yaml +81 -0
- superoptix-0.2.4/superoptix/agents/demo/pydantic_mcp_playbook.yaml +162 -0
- superoptix-0.2.4/superoptix/agents/demo/rag_chroma_demo_playbook.yaml +202 -0
- superoptix-0.2.4/superoptix/agents/demo/rag_lancedb_demo_playbook.yaml +204 -0
- superoptix-0.2.4/superoptix/agents/demo/rag_milvus_demo_playbook.yaml +203 -0
- superoptix-0.2.4/superoptix/agents/demo/rag_qdrant_demo_playbook.yaml +202 -0
- superoptix-0.2.4/superoptix/agents/demo/rag_weaviate_demo_playbook.yaml +202 -0
- superoptix-0.2.4/superoptix/agents/demo/research_agent_deepagents_playbook.yaml +150 -0
- superoptix-0.2.4/superoptix/agents/demo/research_agent_deepagents_playbook.yaml.bak +132 -0
- superoptix-0.2.4/superoptix/agents/demo/researcher_crew_playbook.yaml +156 -0
- superoptix-0.2.4/superoptix/agents/demo/researcher_hybrid_playbook.yaml +263 -0
- superoptix-0.2.4/superoptix/agents/demo/setup_code_review.py +144 -0
- superoptix-0.2.4/superoptix/agents/demo/tools_demo_playbook.yaml +236 -0
- superoptix-0.2.4/superoptix/agents/dspy_optimizers/better_together_summarizer_playbook.yaml +265 -0
- superoptix-0.2.4/superoptix/agents/dspy_optimizers/bettertogether_math_playbook.yaml +118 -0
- superoptix-0.2.4/superoptix/agents/dspy_optimizers/bettertogether_playbook.yaml +53 -0
- superoptix-0.2.4/superoptix/agents/dspy_optimizers/bootstrap_fewshot_classifier_playbook.yaml +217 -0
- superoptix-0.2.4/superoptix/agents/dspy_optimizers/bootstrap_math_playbook.yaml +123 -0
- superoptix-0.2.4/superoptix/agents/dspy_optimizers/bootstrapfewshot_playbook.yaml +77 -0
- superoptix-0.2.4/superoptix/agents/dspy_optimizers/copro_legal_analyzer_playbook.yaml +290 -0
- superoptix-0.2.4/superoptix/agents/dspy_optimizers/copro_math_playbook.yaml +121 -0
- superoptix-0.2.4/superoptix/agents/dspy_optimizers/copro_playbook.yaml +56 -0
- superoptix-0.2.4/superoptix/agents/dspy_optimizers/gepa_math_agent_playbook.yaml +195 -0
- superoptix-0.2.4/superoptix/agents/dspy_optimizers/gepa_playbook.yaml +86 -0
- superoptix-0.2.4/superoptix/agents/dspy_optimizers/knn_fewshot_recommender_playbook.yaml +271 -0
- superoptix-0.2.4/superoptix/agents/dspy_optimizers/knn_math_playbook.yaml +116 -0
- superoptix-0.2.4/superoptix/agents/dspy_optimizers/knnfewshot_playbook.yaml +51 -0
- superoptix-0.2.4/superoptix/agents/dspy_optimizers/labeledfewshot_playbook.yaml +52 -0
- superoptix-0.2.4/superoptix/agents/dspy_optimizers/miprov2_math_playbook.yaml +140 -0
- superoptix-0.2.4/superoptix/agents/dspy_optimizers/miprov2_playbook.yaml +80 -0
- superoptix-0.2.4/superoptix/agents/dspy_optimizers/miprov2_writing_agent_playbook.yaml +224 -0
- superoptix-0.2.4/superoptix/agents/dspy_optimizers/simba_math_playbook.yaml +134 -0
- superoptix-0.2.4/superoptix/agents/dspy_optimizers/simba_playbook.yaml +82 -0
- superoptix-0.2.4/superoptix/agents/dspy_optimizers/simba_qa_agent_playbook.yaml +178 -0
- superoptix-0.2.4/superoptix/agents/education/advanced_math_gepa_playbook.yaml +146 -0
- superoptix-0.2.4/superoptix/agents/education/art_instructor_playbook.yaml +98 -0
- superoptix-0.2.4/superoptix/agents/education/coding_mentor_playbook.yaml +98 -0
- superoptix-0.2.4/superoptix/agents/education/geography_guide_playbook.yaml +98 -0
- superoptix-0.2.4/superoptix/agents/education/history_guide_playbook.yaml +98 -0
- superoptix-0.2.4/superoptix/agents/education/language_tutor_playbook.yaml +98 -0
- superoptix-0.2.4/superoptix/agents/education/math_tutor_playbook.yaml +98 -0
- superoptix-0.2.4/superoptix/agents/education/music_teacher_playbook.yaml +98 -0
- superoptix-0.2.4/superoptix/agents/education/pe_coach_playbook.yaml +98 -0
- superoptix-0.2.4/superoptix/agents/education/reading_coach_playbook.yaml +98 -0
- superoptix-0.2.4/superoptix/agents/education/recipe_helper_playbook.yaml +99 -0
- superoptix-0.2.4/superoptix/agents/education/science_explorer_playbook.yaml +110 -0
- superoptix-0.2.4/superoptix/agents/education/study_coach_playbook.yaml +98 -0
- superoptix-0.2.4/superoptix/agents/education/writing_assistant_playbook.yaml +99 -0
- superoptix-0.2.4/superoptix/agents/energy_utilities/efficiency_consultant_playbook.yaml +125 -0
- superoptix-0.2.4/superoptix/agents/energy_utilities/grid_optimizer_playbook.yaml +125 -0
- superoptix-0.2.4/superoptix/agents/energy_utilities/renewable_analyst_playbook.yaml +125 -0
- superoptix-0.2.4/superoptix/agents/energy_utilities/smart_meter_analyst_playbook.yaml +125 -0
- superoptix-0.2.4/superoptix/agents/explicit_agents/PROTOCOL_FIRST_README.md +132 -0
- superoptix-0.2.4/superoptix/agents/explicit_agents/README.md +386 -0
- superoptix-0.2.4/superoptix/agents/explicit_agents/mcp_agent_playbook.yaml +138 -0
- superoptix-0.2.4/superoptix/agents/explicit_agents/protocol_first_agent_playbook.yaml +93 -0
- superoptix-0.2.4/superoptix/agents/explicit_agents/qa_bot_playbook.yaml +113 -0
- superoptix-0.2.4/superoptix/agents/explicit_agents/rag_assistant_playbook.yaml +141 -0
- superoptix-0.2.4/superoptix/agents/finance/budget_analyst_playbook.yaml +164 -0
- superoptix-0.2.4/superoptix/agents/finance/enterprise_extractor_gepa_playbook.yaml +174 -0
- superoptix-0.2.4/superoptix/agents/finance/financial_advisor_playbook.yaml +210 -0
- superoptix-0.2.4/superoptix/agents/finance/insurance_advisor_playbook.yaml +124 -0
- superoptix-0.2.4/superoptix/agents/finance/investment_researcher_playbook.yaml +124 -0
- superoptix-0.2.4/superoptix/agents/finance/tax_assistant_playbook.yaml +124 -0
- superoptix-0.2.4/superoptix/agents/gaming_sports/esports_manager_playbook.yaml +125 -0
- superoptix-0.2.4/superoptix/agents/gaming_sports/fan_engagement_manager_playbook.yaml +125 -0
- superoptix-0.2.4/superoptix/agents/gaming_sports/game_designer_playbook.yaml +125 -0
- superoptix-0.2.4/superoptix/agents/gaming_sports/sports_analyst_playbook.yaml +125 -0
- superoptix-0.2.4/superoptix/agents/gaming_sports/tournament_coordinator_playbook.yaml +125 -0
- superoptix-0.2.4/superoptix/agents/government_public/budget_analyst_playbook.yaml +125 -0
- superoptix-0.2.4/superoptix/agents/government_public/emergency_response_coordinator_playbook.yaml +125 -0
- superoptix-0.2.4/superoptix/agents/government_public/policy_analyst_playbook.yaml +125 -0
- superoptix-0.2.4/superoptix/agents/government_public/public_services_coordinator_playbook.yaml +125 -0
- superoptix-0.2.4/superoptix/agents/government_public/regulatory_compliance_officer_playbook.yaml +125 -0
- superoptix-0.2.4/superoptix/agents/healthcare/health_educator_playbook.yaml +124 -0
- superoptix-0.2.4/superoptix/agents/healthcare/medical_assistant_gepa_playbook.yaml +170 -0
- superoptix-0.2.4/superoptix/agents/healthcare/medical_assistant_playbook.yaml +124 -0
- superoptix-0.2.4/superoptix/agents/healthcare/mental_health_coach_playbook.yaml +196 -0
- superoptix-0.2.4/superoptix/agents/healthcare/nurse_helper_playbook.yaml +112 -0
- superoptix-0.2.4/superoptix/agents/healthcare/pharmacy_advisor_playbook.yaml +124 -0
- superoptix-0.2.4/superoptix/agents/hospitality_tourism/event_coordinator_playbook.yaml +125 -0
- superoptix-0.2.4/superoptix/agents/hospitality_tourism/guest_services_playbook.yaml +125 -0
- superoptix-0.2.4/superoptix/agents/hospitality_tourism/hotel_manager_playbook.yaml +125 -0
- superoptix-0.2.4/superoptix/agents/hospitality_tourism/travel_planner_playbook.yaml +125 -0
- superoptix-0.2.4/superoptix/agents/huggingface_demo/README.md +127 -0
- superoptix-0.2.4/superoptix/agents/huggingface_demo/playbook/huggingface_demo_playbook.yaml +125 -0
- superoptix-0.2.4/superoptix/agents/human_resources/benefits_advisor_playbook.yaml +125 -0
- superoptix-0.2.4/superoptix/agents/human_resources/performance_coach_playbook.yaml +125 -0
- superoptix-0.2.4/superoptix/agents/human_resources/policy_advisor_playbook.yaml +125 -0
- superoptix-0.2.4/superoptix/agents/human_resources/recruiter_playbook.yaml +125 -0
- superoptix-0.2.4/superoptix/agents/human_resources/training_coordinator_playbook.yaml +125 -0
- superoptix-0.2.4/superoptix/agents/legal/compliance_checker_playbook.yaml +124 -0
- superoptix-0.2.4/superoptix/agents/legal/contract_analyzer_gepa_playbook.yaml +173 -0
- superoptix-0.2.4/superoptix/agents/legal/contract_analyzer_playbook.yaml +124 -0
- superoptix-0.2.4/superoptix/agents/legal/document_drafter_playbook.yaml +124 -0
- superoptix-0.2.4/superoptix/agents/legal/legal_researcher_playbook.yaml +124 -0
- superoptix-0.2.4/superoptix/agents/legal/patent_assistant_playbook.yaml +124 -0
- superoptix-0.2.4/superoptix/agents/manufacturing/inventory_manager_playbook.yaml +125 -0
- superoptix-0.2.4/superoptix/agents/manufacturing/maintenance_scheduler_playbook.yaml +125 -0
- superoptix-0.2.4/superoptix/agents/manufacturing/production_planner_playbook.yaml +125 -0
- superoptix-0.2.4/superoptix/agents/manufacturing/quality_inspector_playbook.yaml +125 -0
- superoptix-0.2.4/superoptix/agents/manufacturing/safety_coordinator_playbook.yaml +125 -0
- superoptix-0.2.4/superoptix/agents/marketing/campaign_strategist_playbook.yaml +124 -0
- superoptix-0.2.4/superoptix/agents/marketing/content_creator_playbook.yaml +124 -0
- superoptix-0.2.4/superoptix/agents/marketing/email_marketer_playbook.yaml +124 -0
- superoptix-0.2.4/superoptix/agents/marketing/seo_specialist_playbook.yaml +124 -0
- superoptix-0.2.4/superoptix/agents/marketing/social_media_manager_playbook.yaml +124 -0
- superoptix-0.2.4/superoptix/agents/media_entertainment/audience_researcher_playbook.yaml +125 -0
- superoptix-0.2.4/superoptix/agents/media_entertainment/content_strategist_playbook.yaml +125 -0
- superoptix-0.2.4/superoptix/agents/media_entertainment/production_coordinator_playbook.yaml +125 -0
- superoptix-0.2.4/superoptix/agents/media_entertainment/streaming_analyst_playbook.yaml +125 -0
- superoptix-0.2.4/superoptix/agents/media_entertainment/talent_manager_playbook.yaml +125 -0
- superoptix-0.2.4/superoptix/agents/mlx_demo/README.md +167 -0
- superoptix-0.2.4/superoptix/agents/mlx_demo/playbook/mlx_demo_playbook.yaml +134 -0
- superoptix-0.2.4/superoptix/agents/optimas/README.md +214 -0
- superoptix-0.2.4/superoptix/agents/optimas/optimas_autogen_playbook.yaml +114 -0
- superoptix-0.2.4/superoptix/agents/optimas/optimas_crewai_playbook.yaml +103 -0
- superoptix-0.2.4/superoptix/agents/optimas/optimas_dspy_playbook.yaml +104 -0
- superoptix-0.2.4/superoptix/agents/optimas/optimas_openai_playbook.yaml +102 -0
- superoptix-0.2.4/superoptix/agents/real_estate/appraisal_assistant_playbook.yaml +124 -0
- superoptix-0.2.4/superoptix/agents/real_estate/listing_creator_playbook.yaml +124 -0
- superoptix-0.2.4/superoptix/agents/real_estate/market_researcher_playbook.yaml +124 -0
- superoptix-0.2.4/superoptix/agents/real_estate/property_analyzer_playbook.yaml +124 -0
- superoptix-0.2.4/superoptix/agents/real_estate/rental_manager_playbook.yaml +124 -0
- superoptix-0.2.4/superoptix/agents/retail/customer_service_playbook.yaml +227 -0
- superoptix-0.2.4/superoptix/agents/retail/inventory_optimizer_playbook.yaml +124 -0
- superoptix-0.2.4/superoptix/agents/retail/merchandising_planner_playbook.yaml +124 -0
- superoptix-0.2.4/superoptix/agents/retail/pricing_analyst_playbook.yaml +124 -0
- superoptix-0.2.4/superoptix/agents/retail/product_recommender_playbook.yaml +124 -0
- superoptix-0.2.4/superoptix/agents/security/privacy_delegate_gepa_playbook.yaml +147 -0
- superoptix-0.2.4/superoptix/agents/software/data_science_gepa_playbook.yaml +186 -0
- superoptix-0.2.4/superoptix/agents/software/developer_playbook.yaml +98 -0
- superoptix-0.2.4/superoptix/agents/software/developer_playbook_with_memory.yaml +272 -0
- superoptix-0.2.4/superoptix/agents/software/devops_engineer_playbook.yaml +98 -0
- superoptix-0.2.4/superoptix/agents/software/github_protocol_agent_playbook.yaml +111 -0
- superoptix-0.2.4/superoptix/agents/software/lightweight_developer_playbook.yaml +112 -0
- superoptix-0.2.4/superoptix/agents/software/performance_engineer_playbook.yaml +98 -0
- superoptix-0.2.4/superoptix/agents/software/product_owner_playbook.yaml +98 -0
- superoptix-0.2.4/superoptix/agents/software/qa_engineer_playbook.yaml +328 -0
- superoptix-0.2.4/superoptix/agents/software/scrum_master_playbook.yaml +98 -0
- superoptix-0.2.4/superoptix/agents/software/security_analyzer_gepa_playbook.yaml +192 -0
- superoptix-0.2.4/superoptix/agents/software/security_engineer_playbook.yaml +98 -0
- superoptix-0.2.4/superoptix/agents/software/system_architect_playbook.yaml +98 -0
- superoptix-0.2.4/superoptix/agents/software/technical_writer_playbook.yaml +111 -0
- superoptix-0.2.4/superoptix/agents/stackone/ats_agent.yaml +48 -0
- superoptix-0.2.4/superoptix/agents/stackone/crm_agent.yaml +48 -0
- superoptix-0.2.4/superoptix/agents/stackone/hris_agent.yaml +44 -0
- superoptix-0.2.4/superoptix/agents/testing/README.md +152 -0
- superoptix-0.2.4/superoptix/agents/testing/lmstudio_demo_playbook.yaml +239 -0
- superoptix-0.2.4/superoptix/agents/testing/local_test_agent_playbook.yaml +188 -0
- superoptix-0.2.4/superoptix/agents/testing/mlx_test_agent_playbook.yaml +99 -0
- superoptix-0.2.4/superoptix/agents/transportation/fleet_manager_playbook.yaml +125 -0
- superoptix-0.2.4/superoptix/agents/transportation/logistics_coordinator_playbook.yaml +125 -0
- superoptix-0.2.4/superoptix/agents/transportation/route_optimizer_playbook.yaml +125 -0
- superoptix-0.2.4/superoptix/agents/transportation/supply_chain_analyst_playbook.yaml +125 -0
- superoptix-0.2.4/superoptix/agents/transportation/warehouse_manager_playbook.yaml +125 -0
- superoptix-0.2.4/superoptix/agents.backup/README.md +302 -0
- superoptix-0.2.4/superoptix/agents.backup/agriculture_food/crop_manager_playbook.yaml +112 -0
- superoptix-0.2.4/superoptix/agents.backup/agriculture_food/food_safety_inspector_playbook.yaml +112 -0
- superoptix-0.2.4/superoptix/agents.backup/agriculture_food/supply_chain_coordinator_playbook.yaml +111 -0
- superoptix-0.2.4/superoptix/agents.backup/agriculture_food/sustainability_advisor_playbook.yaml +108 -0
- superoptix-0.2.4/superoptix/agents.backup/consulting/business_analyst_playbook.yaml +111 -0
- superoptix-0.2.4/superoptix/agents.backup/consulting/change_manager_playbook.yaml +110 -0
- superoptix-0.2.4/superoptix/agents.backup/consulting/performance_consultant_playbook.yaml +110 -0
- superoptix-0.2.4/superoptix/agents.backup/consulting/process_consultant_playbook.yaml +110 -0
- superoptix-0.2.4/superoptix/agents.backup/consulting/strategy_consultant_playbook.yaml +109 -0
- superoptix-0.2.4/superoptix/agents.backup/demo/DEMO_AGENTS_SUMMARY.md +402 -0
- superoptix-0.2.4/superoptix/agents.backup/demo/README.md +330 -0
- superoptix-0.2.4/superoptix/agents.backup/demo/cloud_demo_oracles_playbook.yaml +92 -0
- superoptix-0.2.4/superoptix/agents.backup/demo/cloud_demo_playbook.yaml +181 -0
- superoptix-0.2.4/superoptix/agents.backup/demo/huggingface_demo_playbook.yaml +183 -0
- superoptix-0.2.4/superoptix/agents.backup/demo/lmstudio_demo_playbook.yaml +185 -0
- superoptix-0.2.4/superoptix/agents.backup/demo/memory_demo_playbook.yaml +187 -0
- superoptix-0.2.4/superoptix/agents.backup/demo/mlx_demo_playbook.yaml +182 -0
- superoptix-0.2.4/superoptix/agents.backup/demo/observability_demo_playbook.yaml +205 -0
- superoptix-0.2.4/superoptix/agents.backup/demo/ollama_demo_playbook.yaml +182 -0
- superoptix-0.2.4/superoptix/agents.backup/demo/rag_chroma_demo_playbook.yaml +184 -0
- superoptix-0.2.4/superoptix/agents.backup/demo/rag_lancedb_demo_playbook.yaml +185 -0
- superoptix-0.2.4/superoptix/agents.backup/demo/rag_milvus_demo_playbook.yaml +185 -0
- superoptix-0.2.4/superoptix/agents.backup/demo/rag_qdrant_demo_playbook.yaml +184 -0
- superoptix-0.2.4/superoptix/agents.backup/demo/rag_weaviate_demo_playbook.yaml +184 -0
- superoptix-0.2.4/superoptix/agents.backup/demo/tools_demo_playbook.yaml +219 -0
- superoptix-0.2.4/superoptix/agents.backup/dspy_optimizers/better_together_summarizer_playbook.yaml +164 -0
- superoptix-0.2.4/superoptix/agents.backup/dspy_optimizers/bettertogether_math_playbook.yaml +87 -0
- superoptix-0.2.4/superoptix/agents.backup/dspy_optimizers/bettertogether_playbook.yaml +43 -0
- superoptix-0.2.4/superoptix/agents.backup/dspy_optimizers/bootstrap_fewshot_classifier_playbook.yaml +154 -0
- superoptix-0.2.4/superoptix/agents.backup/dspy_optimizers/bootstrap_math_playbook.yaml +94 -0
- superoptix-0.2.4/superoptix/agents.backup/dspy_optimizers/bootstrapfewshot_playbook.yaml +62 -0
- superoptix-0.2.4/superoptix/agents.backup/dspy_optimizers/copro_legal_analyzer_playbook.yaml +182 -0
- superoptix-0.2.4/superoptix/agents.backup/dspy_optimizers/copro_math_playbook.yaml +89 -0
- superoptix-0.2.4/superoptix/agents.backup/dspy_optimizers/copro_playbook.yaml +46 -0
- superoptix-0.2.4/superoptix/agents.backup/dspy_optimizers/gepa_math_agent_playbook.yaml +148 -0
- superoptix-0.2.4/superoptix/agents.backup/dspy_optimizers/gepa_playbook.yaml +67 -0
- superoptix-0.2.4/superoptix/agents.backup/dspy_optimizers/knn_fewshot_recommender_playbook.yaml +180 -0
- superoptix-0.2.4/superoptix/agents.backup/dspy_optimizers/knn_math_playbook.yaml +85 -0
- superoptix-0.2.4/superoptix/agents.backup/dspy_optimizers/knnfewshot_playbook.yaml +41 -0
- superoptix-0.2.4/superoptix/agents.backup/dspy_optimizers/labeledfewshot_playbook.yaml +42 -0
- superoptix-0.2.4/superoptix/agents.backup/dspy_optimizers/miprov2_math_playbook.yaml +98 -0
- superoptix-0.2.4/superoptix/agents.backup/dspy_optimizers/miprov2_playbook.yaml +63 -0
- superoptix-0.2.4/superoptix/agents.backup/dspy_optimizers/miprov2_writing_agent_playbook.yaml +162 -0
- superoptix-0.2.4/superoptix/agents.backup/dspy_optimizers/simba_math_playbook.yaml +98 -0
- superoptix-0.2.4/superoptix/agents.backup/dspy_optimizers/simba_playbook.yaml +67 -0
- superoptix-0.2.4/superoptix/agents.backup/dspy_optimizers/simba_qa_agent_playbook.yaml +132 -0
- superoptix-0.2.4/superoptix/agents.backup/education/advanced_math_gepa_playbook.yaml +99 -0
- superoptix-0.2.4/superoptix/agents.backup/education/art_instructor_playbook.yaml +89 -0
- superoptix-0.2.4/superoptix/agents.backup/education/coding_mentor_playbook.yaml +89 -0
- superoptix-0.2.4/superoptix/agents.backup/education/geography_guide_playbook.yaml +91 -0
- superoptix-0.2.4/superoptix/agents.backup/education/history_guide_playbook.yaml +91 -0
- superoptix-0.2.4/superoptix/agents.backup/education/language_tutor_playbook.yaml +90 -0
- superoptix-0.2.4/superoptix/agents.backup/education/math_tutor_playbook.yaml +91 -0
- superoptix-0.2.4/superoptix/agents.backup/education/music_teacher_playbook.yaml +90 -0
- superoptix-0.2.4/superoptix/agents.backup/education/pe_coach_playbook.yaml +90 -0
- superoptix-0.2.4/superoptix/agents.backup/education/reading_coach_playbook.yaml +89 -0
- superoptix-0.2.4/superoptix/agents.backup/education/recipe_helper_playbook.yaml +91 -0
- superoptix-0.2.4/superoptix/agents.backup/education/science_explorer_playbook.yaml +109 -0
- superoptix-0.2.4/superoptix/agents.backup/education/study_coach_playbook.yaml +89 -0
- superoptix-0.2.4/superoptix/agents.backup/education/writing_assistant_playbook.yaml +91 -0
- superoptix-0.2.4/superoptix/agents.backup/energy_utilities/efficiency_consultant_playbook.yaml +110 -0
- superoptix-0.2.4/superoptix/agents.backup/energy_utilities/grid_optimizer_playbook.yaml +111 -0
- superoptix-0.2.4/superoptix/agents.backup/energy_utilities/renewable_analyst_playbook.yaml +111 -0
- superoptix-0.2.4/superoptix/agents.backup/energy_utilities/smart_meter_analyst_playbook.yaml +110 -0
- superoptix-0.2.4/superoptix/agents.backup/explicit_agents/README.md +386 -0
- superoptix-0.2.4/superoptix/agents.backup/explicit_agents/mcp_agent_playbook.yaml +135 -0
- superoptix-0.2.4/superoptix/agents.backup/explicit_agents/qa_bot_playbook.yaml +111 -0
- superoptix-0.2.4/superoptix/agents.backup/explicit_agents/rag_assistant_playbook.yaml +132 -0
- superoptix-0.2.4/superoptix/agents.backup/finance/budget_analyst_playbook.yaml +152 -0
- superoptix-0.2.4/superoptix/agents.backup/finance/enterprise_extractor_gepa_playbook.yaml +129 -0
- superoptix-0.2.4/superoptix/agents.backup/finance/financial_advisor_playbook.yaml +204 -0
- superoptix-0.2.4/superoptix/agents.backup/finance/insurance_advisor_playbook.yaml +108 -0
- superoptix-0.2.4/superoptix/agents.backup/finance/investment_researcher_playbook.yaml +109 -0
- superoptix-0.2.4/superoptix/agents.backup/finance/tax_assistant_playbook.yaml +109 -0
- superoptix-0.2.4/superoptix/agents.backup/gaming_sports/esports_manager_playbook.yaml +111 -0
- superoptix-0.2.4/superoptix/agents.backup/gaming_sports/fan_engagement_manager_playbook.yaml +111 -0
- superoptix-0.2.4/superoptix/agents.backup/gaming_sports/game_designer_playbook.yaml +110 -0
- superoptix-0.2.4/superoptix/agents.backup/gaming_sports/sports_analyst_playbook.yaml +109 -0
- superoptix-0.2.4/superoptix/agents.backup/gaming_sports/tournament_coordinator_playbook.yaml +109 -0
- superoptix-0.2.4/superoptix/agents.backup/government_public/budget_analyst_playbook.yaml +111 -0
- superoptix-0.2.4/superoptix/agents.backup/government_public/emergency_response_coordinator_playbook.yaml +111 -0
- superoptix-0.2.4/superoptix/agents.backup/government_public/policy_analyst_playbook.yaml +110 -0
- superoptix-0.2.4/superoptix/agents.backup/government_public/public_services_coordinator_playbook.yaml +111 -0
- superoptix-0.2.4/superoptix/agents.backup/government_public/regulatory_compliance_officer_playbook.yaml +110 -0
- superoptix-0.2.4/superoptix/agents.backup/healthcare/health_educator_playbook.yaml +109 -0
- superoptix-0.2.4/superoptix/agents.backup/healthcare/medical_assistant_gepa_playbook.yaml +108 -0
- superoptix-0.2.4/superoptix/agents.backup/healthcare/medical_assistant_playbook.yaml +109 -0
- superoptix-0.2.4/superoptix/agents.backup/healthcare/mental_health_coach_playbook.yaml +183 -0
- superoptix-0.2.4/superoptix/agents.backup/healthcare/nurse_helper_playbook.yaml +100 -0
- superoptix-0.2.4/superoptix/agents.backup/healthcare/pharmacy_advisor_playbook.yaml +109 -0
- superoptix-0.2.4/superoptix/agents.backup/hospitality_tourism/event_coordinator_playbook.yaml +112 -0
- superoptix-0.2.4/superoptix/agents.backup/hospitality_tourism/guest_services_playbook.yaml +111 -0
- superoptix-0.2.4/superoptix/agents.backup/hospitality_tourism/hotel_manager_playbook.yaml +111 -0
- superoptix-0.2.4/superoptix/agents.backup/hospitality_tourism/travel_planner_playbook.yaml +110 -0
- superoptix-0.2.4/superoptix/agents.backup/huggingface_demo/README.md +127 -0
- superoptix-0.2.4/superoptix/agents.backup/huggingface_demo/playbook/huggingface_demo_playbook.yaml +85 -0
- superoptix-0.2.4/superoptix/agents.backup/human_resources/benefits_advisor_playbook.yaml +109 -0
- superoptix-0.2.4/superoptix/agents.backup/human_resources/performance_coach_playbook.yaml +109 -0
- superoptix-0.2.4/superoptix/agents.backup/human_resources/policy_advisor_playbook.yaml +110 -0
- superoptix-0.2.4/superoptix/agents.backup/human_resources/recruiter_playbook.yaml +110 -0
- superoptix-0.2.4/superoptix/agents.backup/human_resources/training_coordinator_playbook.yaml +111 -0
- superoptix-0.2.4/superoptix/agents.backup/legal/compliance_checker_playbook.yaml +109 -0
- superoptix-0.2.4/superoptix/agents.backup/legal/contract_analyzer_gepa_playbook.yaml +111 -0
- superoptix-0.2.4/superoptix/agents.backup/legal/contract_analyzer_playbook.yaml +109 -0
- superoptix-0.2.4/superoptix/agents.backup/legal/document_drafter_playbook.yaml +109 -0
- superoptix-0.2.4/superoptix/agents.backup/legal/legal_researcher_playbook.yaml +109 -0
- superoptix-0.2.4/superoptix/agents.backup/legal/patent_assistant_playbook.yaml +109 -0
- superoptix-0.2.4/superoptix/agents.backup/manufacturing/inventory_manager_playbook.yaml +109 -0
- superoptix-0.2.4/superoptix/agents.backup/manufacturing/maintenance_scheduler_playbook.yaml +110 -0
- superoptix-0.2.4/superoptix/agents.backup/manufacturing/production_planner_playbook.yaml +109 -0
- superoptix-0.2.4/superoptix/agents.backup/manufacturing/quality_inspector_playbook.yaml +109 -0
- superoptix-0.2.4/superoptix/agents.backup/manufacturing/safety_coordinator_playbook.yaml +110 -0
- superoptix-0.2.4/superoptix/agents.backup/marketing/campaign_strategist_playbook.yaml +109 -0
- superoptix-0.2.4/superoptix/agents.backup/marketing/content_creator_playbook.yaml +110 -0
- superoptix-0.2.4/superoptix/agents.backup/marketing/email_marketer_playbook.yaml +110 -0
- superoptix-0.2.4/superoptix/agents.backup/marketing/seo_specialist_playbook.yaml +110 -0
- superoptix-0.2.4/superoptix/agents.backup/marketing/social_media_manager_playbook.yaml +110 -0
- superoptix-0.2.4/superoptix/agents.backup/media_entertainment/audience_researcher_playbook.yaml +110 -0
- superoptix-0.2.4/superoptix/agents.backup/media_entertainment/content_strategist_playbook.yaml +110 -0
- superoptix-0.2.4/superoptix/agents.backup/media_entertainment/production_coordinator_playbook.yaml +110 -0
- superoptix-0.2.4/superoptix/agents.backup/media_entertainment/streaming_analyst_playbook.yaml +110 -0
- superoptix-0.2.4/superoptix/agents.backup/media_entertainment/talent_manager_playbook.yaml +110 -0
- superoptix-0.2.4/superoptix/agents.backup/mlx_demo/README.md +167 -0
- superoptix-0.2.4/superoptix/agents.backup/mlx_demo/playbook/mlx_demo_playbook.yaml +118 -0
- superoptix-0.2.4/superoptix/agents.backup/optimas/README.md +214 -0
- superoptix-0.2.4/superoptix/agents.backup/optimas/optimas_autogen_playbook.yaml +103 -0
- superoptix-0.2.4/superoptix/agents.backup/optimas/optimas_crewai_playbook.yaml +91 -0
- superoptix-0.2.4/superoptix/agents.backup/optimas/optimas_dspy_playbook.yaml +93 -0
- superoptix-0.2.4/superoptix/agents.backup/optimas/optimas_openai_playbook.yaml +90 -0
- superoptix-0.2.4/superoptix/agents.backup/real_estate/appraisal_assistant_playbook.yaml +109 -0
- superoptix-0.2.4/superoptix/agents.backup/real_estate/listing_creator_playbook.yaml +108 -0
- superoptix-0.2.4/superoptix/agents.backup/real_estate/market_researcher_playbook.yaml +109 -0
- superoptix-0.2.4/superoptix/agents.backup/real_estate/property_analyzer_playbook.yaml +109 -0
- superoptix-0.2.4/superoptix/agents.backup/real_estate/rental_manager_playbook.yaml +109 -0
- superoptix-0.2.4/superoptix/agents.backup/retail/customer_service_playbook.yaml +216 -0
- superoptix-0.2.4/superoptix/agents.backup/retail/inventory_optimizer_playbook.yaml +109 -0
- superoptix-0.2.4/superoptix/agents.backup/retail/merchandising_planner_playbook.yaml +110 -0
- superoptix-0.2.4/superoptix/agents.backup/retail/pricing_analyst_playbook.yaml +110 -0
- superoptix-0.2.4/superoptix/agents.backup/retail/product_recommender_playbook.yaml +110 -0
- superoptix-0.2.4/superoptix/agents.backup/security/privacy_delegate_gepa_playbook.yaml +107 -0
- superoptix-0.2.4/superoptix/agents.backup/software/data_science_gepa_playbook.yaml +111 -0
- superoptix-0.2.4/superoptix/agents.backup/software/developer_playbook.yaml +89 -0
- superoptix-0.2.4/superoptix/agents.backup/software/developer_playbook_with_memory.yaml +272 -0
- superoptix-0.2.4/superoptix/agents.backup/software/devops_engineer_playbook.yaml +90 -0
- superoptix-0.2.4/superoptix/agents.backup/software/lightweight_developer_playbook.yaml +105 -0
- superoptix-0.2.4/superoptix/agents.backup/software/performance_engineer_playbook.yaml +89 -0
- superoptix-0.2.4/superoptix/agents.backup/software/product_owner_playbook.yaml +91 -0
- superoptix-0.2.4/superoptix/agents.backup/software/qa_engineer_playbook.yaml +215 -0
- superoptix-0.2.4/superoptix/agents.backup/software/scrum_master_playbook.yaml +90 -0
- superoptix-0.2.4/superoptix/agents.backup/software/security_analyzer_gepa_playbook.yaml +159 -0
- superoptix-0.2.4/superoptix/agents.backup/software/security_engineer_playbook.yaml +89 -0
- superoptix-0.2.4/superoptix/agents.backup/software/system_architect_playbook.yaml +90 -0
- superoptix-0.2.4/superoptix/agents.backup/software/technical_writer_playbook.yaml +98 -0
- superoptix-0.2.4/superoptix/agents.backup/testing/README.md +152 -0
- superoptix-0.2.4/superoptix/agents.backup/testing/lmstudio_demo_playbook.yaml +225 -0
- superoptix-0.2.4/superoptix/agents.backup/testing/local_test_agent_playbook.yaml +171 -0
- superoptix-0.2.4/superoptix/agents.backup/testing/mlx_test_agent_playbook.yaml +79 -0
- superoptix-0.2.4/superoptix/agents.backup/transportation/fleet_manager_playbook.yaml +111 -0
- superoptix-0.2.4/superoptix/agents.backup/transportation/logistics_coordinator_playbook.yaml +109 -0
- superoptix-0.2.4/superoptix/agents.backup/transportation/route_optimizer_playbook.yaml +110 -0
- superoptix-0.2.4/superoptix/agents.backup/transportation/supply_chain_analyst_playbook.yaml +110 -0
- superoptix-0.2.4/superoptix/agents.backup/transportation/warehouse_manager_playbook.yaml +111 -0
- superoptix-0.2.4/superoptix/benchmarks/stackone/__init__.py +18 -0
- superoptix-0.2.4/superoptix/benchmarks/stackone/ats_benchmark.py +55 -0
- superoptix-0.2.4/superoptix/benchmarks/stackone/base.py +58 -0
- superoptix-0.2.4/superoptix/benchmarks/stackone/crm_benchmark.py +51 -0
- superoptix-0.2.4/superoptix/benchmarks/stackone/hris_benchmark.py +45 -0
- superoptix-0.2.4/superoptix/cli/__init__.py +1 -0
- superoptix-0.2.4/superoptix/cli/auth/__init__.py +20 -0
- superoptix-0.2.4/superoptix/cli/auth/auth_helper.py +88 -0
- superoptix-0.2.4/superoptix/cli/auth/token_storage.py +192 -0
- superoptix-0.2.4/superoptix/cli/commands/__init__.py +5 -0
- superoptix-0.2.4/superoptix/cli/commands/agent.py +3818 -0
- superoptix-0.2.4/superoptix/cli/commands/chat_agent.py +316 -0
- superoptix-0.2.4/superoptix/cli/commands/chat_textbox.py +420 -0
- superoptix-0.2.4/superoptix/cli/commands/command_generator.py +255 -0
- superoptix-0.2.4/superoptix/cli/commands/conversational.py +611 -0
- superoptix-0.2.4/superoptix/cli/commands/dataset.py +295 -0
- superoptix-0.2.4/superoptix/cli/commands/dataset_marketplace.py +296 -0
- superoptix-0.2.4/superoptix/cli/commands/embedded_knowledge_access.py +534 -0
- superoptix-0.2.4/superoptix/cli/commands/init.py +415 -0
- superoptix-0.2.4/superoptix/cli/commands/intent_parser.py +463 -0
- superoptix-0.2.4/superoptix/cli/commands/marketplace.py +803 -0
- superoptix-0.2.4/superoptix/cli/commands/mcp_client.py +312 -0
- superoptix-0.2.4/superoptix/cli/commands/model.py +1697 -0
- superoptix-0.2.4/superoptix/cli/commands/multiline_input.py +299 -0
- superoptix-0.2.4/superoptix/cli/commands/observability.py +742 -0
- superoptix-0.2.4/superoptix/cli/commands/orchestra.py +998 -0
- superoptix-0.2.4/superoptix/cli/commands/playbook_registry.py +150 -0
- superoptix-0.2.4/superoptix/cli/commands/response_formatter.py +292 -0
- superoptix-0.2.4/superoptix/cli/commands/slash_commands.py +1269 -0
- superoptix-0.2.4/superoptix/cli/commands/superspec.py +818 -0
- superoptix-0.2.4/superoptix/cli/commands/thinking_animation.py +371 -0
- superoptix-0.2.4/superoptix/cli/main.py +2559 -0
- superoptix-0.2.4/superoptix/cli/telemetry.py +211 -0
- superoptix-0.2.4/superoptix/cli/utils.py +198 -0
- superoptix-0.2.4/superoptix/compiler/__init__.py +0 -0
- superoptix-0.2.4/superoptix/compiler/agent_compiler.py +616 -0
- superoptix-0.2.4/superoptix/compiler/dspy_generator.py +477 -0
- superoptix-0.2.4/superoptix/config/tiers.yaml +111 -0
- superoptix-0.2.4/superoptix/core/__init__.py +25 -0
- superoptix-0.2.4/superoptix/core/base_component.py +227 -0
- superoptix-0.2.4/superoptix/core/base_pipeline.py +438 -0
- superoptix-0.2.4/superoptix/core/optimizer_factory.py +946 -0
- superoptix-0.2.4/superoptix/core/pipeline_utils.py +2158 -0
- superoptix-0.2.4/superoptix/core/rag_mixin.py +833 -0
- superoptix-0.2.4/superoptix/core/validation.py +488 -0
- superoptix-0.2.4/superoptix/datasets/__init__.py +20 -0
- superoptix-0.2.4/superoptix/datasets/examples/README.md +218 -0
- superoptix-0.2.4/superoptix/datasets/examples/code_review_examples.csv +264 -0
- superoptix-0.2.4/superoptix/datasets/examples/qa_pairs.json +53 -0
- superoptix-0.2.4/superoptix/datasets/examples/sentiment_reviews.csv +32 -0
- superoptix-0.2.4/superoptix/datasets/examples/text_classification.jsonl +21 -0
- superoptix-0.2.4/superoptix/datasets/loader.py +319 -0
- superoptix-0.2.4/superoptix/datasets/validators.py +105 -0
- superoptix-0.2.4/superoptix/knowledge/code_review/best_practices/code_smells.md +200 -0
- superoptix-0.2.4/superoptix/knowledge/code_review/best_practices/solid_principles.md +232 -0
- superoptix-0.2.4/superoptix/knowledge/code_review/performance/time_complexity.md +123 -0
- superoptix-0.2.4/superoptix/knowledge/code_review/python/error_handling.md +103 -0
- superoptix-0.2.4/superoptix/knowledge/code_review/python/naming_conventions.md +127 -0
- superoptix-0.2.4/superoptix/knowledge/code_review/security/hardcoded_secrets.md +60 -0
- superoptix-0.2.4/superoptix/knowledge/code_review/security/sql_injection.md +48 -0
- superoptix-0.2.4/superoptix/knowledge/code_review/security/xss_prevention.md +50 -0
- superoptix-0.2.4/superoptix/memory/__init__.py +20 -0
- superoptix-0.2.4/superoptix/memory/agent_memory.py +615 -0
- superoptix-0.2.4/superoptix/memory/context_manager.py +316 -0
- superoptix-0.2.4/superoptix/memory/episodic_memory.py +575 -0
- superoptix-0.2.4/superoptix/memory/long_term_memory.py +527 -0
- superoptix-0.2.4/superoptix/memory/memory_backends.py +563 -0
- superoptix-0.2.4/superoptix/memory/short_term_memory.py +327 -0
- superoptix-0.2.4/superoptix/metaspecs/specs/tiers/genie_spec.yaml +194 -0
- superoptix-0.2.4/superoptix/metaspecs/specs/tiers/oracle_spec.yaml +70 -0
- superoptix-0.2.4/superoptix/models/__init__.py +98 -0
- superoptix-0.2.4/superoptix/models/backends/__init__.py +17 -0
- superoptix-0.2.4/superoptix/models/backends/base.py +168 -0
- superoptix-0.2.4/superoptix/models/backends/huggingface.py +808 -0
- superoptix-0.2.4/superoptix/models/backends/huggingface_server.py +237 -0
- superoptix-0.2.4/superoptix/models/backends/lmstudio.py +533 -0
- superoptix-0.2.4/superoptix/models/backends/mlx.py +568 -0
- superoptix-0.2.4/superoptix/models/backends/mlx_dspy_client.py +130 -0
- superoptix-0.2.4/superoptix/models/backends/ollama.py +434 -0
- superoptix-0.2.4/superoptix/models/base_models.py +297 -0
- superoptix-0.2.4/superoptix/models/config.py +326 -0
- superoptix-0.2.4/superoptix/models/manager.py +601 -0
- superoptix-0.2.4/superoptix/models/registry.py +515 -0
- superoptix-0.2.4/superoptix/models/tier_system.py +179 -0
- superoptix-0.2.4/superoptix/models/utils.py +295 -0
- superoptix-0.2.4/superoptix/observability/__init__.py +61 -0
- superoptix-0.2.4/superoptix/observability/callbacks.py +420 -0
- superoptix-0.2.4/superoptix/observability/dashboard.py +1225 -0
- superoptix-0.2.4/superoptix/observability/debugger.py +518 -0
- superoptix-0.2.4/superoptix/observability/enhanced_adapter.py +323 -0
- superoptix-0.2.4/superoptix/observability/enhanced_tracer.py +705 -0
- superoptix-0.2.4/superoptix/observability/local_storage.py +691 -0
- superoptix-0.2.4/superoptix/observability/simple_dashboard.py +407 -0
- superoptix-0.2.4/superoptix/observability/tracer.py +539 -0
- superoptix-0.2.4/superoptix/observability/unified_interface.py +357 -0
- superoptix-0.2.4/superoptix/optimizers/__init__.py +87 -0
- superoptix-0.2.4/superoptix/optimizers/gepa_mcp_adapter/README.md +552 -0
- superoptix-0.2.4/superoptix/optimizers/gepa_mcp_adapter/__init__.py +30 -0
- superoptix-0.2.4/superoptix/optimizers/gepa_mcp_adapter/mcp_adapter.py +666 -0
- superoptix-0.2.4/superoptix/optimizers/gepa_mcp_adapter/mcp_types.py +63 -0
- superoptix-0.2.4/superoptix/optimizers/gepa_mcp_adapter/simple_stdio_client.py +86 -0
- superoptix-0.2.4/superoptix/optimizers/gepa_mcp_adapter/sse_client.py +158 -0
- superoptix-0.2.4/superoptix/optimizers/gepa_mcp_adapter/streamable_http_client.py +164 -0
- superoptix-0.2.4/superoptix/optimizers/gepa_rag_adapter/GEPA_RAG.md +621 -0
- superoptix-0.2.4/superoptix/optimizers/gepa_rag_adapter/__init__.py +66 -0
- superoptix-0.2.4/superoptix/optimizers/gepa_rag_adapter/evaluation_metrics.py +249 -0
- superoptix-0.2.4/superoptix/optimizers/gepa_rag_adapter/generic_rag_adapter.py +531 -0
- superoptix-0.2.4/superoptix/optimizers/gepa_rag_adapter/rag_pipeline.py +289 -0
- superoptix-0.2.4/superoptix/optimizers/gepa_rag_adapter/vector_store_interface.py +212 -0
- superoptix-0.2.4/superoptix/optimizers/gepa_rag_adapter/vector_stores/__init__.py +2 -0
- superoptix-0.2.4/superoptix/optimizers/gepa_rag_adapter/vector_stores/chroma_store.py +221 -0
- superoptix-0.2.4/superoptix/optimizers/gepa_rag_adapter/vector_stores/lancedb_store.py +445 -0
- superoptix-0.2.4/superoptix/optimizers/gepa_rag_adapter/vector_stores/milvus_store.py +437 -0
- superoptix-0.2.4/superoptix/optimizers/gepa_rag_adapter/vector_stores/qdrant_store.py +403 -0
- superoptix-0.2.4/superoptix/optimizers/gepa_rag_adapter/vector_stores/weaviate_store.py +457 -0
- superoptix-0.2.4/superoptix/optimizers/memory/__init__.py +11 -0
- superoptix-0.2.4/superoptix/optimizers/memory/context_optimizer.py +470 -0
- superoptix-0.2.4/superoptix/optimizers/memory/memory_ranker.py +172 -0
- superoptix-0.2.4/superoptix/optimizers/memory/memory_summarizer.py +159 -0
- superoptix-0.2.4/superoptix/optimizers/universal_gepa.py +628 -0
- superoptix-0.2.4/superoptix/protocols/__init__.py +17 -0
- superoptix-0.2.4/superoptix/protocols/base.py +178 -0
- superoptix-0.2.4/superoptix/protocols/mcp/__init__.py +14 -0
- superoptix-0.2.4/superoptix/protocols/mcp/client.py +363 -0
- superoptix-0.2.4/superoptix/protocols/mcp/client_realmcp.py +133 -0
- superoptix-0.2.4/superoptix/protocols/mcp/session.py +337 -0
- superoptix-0.2.4/superoptix/protocols/registry.py +159 -0
- superoptix-0.2.4/superoptix/runners/__init__.py +0 -0
- superoptix-0.2.4/superoptix/runners/dspy_runner.py +764 -0
- superoptix-0.2.4/superoptix/runners/orchestra_runner.py +851 -0
- superoptix-0.2.4/superoptix/superspec/README.md +384 -0
- superoptix-0.2.4/superoptix/superspec/__init__.py +18 -0
- superoptix-0.2.4/superoptix/superspec/dsl_extended.yaml +187 -0
- superoptix-0.2.4/superoptix/superspec/generator.py +1096 -0
- superoptix-0.2.4/superoptix/superspec/parser.py +622 -0
- superoptix-0.2.4/superoptix/superspec/schema.py +1025 -0
- superoptix-0.2.4/superoptix/superspec/superspec_dsl.yaml +812 -0
- superoptix-0.2.4/superoptix/superspec/superspec_dsl_extended.yaml +1370 -0
- superoptix-0.2.4/superoptix/superspec/validator.py +573 -0
- superoptix-0.2.4/superoptix/templates/orchestra/orchestra.yaml.jinja2 +115 -0
- superoptix-0.2.4/superoptix/templates/pipeline/crewai_pipeline.py.jinja2 +781 -0
- superoptix-0.2.4/superoptix/templates/pipeline/deepagents_pipeline.py.jinja2 +806 -0
- superoptix-0.2.4/superoptix/templates/pipeline/dspy_genies_mixin_pipeline.py.jinja2 +699 -0
- superoptix-0.2.4/superoptix/templates/pipeline/dspy_oracles_mixin_pipeline.py.jinja2 +500 -0
- superoptix-0.2.4/superoptix/templates/pipeline/dspy_pipeline_agenspy.py.jinja2 +687 -0
- superoptix-0.2.4/superoptix/templates/pipeline/dspy_pipeline_explicit.py.jinja2 +1942 -0
- superoptix-0.2.4/superoptix/templates/pipeline/google_adk_pipeline.py.jinja2 +700 -0
- superoptix-0.2.4/superoptix/templates/pipeline/microsoft_agent_pipeline.py.jinja2 +435 -0
- superoptix-0.2.4/superoptix/templates/pipeline/microsoft_pipeline.py.jinja2 +435 -0
- superoptix-0.2.4/superoptix/templates/pipeline/openai_agent_pipeline.py.jinja2 +327 -0
- superoptix-0.2.4/superoptix/templates/pipeline/openai_pipeline.py.jinja2 +690 -0
- superoptix-0.2.4/superoptix/templates/pipeline/optimas_autogen_pipeline.py.jinja2 +114 -0
- superoptix-0.2.4/superoptix/templates/pipeline/optimas_crewai_pipeline.py.jinja2 +136 -0
- superoptix-0.2.4/superoptix/templates/pipeline/optimas_dspy_pipeline.py.jinja2 +162 -0
- superoptix-0.2.4/superoptix/templates/pipeline/optimas_openai_pipeline.py.jinja2 +119 -0
- superoptix-0.2.4/superoptix/templates/pipeline/pydantic_ai_pipeline.py.jinja2 +1636 -0
- superoptix-0.2.4/superoptix/tools/__init__.py +252 -0
- superoptix-0.2.4/superoptix/tools/base.py +88 -0
- superoptix-0.2.4/superoptix/tools/builtin_tools.py +2973 -0
- superoptix-0.2.4/superoptix/tools/categories/__init__.py +75 -0
- superoptix-0.2.4/superoptix/tools/categories/agriculture.py +41 -0
- superoptix-0.2.4/superoptix/tools/categories/core.py +434 -0
- superoptix-0.2.4/superoptix/tools/categories/development.py +512 -0
- superoptix-0.2.4/superoptix/tools/categories/education.py +59 -0
- superoptix-0.2.4/superoptix/tools/categories/energy.py +37 -0
- superoptix-0.2.4/superoptix/tools/categories/finance.py +224 -0
- superoptix-0.2.4/superoptix/tools/categories/gaming_sports.py +9 -0
- superoptix-0.2.4/superoptix/tools/categories/healthcare.py +99 -0
- superoptix-0.2.4/superoptix/tools/categories/hospitality.py +9 -0
- superoptix-0.2.4/superoptix/tools/categories/human_resources.py +9 -0
- superoptix-0.2.4/superoptix/tools/categories/legal.py +59 -0
- superoptix-0.2.4/superoptix/tools/categories/manufacturing.py +53 -0
- superoptix-0.2.4/superoptix/tools/categories/marketing.py +71 -0
- superoptix-0.2.4/superoptix/tools/categories/real_estate.py +35 -0
- superoptix-0.2.4/superoptix/tools/categories/retail.py +14 -0
- superoptix-0.2.4/superoptix/tools/categories/transportation.py +41 -0
- superoptix-0.2.4/superoptix/tools/categories/utilities.py +384 -0
- superoptix-0.2.4/superoptix/tools/factories/__init__.py +29 -0
- superoptix-0.2.4/superoptix/tools/factories/tool_factory.py +330 -0
- superoptix-0.2.4/superoptix/tools/tool_registry.py +340 -0
- superoptix-0.2.4/superoptix/ui/__init__.py +1 -0
- superoptix-0.2.4/superoptix/ui/agent_designer.py +1302 -0
- superoptix-0.2.4/superoptix/ui/designer_factory.py +53 -0
- superoptix-0.2.4/superoptix/ui/launch.py +36 -0
- superoptix-0.2.4/superoptix/ui/oracles_designer.py +1214 -0
- superoptix-0.2.4/superoptix/validators/__init__.py +0 -0
- superoptix-0.2.4/superoptix/validators/oracles_playbook_validator.py +108 -0
- superoptix-0.2.4/superoptix/validators/playbook_linter.py +117 -0
- superoptix-0.2.4/superoptix/validators/validator_factory.py +19 -0
- superoptix-0.2.4/superoptix/vendor/__init__.py +1 -0
- superoptix-0.2.4/superoptix/vendor/deepagents/__init__.py +17 -0
- superoptix-0.2.4/superoptix/vendor/deepagents/backends/__init__.py +19 -0
- superoptix-0.2.4/superoptix/vendor/deepagents/backends/composite.py +232 -0
- superoptix-0.2.4/superoptix/vendor/deepagents/backends/filesystem.py +514 -0
- superoptix-0.2.4/superoptix/vendor/deepagents/backends/protocol.py +123 -0
- superoptix-0.2.4/superoptix/vendor/deepagents/backends/state.py +202 -0
- superoptix-0.2.4/superoptix/vendor/deepagents/backends/store.py +398 -0
- superoptix-0.2.4/superoptix/vendor/deepagents/backends/utils.py +449 -0
- superoptix-0.2.4/superoptix/vendor/deepagents/graph.py +158 -0
- superoptix-0.2.4/superoptix/vendor/deepagents/middleware/__init__.py +10 -0
- superoptix-0.2.4/superoptix/vendor/deepagents/middleware/filesystem.py +712 -0
- superoptix-0.2.4/superoptix/vendor/deepagents/middleware/patch_tool_calls.py +51 -0
- superoptix-0.2.4/superoptix/vendor/deepagents/middleware/subagents.py +516 -0
- superoptix-0.2.4/tests/__init__.py +0 -0
- superoptix-0.2.4/tests/adapters/test_crewai_adapter.py +71 -0
- superoptix-0.2.4/tests/adapters/test_deepagent_adapter.py +344 -0
- superoptix-0.2.4/tests/adapters/test_google_adk_adapter.py +71 -0
- superoptix-0.2.4/tests/adapters/test_microsoft_adapter.py +71 -0
- superoptix-0.2.4/tests/adapters/test_openai_adapter.py +71 -0
- superoptix-0.2.4/tests/adapters/test_universal_gepa.py +286 -0
- superoptix-0.2.4/tests/adapters/test_universal_gepa_deepagent.py +231 -0
- superoptix-0.2.4/tests/adapters/test_universal_gepa_simple.py +215 -0
- superoptix-0.2.4/tests/test_agenspy_protocols.py +270 -0
- superoptix-0.2.4/tests/test_cli.py +98 -0
- superoptix-0.2.4/tests/test_enhanced_observability.py +274 -0
- superoptix-0.2.4/tests/test_memory_system.py +420 -0
- superoptix-0.2.4/tests/test_optimizer_factory.py +217 -0
- superoptix-0.2.4/tests/test_pipeline_integration.py +298 -0
- superoptix-0.2.4/tox.ini +19 -0
- superoptix-0.2.4/uv.lock +9230 -0
- superoptix-0.2.4/uv.toml +1 -0
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
name: 🐛 Bug Report
|
|
2
|
+
description: Report a bug or unexpected behavior in SuperOptiX
|
|
3
|
+
title: "[Bug]: "
|
|
4
|
+
labels: ["bug", "needs-triage"]
|
|
5
|
+
assignees: []
|
|
6
|
+
|
|
7
|
+
body:
|
|
8
|
+
- type: markdown
|
|
9
|
+
attributes:
|
|
10
|
+
value: |
|
|
11
|
+
Thanks for taking the time to fill out this bug report! 🙏
|
|
12
|
+
|
|
13
|
+
Before submitting, please search existing issues to avoid duplicates.
|
|
14
|
+
|
|
15
|
+
- type: textarea
|
|
16
|
+
id: description
|
|
17
|
+
attributes:
|
|
18
|
+
label: 🐛 Bug Description
|
|
19
|
+
description: A clear and concise description of what the bug is
|
|
20
|
+
placeholder: Describe the bug...
|
|
21
|
+
validations:
|
|
22
|
+
required: true
|
|
23
|
+
|
|
24
|
+
- type: textarea
|
|
25
|
+
id: reproduction
|
|
26
|
+
attributes:
|
|
27
|
+
label: 🔄 Steps to Reproduce
|
|
28
|
+
description: Steps to reproduce the behavior
|
|
29
|
+
placeholder: |
|
|
30
|
+
1. Run command `sox init my_project`
|
|
31
|
+
2. Navigate to the project
|
|
32
|
+
3. Execute `sox agent create...`
|
|
33
|
+
4. See error...
|
|
34
|
+
validations:
|
|
35
|
+
required: true
|
|
36
|
+
|
|
37
|
+
- type: textarea
|
|
38
|
+
id: expected
|
|
39
|
+
attributes:
|
|
40
|
+
label: ✅ Expected Behavior
|
|
41
|
+
description: What you expected to happen
|
|
42
|
+
placeholder: Describe what should have happened...
|
|
43
|
+
validations:
|
|
44
|
+
required: true
|
|
45
|
+
|
|
46
|
+
- type: textarea
|
|
47
|
+
id: actual
|
|
48
|
+
attributes:
|
|
49
|
+
label: ❌ Actual Behavior
|
|
50
|
+
description: What actually happened
|
|
51
|
+
placeholder: Describe what actually happened...
|
|
52
|
+
validations:
|
|
53
|
+
required: true
|
|
54
|
+
|
|
55
|
+
- type: textarea
|
|
56
|
+
id: environment
|
|
57
|
+
attributes:
|
|
58
|
+
label: 🌍 Environment
|
|
59
|
+
description: Please provide your environment details
|
|
60
|
+
placeholder: |
|
|
61
|
+
- OS: [e.g. macOS 14.0, Ubuntu 22.04, Windows 11]
|
|
62
|
+
- Python version: [e.g. 3.12.1]
|
|
63
|
+
- SuperOptiX version: [e.g. 0.1.0]
|
|
64
|
+
- DSPy version: [e.g. 3.0.0b1]
|
|
65
|
+
validations:
|
|
66
|
+
required: true
|
|
67
|
+
|
|
68
|
+
- type: textarea
|
|
69
|
+
id: logs
|
|
70
|
+
attributes:
|
|
71
|
+
label: 📋 Error Logs
|
|
72
|
+
description: Please copy and paste any relevant log output
|
|
73
|
+
render: shell
|
|
74
|
+
placeholder: Paste your error logs here...
|
|
75
|
+
|
|
76
|
+
- type: textarea
|
|
77
|
+
id: additional
|
|
78
|
+
attributes:
|
|
79
|
+
label: 📝 Additional Context
|
|
80
|
+
description: Add any other context about the problem here
|
|
81
|
+
placeholder: Any additional information that might help...
|
|
82
|
+
|
|
83
|
+
- type: checkboxes
|
|
84
|
+
id: checklist
|
|
85
|
+
attributes:
|
|
86
|
+
label: ✅ Checklist
|
|
87
|
+
description: Please confirm the following
|
|
88
|
+
options:
|
|
89
|
+
- label: I have searched existing issues and this is not a duplicate
|
|
90
|
+
required: true
|
|
91
|
+
- label: I have provided all the required information above
|
|
92
|
+
required: true
|
|
93
|
+
- label: This issue is related to SuperOptiX (not DSPy or other dependencies)
|
|
94
|
+
required: true
|
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
name: 🚀 Feature Request
|
|
2
|
+
description: Suggest a new feature or enhancement for SuperOptiX
|
|
3
|
+
title: "[Feature]: "
|
|
4
|
+
labels: ["enhancement", "needs-triage"]
|
|
5
|
+
assignees: []
|
|
6
|
+
|
|
7
|
+
body:
|
|
8
|
+
- type: markdown
|
|
9
|
+
attributes:
|
|
10
|
+
value: |
|
|
11
|
+
Thanks for suggesting a new feature! 🚀
|
|
12
|
+
|
|
13
|
+
Before submitting, please search existing issues to see if this has been requested before.
|
|
14
|
+
|
|
15
|
+
- type: textarea
|
|
16
|
+
id: summary
|
|
17
|
+
attributes:
|
|
18
|
+
label: 🎯 Feature Summary
|
|
19
|
+
description: A clear and concise summary of the feature you'd like to see
|
|
20
|
+
placeholder: Briefly describe the feature...
|
|
21
|
+
validations:
|
|
22
|
+
required: true
|
|
23
|
+
|
|
24
|
+
- type: textarea
|
|
25
|
+
id: problem
|
|
26
|
+
attributes:
|
|
27
|
+
label: 🤔 Problem Statement
|
|
28
|
+
description: What problem does this feature solve? What's the current limitation?
|
|
29
|
+
placeholder: |
|
|
30
|
+
As a SuperOptiX user, I find it difficult to...
|
|
31
|
+
Currently, there's no way to...
|
|
32
|
+
This would help because...
|
|
33
|
+
validations:
|
|
34
|
+
required: true
|
|
35
|
+
|
|
36
|
+
- type: textarea
|
|
37
|
+
id: solution
|
|
38
|
+
attributes:
|
|
39
|
+
label: 💡 Proposed Solution
|
|
40
|
+
description: Describe the solution you'd like to see
|
|
41
|
+
placeholder: |
|
|
42
|
+
I would like SuperOptiX to support...
|
|
43
|
+
The feature should work by...
|
|
44
|
+
Users would interact with it by...
|
|
45
|
+
validations:
|
|
46
|
+
required: true
|
|
47
|
+
|
|
48
|
+
- type: textarea
|
|
49
|
+
id: alternatives
|
|
50
|
+
attributes:
|
|
51
|
+
label: 🔄 Alternatives Considered
|
|
52
|
+
description: Describe any alternative solutions or workarounds you've considered
|
|
53
|
+
placeholder: |
|
|
54
|
+
Alternative 1: ...
|
|
55
|
+
Alternative 2: ...
|
|
56
|
+
Current workaround: ...
|
|
57
|
+
|
|
58
|
+
- type: dropdown
|
|
59
|
+
id: feature_type
|
|
60
|
+
attributes:
|
|
61
|
+
label: 🏷️ Feature Type
|
|
62
|
+
description: What type of feature is this?
|
|
63
|
+
options:
|
|
64
|
+
- Agent Framework Enhancement
|
|
65
|
+
- DSPy Integration Improvement
|
|
66
|
+
- CLI Tool Enhancement
|
|
67
|
+
- Orchestration Feature
|
|
68
|
+
- Memory System Enhancement
|
|
69
|
+
- Observability/Debugging Tool
|
|
70
|
+
- Performance Optimization
|
|
71
|
+
- Documentation/Examples
|
|
72
|
+
- Other
|
|
73
|
+
validations:
|
|
74
|
+
required: true
|
|
75
|
+
|
|
76
|
+
- type: dropdown
|
|
77
|
+
id: priority
|
|
78
|
+
attributes:
|
|
79
|
+
label: 📊 Priority Level
|
|
80
|
+
description: How important is this feature to you?
|
|
81
|
+
options:
|
|
82
|
+
- Low - Nice to have
|
|
83
|
+
- Medium - Would be helpful
|
|
84
|
+
- High - Important for my use case
|
|
85
|
+
- Critical - Blocking my work
|
|
86
|
+
validations:
|
|
87
|
+
required: true
|
|
88
|
+
|
|
89
|
+
- type: textarea
|
|
90
|
+
id: usecase
|
|
91
|
+
attributes:
|
|
92
|
+
label: 🎭 Use Case Examples
|
|
93
|
+
description: Provide specific examples of how this feature would be used
|
|
94
|
+
placeholder: |
|
|
95
|
+
Example 1: When building a customer service agent...
|
|
96
|
+
Example 2: In a multi-agent orchestration scenario...
|
|
97
|
+
Example 3: For debugging complex agent behaviors...
|
|
98
|
+
|
|
99
|
+
- type: textarea
|
|
100
|
+
id: implementation
|
|
101
|
+
attributes:
|
|
102
|
+
label: 🛠️ Implementation Ideas
|
|
103
|
+
description: If you have ideas about how this could be implemented, share them here
|
|
104
|
+
placeholder: |
|
|
105
|
+
This could be implemented by...
|
|
106
|
+
It might involve changes to...
|
|
107
|
+
The API could look like...
|
|
108
|
+
|
|
109
|
+
- type: checkboxes
|
|
110
|
+
id: checklist
|
|
111
|
+
attributes:
|
|
112
|
+
label: ✅ Checklist
|
|
113
|
+
description: Please confirm the following
|
|
114
|
+
options:
|
|
115
|
+
- label: I have searched existing issues and this feature hasn't been requested
|
|
116
|
+
required: true
|
|
117
|
+
- label: This feature aligns with SuperOptiX's core mission of agentic AI orchestration
|
|
118
|
+
required: true
|
|
119
|
+
- label: I would be willing to help test this feature when available
|
|
120
|
+
required: false
|
|
121
|
+
- label: I would be interested in contributing to the implementation
|
|
122
|
+
required: false
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
name: ❓ Question / Help
|
|
2
|
+
description: Ask a question or get help with using SuperOptiX
|
|
3
|
+
title: "[Question]: "
|
|
4
|
+
labels: ["question", "help-wanted"]
|
|
5
|
+
assignees: []
|
|
6
|
+
|
|
7
|
+
body:
|
|
8
|
+
- type: markdown
|
|
9
|
+
attributes:
|
|
10
|
+
value: |
|
|
11
|
+
Thanks for reaching out! 🤝
|
|
12
|
+
|
|
13
|
+
Before asking, please check:
|
|
14
|
+
- [📚 Documentation](https://github.com/SuperagenticAI/superoptix/docs)
|
|
15
|
+
- [🔍 Existing Issues](https://github.com/SuperagenticAI/superoptix/issues)
|
|
16
|
+
- [💬 Discussions](https://github.com/SuperagenticAI/superoptix/discussions)
|
|
17
|
+
|
|
18
|
+
- type: dropdown
|
|
19
|
+
id: question_type
|
|
20
|
+
attributes:
|
|
21
|
+
label: 🏷️ Question Type
|
|
22
|
+
description: What type of help do you need?
|
|
23
|
+
options:
|
|
24
|
+
- Getting Started / Installation
|
|
25
|
+
- Agent Development
|
|
26
|
+
- DSPy Integration
|
|
27
|
+
- Orchestration & Multi-Agent
|
|
28
|
+
- Memory Systems
|
|
29
|
+
- CLI Usage
|
|
30
|
+
- Performance & Optimization
|
|
31
|
+
- Best Practices
|
|
32
|
+
- Troubleshooting
|
|
33
|
+
- Other
|
|
34
|
+
validations:
|
|
35
|
+
required: true
|
|
36
|
+
|
|
37
|
+
- type: textarea
|
|
38
|
+
id: question
|
|
39
|
+
attributes:
|
|
40
|
+
label: ❓ Your Question
|
|
41
|
+
description: What would you like to know?
|
|
42
|
+
placeholder: |
|
|
43
|
+
I'm trying to...
|
|
44
|
+
I'm confused about...
|
|
45
|
+
How do I...
|
|
46
|
+
validations:
|
|
47
|
+
required: true
|
|
48
|
+
|
|
49
|
+
- type: textarea
|
|
50
|
+
id: context
|
|
51
|
+
attributes:
|
|
52
|
+
label: 🔍 Context & Background
|
|
53
|
+
description: Provide context about what you're trying to achieve
|
|
54
|
+
placeholder: |
|
|
55
|
+
I'm building an agent that...
|
|
56
|
+
My use case involves...
|
|
57
|
+
I'm working on...
|
|
58
|
+
|
|
59
|
+
- type: textarea
|
|
60
|
+
id: attempted
|
|
61
|
+
attributes:
|
|
62
|
+
label: 🔧 What Have You Tried?
|
|
63
|
+
description: What approaches or solutions have you already attempted?
|
|
64
|
+
placeholder: |
|
|
65
|
+
I tried...
|
|
66
|
+
I looked at...
|
|
67
|
+
I followed the guide for...
|
|
68
|
+
|
|
69
|
+
- type: textarea
|
|
70
|
+
id: code
|
|
71
|
+
attributes:
|
|
72
|
+
label: 💻 Relevant Code
|
|
73
|
+
description: Share any relevant code, configuration, or playbooks
|
|
74
|
+
render: python
|
|
75
|
+
placeholder: |
|
|
76
|
+
# Your code here
|
|
77
|
+
from superoptix import Agent
|
|
78
|
+
|
|
79
|
+
agent = Agent(...)
|
|
80
|
+
|
|
81
|
+
- type: textarea
|
|
82
|
+
id: environment
|
|
83
|
+
attributes:
|
|
84
|
+
label: 🌍 Environment
|
|
85
|
+
description: Your environment details (if relevant)
|
|
86
|
+
placeholder: |
|
|
87
|
+
- OS: [e.g. macOS 14.0]
|
|
88
|
+
- Python version: [e.g. 3.12.1]
|
|
89
|
+
- SuperOptiX version: [e.g. 0.1.0]
|
|
90
|
+
- DSPy version: [e.g. 3.0.0b1]
|
|
91
|
+
|
|
92
|
+
- type: checkboxes
|
|
93
|
+
id: checklist
|
|
94
|
+
attributes:
|
|
95
|
+
label: ✅ Checklist
|
|
96
|
+
description: Please confirm the following
|
|
97
|
+
options:
|
|
98
|
+
- label: I have searched existing issues and discussions
|
|
99
|
+
required: true
|
|
100
|
+
- label: I have checked the documentation
|
|
101
|
+
required: true
|
|
102
|
+
- label: This is a question about SuperOptiX usage (not a bug report or feature request)
|
|
103
|
+
required: true
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
## 🚀 Pull Request
|
|
2
|
+
|
|
3
|
+
### 📋 Description
|
|
4
|
+
<!-- Provide a clear and concise description of your changes -->
|
|
5
|
+
|
|
6
|
+
### 🔧 Type of Change
|
|
7
|
+
<!-- Mark the relevant option with an "x" -->
|
|
8
|
+
- [ ] 🐛 Bug fix (non-breaking change which fixes an issue)
|
|
9
|
+
- [ ] ✨ New feature (non-breaking change which adds functionality)
|
|
10
|
+
- [ ] 💥 Breaking change (fix or feature that would cause existing functionality to not work as expected)
|
|
11
|
+
- [ ] 📚 Documentation update
|
|
12
|
+
- [ ] 🧹 Code refactoring (no functional changes)
|
|
13
|
+
- [ ] ⚡ Performance improvement
|
|
14
|
+
- [ ] 🧪 Test coverage improvement
|
|
15
|
+
- [ ] 🎨 Style/formatting changes
|
|
16
|
+
- [ ] 🔧 Build/CI changes
|
|
17
|
+
|
|
18
|
+
### 🎯 Related Issues
|
|
19
|
+
<!-- Link related issues using keywords: fixes #123, closes #456, relates to #789 -->
|
|
20
|
+
- Fixes #
|
|
21
|
+
- Closes #
|
|
22
|
+
- Relates to #
|
|
23
|
+
|
|
24
|
+
### 🧪 Testing
|
|
25
|
+
<!-- Describe the testing you've performed -->
|
|
26
|
+
- [ ] Unit tests pass locally
|
|
27
|
+
- [ ] Integration tests pass locally
|
|
28
|
+
- [ ] Manual testing completed
|
|
29
|
+
- [ ] Added new tests for the changes
|
|
30
|
+
- [ ] Tested with different Python versions
|
|
31
|
+
- [ ] Tested with different operating systems
|
|
32
|
+
|
|
33
|
+
### 📝 Testing Details
|
|
34
|
+
<!-- Provide details about your testing approach -->
|
|
35
|
+
```bash
|
|
36
|
+
# Commands used for testing
|
|
37
|
+
pytest tests/
|
|
38
|
+
super init test_project
|
|
39
|
+
# etc.
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
### 📚 Documentation
|
|
43
|
+
<!-- Check all that apply -->
|
|
44
|
+
- [ ] Code is well-commented
|
|
45
|
+
- [ ] Documentation updated (if applicable)
|
|
46
|
+
- [ ] README updated (if applicable)
|
|
47
|
+
- [ ] Docstrings added/updated
|
|
48
|
+
- [ ] Examples added/updated
|
|
49
|
+
|
|
50
|
+
### 🔒 Security Considerations
|
|
51
|
+
<!-- Consider security implications of your changes -->
|
|
52
|
+
- [ ] No sensitive data exposed
|
|
53
|
+
- [ ] Input validation implemented
|
|
54
|
+
- [ ] Authorization checks in place (if applicable)
|
|
55
|
+
- [ ] Dependencies are secure and up-to-date
|
|
56
|
+
|
|
57
|
+
### 📋 Checklist
|
|
58
|
+
<!-- Ensure all items are completed before submitting -->
|
|
59
|
+
- [ ] My code follows the project's style guidelines
|
|
60
|
+
- [ ] I have performed a self-review of my own code
|
|
61
|
+
- [ ] I have commented my code, particularly in hard-to-understand areas
|
|
62
|
+
- [ ] I have made corresponding changes to the documentation
|
|
63
|
+
- [ ] My changes generate no new warnings
|
|
64
|
+
- [ ] I have added tests that prove my fix is effective or that my feature works
|
|
65
|
+
- [ ] New and existing unit tests pass locally with my changes
|
|
66
|
+
- [ ] Any dependent changes have been merged and published
|
|
67
|
+
|
|
68
|
+
### 🖼️ Screenshots/GIFs
|
|
69
|
+
<!-- If applicable, add screenshots or GIFs to help explain your changes -->
|
|
70
|
+
|
|
71
|
+
### 📈 Performance Impact
|
|
72
|
+
<!-- Describe any performance implications -->
|
|
73
|
+
- [ ] No performance impact
|
|
74
|
+
- [ ] Performance improved
|
|
75
|
+
- [ ] Performance regression (justified below)
|
|
76
|
+
|
|
77
|
+
**Performance Details:**
|
|
78
|
+
<!-- If there's a performance impact, explain it here -->
|
|
79
|
+
|
|
80
|
+
### 🌍 Environment Tested
|
|
81
|
+
<!-- Specify the environments where you tested your changes -->
|
|
82
|
+
- **OS:**
|
|
83
|
+
- **Python Version:**
|
|
84
|
+
- **SuperOptiX Version:**
|
|
85
|
+
- **DSPy Version:**
|
|
86
|
+
|
|
87
|
+
### 🤝 Additional Context
|
|
88
|
+
<!-- Add any other context, concerns, or notes about the PR here -->
|
|
89
|
+
|
|
90
|
+
### 🎉 Ready for Review
|
|
91
|
+
<!-- Once you've completed all the above, mark this as ready -->
|
|
92
|
+
- [ ] This PR is ready for review
|
|
93
|
+
|
|
94
|
+
---
|
|
95
|
+
|
|
96
|
+
**Thank you for contributing to SuperOptiX! 🙏**
|
|
97
|
+
|
|
98
|
+
Your contribution helps make the Kubernetes of Agentic AI even better. We appreciate your effort in building the future of autonomous agent orchestration.
|
|
99
|
+
|
|
100
|
+
For more information about contributing, see our [Contributing Guidelines](CONTRIBUTING.md).
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
name: CI
|
|
2
|
+
on:
|
|
3
|
+
push:
|
|
4
|
+
branches: [ main ]
|
|
5
|
+
pull_request:
|
|
6
|
+
branches: [ main ]
|
|
7
|
+
|
|
8
|
+
jobs:
|
|
9
|
+
test:
|
|
10
|
+
runs-on: ubuntu-latest
|
|
11
|
+
strategy:
|
|
12
|
+
matrix:
|
|
13
|
+
python-version: ["3.11", "3.12"]
|
|
14
|
+
|
|
15
|
+
steps:
|
|
16
|
+
- uses: actions/checkout@v4
|
|
17
|
+
|
|
18
|
+
- name: Setup uv
|
|
19
|
+
uses: astral-sh/setup-uv@v1
|
|
20
|
+
with:
|
|
21
|
+
version: "latest"
|
|
22
|
+
|
|
23
|
+
- name: Install dependencies
|
|
24
|
+
run: |
|
|
25
|
+
# Generate lock file (uv.toml handles pre-release)
|
|
26
|
+
uv lock
|
|
27
|
+
# Install with cross-platform compatible extras
|
|
28
|
+
uv sync --extra testing --extra vectordb --extra observability --extra web --extra ml-cross-platform
|
|
29
|
+
# Install dev dependencies explicitly
|
|
30
|
+
uv pip install pytest mypy black ruff pre-commit pytest-cov pytest-asyncio pytest-mock responses
|
|
31
|
+
|
|
32
|
+
- name: Run tests
|
|
33
|
+
run: |
|
|
34
|
+
uv run pytest tests/
|
|
35
|
+
|
|
36
|
+
- name: Run Ruff
|
|
37
|
+
run: |
|
|
38
|
+
uv run ruff check .
|
|
39
|
+
uv run ruff format --check .
|
|
40
|
+
|
|
41
|
+
- name: Run type checking
|
|
42
|
+
run: |
|
|
43
|
+
uv run mypy superoptix/ --no-error-summary || echo "Type checking completed with warnings"
|
|
44
|
+
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
name: Release to PyPI
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
tags:
|
|
6
|
+
- 'v*'
|
|
7
|
+
|
|
8
|
+
jobs:
|
|
9
|
+
build-and-release:
|
|
10
|
+
runs-on: ubuntu-latest
|
|
11
|
+
|
|
12
|
+
steps:
|
|
13
|
+
- name: Checkout code
|
|
14
|
+
uses: actions/checkout@v4
|
|
15
|
+
with:
|
|
16
|
+
fetch-depth: 0
|
|
17
|
+
|
|
18
|
+
- name: Set up Python
|
|
19
|
+
uses: actions/setup-python@v4
|
|
20
|
+
with:
|
|
21
|
+
python-version: '3.11'
|
|
22
|
+
|
|
23
|
+
- name: Install build dependencies
|
|
24
|
+
run: |
|
|
25
|
+
python -m pip install --upgrade pip
|
|
26
|
+
pip install build twine cython numpy
|
|
27
|
+
|
|
28
|
+
- name: Install project dependencies
|
|
29
|
+
run: |
|
|
30
|
+
pip install --pre -e ".[dev]"
|
|
31
|
+
|
|
32
|
+
- name: Run tests
|
|
33
|
+
run: |
|
|
34
|
+
pytest tests/ -v
|
|
35
|
+
|
|
36
|
+
- name: Build protected package
|
|
37
|
+
run: |
|
|
38
|
+
python build_protected.py
|
|
39
|
+
env:
|
|
40
|
+
PYTHONPATH: ${{ github.workspace }}
|
|
41
|
+
|
|
42
|
+
- name: Upload to PyPI
|
|
43
|
+
run: |
|
|
44
|
+
twine upload dist/*
|
|
45
|
+
env:
|
|
46
|
+
TWINE_USERNAME: __token__
|
|
47
|
+
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
|
|
48
|
+
|
|
49
|
+
- name: Create GitHub Release
|
|
50
|
+
uses: actions/create-release@v1
|
|
51
|
+
env:
|
|
52
|
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
53
|
+
with:
|
|
54
|
+
tag_name: ${{ github.ref }}
|
|
55
|
+
release_name: Release ${{ github.ref }}
|
|
56
|
+
body: |
|
|
57
|
+
## SuperOptiX ${{ github.ref_name }}
|
|
58
|
+
|
|
59
|
+
### 🔒 Protected Release
|
|
60
|
+
This release includes compiled modules for enhanced security.
|
|
61
|
+
|
|
62
|
+
### 📦 Installation
|
|
63
|
+
```bash
|
|
64
|
+
pip install superoptix
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
### 🔗 Documentation
|
|
68
|
+
- [Documentation](https://docs.super-agentic.ai)
|
|
69
|
+
- [Support](https://support.super-agentic.ai)
|
|
70
|
+
|
|
71
|
+
### 📄 License
|
|
72
|
+
This is open source software. See LICENCE file for details.
|
|
73
|
+
draft: false
|
|
74
|
+
prerelease: false
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
name: Ruff
|
|
2
|
+
on:
|
|
3
|
+
push:
|
|
4
|
+
branches: [ main ]
|
|
5
|
+
pull_request:
|
|
6
|
+
branches: [ main ]
|
|
7
|
+
|
|
8
|
+
jobs:
|
|
9
|
+
ruff:
|
|
10
|
+
runs-on: ubuntu-latest
|
|
11
|
+
steps:
|
|
12
|
+
- uses: actions/checkout@v4
|
|
13
|
+
|
|
14
|
+
- name: Setup uv
|
|
15
|
+
uses: astral-sh/setup-uv@v1
|
|
16
|
+
with:
|
|
17
|
+
version: "latest"
|
|
18
|
+
|
|
19
|
+
- name: Install dependencies
|
|
20
|
+
run: |
|
|
21
|
+
uv lock
|
|
22
|
+
uv sync --extra testing
|
|
23
|
+
# Install dev dependencies explicitly
|
|
24
|
+
uv pip install ruff
|
|
25
|
+
|
|
26
|
+
- name: Run Ruff
|
|
27
|
+
run: |
|
|
28
|
+
# Run Ruff with checks disabled for now (info mode)
|
|
29
|
+
uv run ruff check .
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
# Python
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[cod]
|
|
4
|
+
*$py.class
|
|
5
|
+
*.so
|
|
6
|
+
.Python
|
|
7
|
+
build/
|
|
8
|
+
develop-eggs/
|
|
9
|
+
dist/
|
|
10
|
+
downloads/
|
|
11
|
+
eggs/
|
|
12
|
+
.eggs/
|
|
13
|
+
lib/
|
|
14
|
+
lib64/
|
|
15
|
+
parts/
|
|
16
|
+
sdist/
|
|
17
|
+
var/
|
|
18
|
+
wheels/
|
|
19
|
+
*.egg-info/
|
|
20
|
+
.installed.cfg
|
|
21
|
+
*.egg
|
|
22
|
+
# corpus/
|
|
23
|
+
|
|
24
|
+
# Virtual Environments
|
|
25
|
+
.env
|
|
26
|
+
.venv
|
|
27
|
+
env/
|
|
28
|
+
venv/
|
|
29
|
+
ENV/
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
# IDE
|
|
34
|
+
.idea/
|
|
35
|
+
.vscode/
|
|
36
|
+
*.swp
|
|
37
|
+
*.swo
|
|
38
|
+
.claude-cache/
|
|
39
|
+
.claude
|
|
40
|
+
|
|
41
|
+
# Testing
|
|
42
|
+
.coverage
|
|
43
|
+
coverage.xml
|
|
44
|
+
htmlcov/
|
|
45
|
+
.pytest_cache/
|
|
46
|
+
.tox/
|
|
47
|
+
|
|
48
|
+
# Documentation
|
|
49
|
+
docs/_build/
|
|
50
|
+
site/
|
|
51
|
+
|
|
52
|
+
# Logs
|
|
53
|
+
*.log
|
|
54
|
+
logs/
|
|
55
|
+
|
|
56
|
+
# OS
|
|
57
|
+
.DS_Store
|
|
58
|
+
Thumbs.db
|
|
59
|
+
|
|
60
|
+
# Model files and finetuning outputs
|
|
61
|
+
*.safetensors
|
|
62
|
+
*.bin
|
|
63
|
+
*.pt
|
|
64
|
+
*.pth
|
|
65
|
+
*.ckpt
|
|
66
|
+
*.pkl
|
|
67
|
+
*_finetuned/
|
|
68
|
+
*_lora/
|
|
69
|
+
*_dora/
|
|
70
|
+
*_full/
|
|
71
|
+
training_data/
|
|
72
|
+
sample_training_data.jsonl
|
|
73
|
+
|
|
74
|
+
# Large files
|
|
75
|
+
*.zip
|
|
76
|
+
*.tar.gz
|
|
77
|
+
*.rar
|
|
78
|
+
*.7z
|
|
79
|
+
|
|
80
|
+
reference/
|
|
81
|
+
plan/
|
|
82
|
+
NoCode/
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
repos:
|
|
2
|
+
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
3
|
+
rev: v4.4.0
|
|
4
|
+
hooks:
|
|
5
|
+
- id: check-yaml
|
|
6
|
+
- id: end-of-file-fixer
|
|
7
|
+
- id: trailing-whitespace
|
|
8
|
+
- repo: https://github.com/psf/black
|
|
9
|
+
rev: 23.3.0
|
|
10
|
+
hooks:
|
|
11
|
+
- id: black
|
|
12
|
+
- repo: https://github.com/PyCQA/flake8
|
|
13
|
+
rev: 6.0.0
|
|
14
|
+
hooks:
|
|
15
|
+
- id: flake8
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
3.11
|
|
Binary file
|