diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 775c09c9..f21a02c6 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -70,4 +70,4 @@ def connect_to_next_port(self, minimum: int) -> int: ``` #### Contributing to article & examples -If you have used the agentUniverse project and are satisfied with it, we welcome you to share your case studies in the project community or on any media platform. We will periodically hold community events to commend, encourage, and promote outstanding cases and developers. +If you have used the agentUniverse project and are satisfied with it, we welcome you to share your case studies in the project community or on any media platform. We will periodically hold community events to comment, encourage, and promote outstanding cases and developers. diff --git a/README.md b/README.md index 304a72e9..8617cb39 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ The LLM model integration can be accomplished with simple configuration, current ||BaiChuan|baichuan2-turbo、baichuan2-13b-chat-v1、…| ||Doubao|Doubao-pro-128k、Doubao-pro-32k、Doubao-lite-128k、…| -For example, to use deepseek model, you can simply set DEEPSEEK_API_KEY value in the custom_key.toml file, and set the llm_model name in the agent configuration file to 'default_deepseek_llm' and you're all set. For more infomation about llm configuration, please refer to [switch-the-llm](https://github.com/agentuniverse-ai/agentUniverse/blob/master/docs/guidebook/en/Get_Start/2.Run_Your_First_Tutorial_Example.md#switch-the-llm). +For example, to use deepseek model, you can simply set DEEPSEEK_API_KEY value in the custom_key.toml file, and set the llm_model name in the agent configuration file to 'default_deepseek_llm' and you're all set. For more information about llm configuration, please refer to [switch-the-llm](https://github.com/agentuniverse-ai/agentUniverse/blob/master/docs/guidebook/en/Get_Start/2.Run_Your_First_Tutorial_Example.md#switch-the-llm). **************************************** diff --git a/README_PYPI.md b/README_PYPI.md index 43bddf5c..cb4a540d 100644 --- a/README_PYPI.md +++ b/README_PYPI.md @@ -1,9 +1,9 @@ # agentUniverse ## Overview -agentUniverse is a framework for developing applications powered by multi-agent base on large language model. It provides all the essential components for building a single agent, and a multi-agent collaboration mechanism which serves as a pattern factory that allowing developers to buid and customize multi-agent collaboration patterns. With this framework, developers can easily construct multi-agent applications, and share the pattern practices from different technical and business fields. +agentUniverse is a framework for developing applications powered by multi-agent base on large language model. It provides all the essential components for building a single agent, and a multi-agent collaboration mechanism which serves as a pattern factory that allowing developers to build and customize multi-agent collaboration patterns. With this framework, developers can easily construct multi-agent applications, and share the pattern practices from different technical and business fields. -The framework will come with serveral pre-install multi-agent collaboration patterns which have been proven effective in real business scenarios, and will continue to be enriched in the future. Patterns that are currently about to be released include: +The framework will come with several pre-install multi-agent collaboration patterns which have been proven effective in real business scenarios, and will continue to be enriched in the future. Patterns that are currently about to be released include: - PEER pattern: This pattern utilizes four distinct agent roles: Plan, Execute, Express, and Review, to achieve a multi-step breakdown and sequential execution of a complex task. It also performs autonomous iteration based on evaluative feedback which enhancing performance in reasoning and analytical tasks. diff --git a/agentuniverse/agent/template/contextual_iteration_agent_template.py b/agentuniverse/agent/template/contextual_iteration_agent_template.py index 81fe9fd7..b0a4aa3a 100644 --- a/agentuniverse/agent/template/contextual_iteration_agent_template.py +++ b/agentuniverse/agent/template/contextual_iteration_agent_template.py @@ -66,7 +66,7 @@ class ContextualIterationAgentTemplate(AgentTemplate): }) agent_input['chat_history'] = json.dumps(conversation_history, ensure_ascii=False) - # build interation chain + # build iteration chain continue_prompt: Prompt = super(AgentTemplate, self).process_prompt( agent_input, prompt_version=self.continue_prompt_version) continue_chain = continue_prompt.as_langchain() | llm.as_langchain_runnable( @@ -138,7 +138,7 @@ class ContextualIterationAgentTemplate(AgentTemplate): agent_input['chat_history'] = json.dumps(conversation_history, ensure_ascii=False) - # build interation chain + # build iteration chain continue_prompt: Prompt = super(AgentTemplate, self).process_prompt( agent_input, prompt_version=self.continue_prompt_version) continue_chain = continue_prompt.as_langchain() | llm.as_langchain_runnable( diff --git a/agentuniverse/agent_serve/service_instance.py b/agentuniverse/agent_serve/service_instance.py index c742fd72..12197a16 100644 --- a/agentuniverse/agent_serve/service_instance.py +++ b/agentuniverse/agent_serve/service_instance.py @@ -15,7 +15,7 @@ class ServiceInstance(object): def __init__(self, service_code: str): """Initialize a service instance. Raise an ServiceNotFoundError when - service code can't be found by servie manager. + service code can't be found by service manager. Args: service_code (`str`): diff --git a/agentuniverse_product/service/util/knowledge_util.py b/agentuniverse_product/service/util/knowledge_util.py index 4894381b..e60fd7d6 100644 --- a/agentuniverse_product/service/util/knowledge_util.py +++ b/agentuniverse_product/service/util/knowledge_util.py @@ -21,7 +21,7 @@ from agentuniverse_product.service.model.knowledge_dto import KnowledgeDTO def assemble_knowledge_product_config_data(knowledge_dto: KnowledgeDTO) -> Dict: - """Asemble the knowledge product configuration data. + """Assemble the knowledge product configuration data. Args: knowledge_dto (KnowledgeDTO): The knowledge DTO. @@ -43,7 +43,7 @@ def assemble_knowledge_product_config_data(knowledge_dto: KnowledgeDTO) -> Dict: def assemble_knowledge_config(knowledge_dto: KnowledgeDTO) -> Dict: - """Asemble the knowledge configuration data. + """Assemble the knowledge configuration data. Args: knowledge_dto (KnowledgeDTO): The knowledge DTO object containing the knowledge parameters. diff --git a/au_dir_structure_updater.py b/au_dir_structure_updater.py index 6e2212bd..a92e394f 100644 --- a/au_dir_structure_updater.py +++ b/au_dir_structure_updater.py @@ -190,11 +190,11 @@ def migrate_files(source_root, target_root): }, { 'source': 'app/bootstrap/product_application.py', - 'target': 'boostrap/platform' + 'target': 'bootstrap/platform' }, { 'source': 'app/boostrap/product_application.py', - 'target': 'boostrap/platform' + 'target': 'bootstrap/platform' }, { 'source': 'app/bootstrap/server_application.py', diff --git a/docs/guidebook/en/Examples/Translation_Assistant.md b/docs/guidebook/en/Examples/Translation_Assistant.md index e9b8d04b..98f4520b 100644 --- a/docs/guidebook/en/Examples/Translation_Assistant.md +++ b/docs/guidebook/en/Examples/Translation_Assistant.md @@ -45,7 +45,7 @@ The [configuration file](../../../../examples/sample_apps/traslation_agent_app/i [Translation Of Short Text](../../../../examples/sample_apps/traslation_agent_app/intelligence/test/translation_data/long_text_result.txt) ### Demonstration Results -We can see that using agentUniverse maintains consistency with the results of the orginal translation_agent project, which hasa been successfully replicated. +We can see that using agentUniverse maintains consistency with the results of the original translation_agent project, which hasa been successfully replicated. agentUniverse Results: ![](../../_picture/long_translation_au.png) diff --git a/docs/guidebook/en/How-to/Guide to Visual Agentic Workflow Platform/Product_Platform_Advancement_Guide.md b/docs/guidebook/en/How-to/Guide to Visual Agentic Workflow Platform/Product_Platform_Advancement_Guide.md index 8ca41695..0bdb9d69 100644 --- a/docs/guidebook/en/How-to/Guide to Visual Agentic Workflow Platform/Product_Platform_Advancement_Guide.md +++ b/docs/guidebook/en/How-to/Guide to Visual Agentic Workflow Platform/Product_Platform_Advancement_Guide.md @@ -62,7 +62,7 @@ The operational process is illustrated in the figure below: ## Custom Knowledge Insertion Feature ### Create Custom Knowledge -On the product homepage, naviagte to the Knowledge tab, and click the 'Add Knowledge' button located to the right to create a custom knowledge base. +On the product homepage, navigate to the Knowledge tab, and click the 'Add Knowledge' button located to the right to create a custom knowledge base. agentUniverse will automatically generate the corresponding knowledge and storage YAML files locally, thereby assisting users in completing their development tasks. diff --git a/docs/guidebook/en/In-Depth_Guides/Components/Tools/Integrated_Tools.md b/docs/guidebook/en/In-Depth_Guides/Components/Tools/Integrated_Tools.md index ea493a2d..b0e600ac 100644 --- a/docs/guidebook/en/In-Depth_Guides/Components/Tools/Integrated_Tools.md +++ b/docs/guidebook/en/In-Depth_Guides/Components/Tools/Integrated_Tools.md @@ -183,7 +183,7 @@ metadata: ``` Parameter Description: method: the method of the request, such as GET, POST, PUT, etc. - headers: the HTTP headers neccessary for sending the request. + headers: the HTTP headers necessary for sending the request. json_parse: indicates whether the input parameters should be serialized as JSON and sent in the request body (True for POST requests) or not (False for GET requests, where parameters are typically sent as a query string). response_content_type: the output format for the HTTP request result. If set to 'json', the result will be returned in JSON format; if set to 'text', it will be returned as plain text. This tool can be used directly without requiring any keys. diff --git a/docs/guidebook/en/In-Depth_Guides/Tech_Capabilities/Log_And_Monitor/Logging_Utils.md b/docs/guidebook/en/In-Depth_Guides/Tech_Capabilities/Log_And_Monitor/Logging_Utils.md index cf23c393..5165ac1f 100644 --- a/docs/guidebook/en/In-Depth_Guides/Tech_Capabilities/Log_And_Monitor/Logging_Utils.md +++ b/docs/guidebook/en/In-Depth_Guides/Tech_Capabilities/Log_And_Monitor/Logging_Utils.md @@ -1,6 +1,6 @@ # Logging Utils -The log component of agentUniverse is implemented based on loguru, offering a well-packaged global log component and customizable log components. This tutorial will first introduce the usage of the log configuration file within agentUniverse, then sequentially explain the utilization of the global log component and customizable log components, and finally describe how to intergrate with external log service components. +The log component of agentUniverse is implemented based on loguru, offering a well-packaged global log component and customizable log components. This tutorial will first introduce the usage of the log configuration file within agentUniverse, then sequentially explain the utilization of the global log component and customizable log components, and finally describe how to integrate with external log service components. ## Log Configuration diff --git a/docs/guidebook/en/In-Depth_Guides/Tech_Capabilities/Service/gRPC.md b/docs/guidebook/en/In-Depth_Guides/Tech_Capabilities/Service/gRPC.md index 688b8d20..383249e2 100644 --- a/docs/guidebook/en/In-Depth_Guides/Tech_Capabilities/Service/gRPC.md +++ b/docs/guidebook/en/In-Depth_Guides/Tech_Capabilities/Service/gRPC.md @@ -10,7 +10,7 @@ max_workers = 10 server_port = 50051 ``` - **activate**: The gRPC server will only start when this value is set to `true`. -- **max_workers**: TThe maximum number of threads in the gRPC server thread pool, with a default of 10. +- **max_workers**: The maximum number of threads in the gRPC server thread pool, with a default of 10. - **server_port**: The service port of the gRPC server, with a default of 50051. And then,proceed to start the gRPC server: diff --git a/docs/guidebook/en/In-Depth_Guides/Tech_Capabilities/Storage/SQLDB_WRAPPER.md b/docs/guidebook/en/In-Depth_Guides/Tech_Capabilities/Storage/SQLDB_WRAPPER.md index ee356691..2f3972ac 100644 --- a/docs/guidebook/en/In-Depth_Guides/Tech_Capabilities/Storage/SQLDB_WRAPPER.md +++ b/docs/guidebook/en/In-Depth_Guides/Tech_Capabilities/Storage/SQLDB_WRAPPER.md @@ -11,7 +11,7 @@ agentUniverse automatically registers SQLDBWrapper configuration files by scanni default = ['default_scan_path'] sqldb_wrapper = ['sqldb_wrapper_scan_path'] ``` -By default, AgentUniverse scans all paths under either `default` or `sqldb_wrapper`sections in the configurtion, with paths under `sqldb_wrapper` having a higher priority than those under `default`. +By default, AgentUniverse scans all paths under either `default` or `sqldb_wrapper`sections in the configuration, with paths under `sqldb_wrapper` having a higher priority than those under `default`. ### Step Two: Configuration File diff --git a/docs/guidebook/en/In-Depth_Guides/Tutorials/Agent/Agent_Create_And_Use.md b/docs/guidebook/en/In-Depth_Guides/Tutorials/Agent/Agent_Create_And_Use.md index 3afd8f21..fff656a6 100644 --- a/docs/guidebook/en/In-Depth_Guides/Tutorials/Agent/Agent_Create_And_Use.md +++ b/docs/guidebook/en/In-Depth_Guides/Tutorials/Agent/Agent_Create_And_Use.md @@ -13,7 +13,7 @@ We will provide detailed descriptions of each component within the configuration ### Setting the basic information of the agent. **`info` - basic information of the agent** * `name`: the name of the agent -* `description`: a description of the agent's purpose or funtion +* `description`: a description of the agent's purpose or function ### Setting the global configurations for the agent. **`profile` - Agent global settings.** diff --git a/docs/guidebook/zh/In-Depth_Guides/原理介绍/知识/Store.md b/docs/guidebook/zh/In-Depth_Guides/原理介绍/知识/Store.md index d466faf7..fff57f78 100644 --- a/docs/guidebook/zh/In-Depth_Guides/原理介绍/知识/Store.md +++ b/docs/guidebook/zh/In-Depth_Guides/原理介绍/知识/Store.md @@ -54,7 +54,7 @@ class Store(ComponentBase): ``` - `_new_client`和`_new_async_client`用于创建数据库链接,在组件注册阶段会被添加到[post_fork](../../技术组件/服务化/Web_Server.md)执行列表中,保证创建的数据库连接在Gunicorn模式下的子进程中是独立的。 - `query`函数是知识组件在查询时调用的函数,负责根据传入的Query实例在store中查找相关的内容并以document的形式返回 -- `Store`的还包括对`Docuemnt`类型数据的增删改查,作为知识存储的管理接口。 +- `Store`的还包括对`Document`类型数据的增删改查,作为知识存储的管理接口。 在编写完对应代码后,可以参考下面的yaml将你的Store注册为aU组件: ```yaml diff --git a/examples/sample_apps/basic_sop_app/config/custom_key.toml.sample b/examples/sample_apps/basic_sop_app/config/custom_key.toml.sample index 4ba5bcb4..8c3a693e 100644 --- a/examples/sample_apps/basic_sop_app/config/custom_key.toml.sample +++ b/examples/sample_apps/basic_sop_app/config/custom_key.toml.sample @@ -42,5 +42,5 @@ example_key = 'AnExampleKey' ##search api #SEARCHAPI_API_KEY='xxxxxx' # -##bing seacrh +##bing search #BING_SUBSCRIPTION_KEY='xxxxxx' \ No newline at end of file diff --git a/examples/sample_apps/data_agent_app/config/custom_key.toml.sample b/examples/sample_apps/data_agent_app/config/custom_key.toml.sample index 4ba5bcb4..8c3a693e 100644 --- a/examples/sample_apps/data_agent_app/config/custom_key.toml.sample +++ b/examples/sample_apps/data_agent_app/config/custom_key.toml.sample @@ -42,5 +42,5 @@ example_key = 'AnExampleKey' ##search api #SEARCHAPI_API_KEY='xxxxxx' # -##bing seacrh +##bing search #BING_SUBSCRIPTION_KEY='xxxxxx' \ No newline at end of file diff --git a/examples/sample_apps/difizen_app/config/custom_key.toml.sample b/examples/sample_apps/difizen_app/config/custom_key.toml.sample index f11710cb..33535e5d 100644 --- a/examples/sample_apps/difizen_app/config/custom_key.toml.sample +++ b/examples/sample_apps/difizen_app/config/custom_key.toml.sample @@ -67,7 +67,7 @@ GOOGLE_PROXY='' #Google search SERPER_API_KEY='' -#bing seacrh +#bing search BING_SUBSCRIPTION_KEY='' #search.io api diff --git a/examples/sample_apps/discussion_group_app/config/custom_key.toml.sample b/examples/sample_apps/discussion_group_app/config/custom_key.toml.sample index 4ba5bcb4..8c3a693e 100644 --- a/examples/sample_apps/discussion_group_app/config/custom_key.toml.sample +++ b/examples/sample_apps/discussion_group_app/config/custom_key.toml.sample @@ -42,5 +42,5 @@ example_key = 'AnExampleKey' ##search api #SEARCHAPI_API_KEY='xxxxxx' # -##bing seacrh +##bing search #BING_SUBSCRIPTION_KEY='xxxxxx' \ No newline at end of file diff --git a/examples/sample_apps/multimodal_app/config/custom_key.toml.sample b/examples/sample_apps/multimodal_app/config/custom_key.toml.sample index 8fcf0111..6929b18b 100644 --- a/examples/sample_apps/multimodal_app/config/custom_key.toml.sample +++ b/examples/sample_apps/multimodal_app/config/custom_key.toml.sample @@ -45,7 +45,7 @@ example_key = 'AnExampleKey' #Google search #SERPER_API_KEY='xxxxxx' # -##bing seacrh +##bing search #BING_SUBSCRIPTION_KEY='xxxxxx' # # You could sign up for a free account at https://www.searchapi.io/ diff --git a/examples/sample_apps/openai_protocol_app/config/custom_key.toml.sample b/examples/sample_apps/openai_protocol_app/config/custom_key.toml.sample index 4ba5bcb4..8c3a693e 100644 --- a/examples/sample_apps/openai_protocol_app/config/custom_key.toml.sample +++ b/examples/sample_apps/openai_protocol_app/config/custom_key.toml.sample @@ -42,5 +42,5 @@ example_key = 'AnExampleKey' ##search api #SEARCHAPI_API_KEY='xxxxxx' # -##bing seacrh +##bing search #BING_SUBSCRIPTION_KEY='xxxxxx' \ No newline at end of file diff --git a/examples/sample_apps/peer_agent_app/config/custom_key.toml.sample b/examples/sample_apps/peer_agent_app/config/custom_key.toml.sample index 4ba5bcb4..8c3a693e 100644 --- a/examples/sample_apps/peer_agent_app/config/custom_key.toml.sample +++ b/examples/sample_apps/peer_agent_app/config/custom_key.toml.sample @@ -42,5 +42,5 @@ example_key = 'AnExampleKey' ##search api #SEARCHAPI_API_KEY='xxxxxx' # -##bing seacrh +##bing search #BING_SUBSCRIPTION_KEY='xxxxxx' \ No newline at end of file diff --git a/examples/sample_apps/rag_app/config/custom_key.toml.sample b/examples/sample_apps/rag_app/config/custom_key.toml.sample index 4ba5bcb4..8c3a693e 100644 --- a/examples/sample_apps/rag_app/config/custom_key.toml.sample +++ b/examples/sample_apps/rag_app/config/custom_key.toml.sample @@ -42,5 +42,5 @@ example_key = 'AnExampleKey' ##search api #SEARCHAPI_API_KEY='xxxxxx' # -##bing seacrh +##bing search #BING_SUBSCRIPTION_KEY='xxxxxx' \ No newline at end of file diff --git a/examples/sample_apps/react_agent_app/config/custom_key.toml.sample b/examples/sample_apps/react_agent_app/config/custom_key.toml.sample index 4ba5bcb4..8c3a693e 100644 --- a/examples/sample_apps/react_agent_app/config/custom_key.toml.sample +++ b/examples/sample_apps/react_agent_app/config/custom_key.toml.sample @@ -42,5 +42,5 @@ example_key = 'AnExampleKey' ##search api #SEARCHAPI_API_KEY='xxxxxx' # -##bing seacrh +##bing search #BING_SUBSCRIPTION_KEY='xxxxxx' \ No newline at end of file diff --git a/examples/sample_apps/traslation_agent_app/config/custom_key.toml.sample b/examples/sample_apps/traslation_agent_app/config/custom_key.toml.sample index 4ba5bcb4..8c3a693e 100644 --- a/examples/sample_apps/traslation_agent_app/config/custom_key.toml.sample +++ b/examples/sample_apps/traslation_agent_app/config/custom_key.toml.sample @@ -42,5 +42,5 @@ example_key = 'AnExampleKey' ##search api #SEARCHAPI_API_KEY='xxxxxx' # -##bing seacrh +##bing search #BING_SUBSCRIPTION_KEY='xxxxxx' \ No newline at end of file diff --git a/examples/sample_apps/workflow_agent_app/config/custom_key.toml.sample b/examples/sample_apps/workflow_agent_app/config/custom_key.toml.sample index 4ba5bcb4..8c3a693e 100644 --- a/examples/sample_apps/workflow_agent_app/config/custom_key.toml.sample +++ b/examples/sample_apps/workflow_agent_app/config/custom_key.toml.sample @@ -42,5 +42,5 @@ example_key = 'AnExampleKey' ##search api #SEARCHAPI_API_KEY='xxxxxx' # -##bing seacrh +##bing search #BING_SUBSCRIPTION_KEY='xxxxxx' \ No newline at end of file diff --git a/examples/sample_standard_app/config/custom_key.toml.sample b/examples/sample_standard_app/config/custom_key.toml.sample index f11710cb..33535e5d 100644 --- a/examples/sample_standard_app/config/custom_key.toml.sample +++ b/examples/sample_standard_app/config/custom_key.toml.sample @@ -67,7 +67,7 @@ GOOGLE_PROXY='' #Google search SERPER_API_KEY='' -#bing seacrh +#bing search BING_SUBSCRIPTION_KEY='' #search.io api diff --git a/examples/startup_app/demo_startup_app_with_agent_templates/config/custom_key.toml.sample b/examples/startup_app/demo_startup_app_with_agent_templates/config/custom_key.toml.sample index 4ba5bcb4..8c3a693e 100644 --- a/examples/startup_app/demo_startup_app_with_agent_templates/config/custom_key.toml.sample +++ b/examples/startup_app/demo_startup_app_with_agent_templates/config/custom_key.toml.sample @@ -42,5 +42,5 @@ example_key = 'AnExampleKey' ##search api #SEARCHAPI_API_KEY='xxxxxx' # -##bing seacrh +##bing search #BING_SUBSCRIPTION_KEY='xxxxxx' \ No newline at end of file diff --git a/examples/startup_app/demo_startup_app_with_multi_agents/config/custom_key.toml.sample b/examples/startup_app/demo_startup_app_with_multi_agents/config/custom_key.toml.sample index 4ba5bcb4..8c3a693e 100644 --- a/examples/startup_app/demo_startup_app_with_multi_agents/config/custom_key.toml.sample +++ b/examples/startup_app/demo_startup_app_with_multi_agents/config/custom_key.toml.sample @@ -42,5 +42,5 @@ example_key = 'AnExampleKey' ##search api #SEARCHAPI_API_KEY='xxxxxx' # -##bing seacrh +##bing search #BING_SUBSCRIPTION_KEY='xxxxxx' \ No newline at end of file diff --git a/examples/startup_app/demo_startup_app_with_single_agent/config/custom_key.toml.sample b/examples/startup_app/demo_startup_app_with_single_agent/config/custom_key.toml.sample index 4ba5bcb4..8c3a693e 100644 --- a/examples/startup_app/demo_startup_app_with_single_agent/config/custom_key.toml.sample +++ b/examples/startup_app/demo_startup_app_with_single_agent/config/custom_key.toml.sample @@ -42,5 +42,5 @@ example_key = 'AnExampleKey' ##search api #SEARCHAPI_API_KEY='xxxxxx' # -##bing seacrh +##bing search #BING_SUBSCRIPTION_KEY='xxxxxx' \ No newline at end of file diff --git a/examples/startup_app/demo_startup_app_with_single_agent_and_actions/config/custom_key.toml.sample b/examples/startup_app/demo_startup_app_with_single_agent_and_actions/config/custom_key.toml.sample index 4ba5bcb4..8c3a693e 100644 --- a/examples/startup_app/demo_startup_app_with_single_agent_and_actions/config/custom_key.toml.sample +++ b/examples/startup_app/demo_startup_app_with_single_agent_and_actions/config/custom_key.toml.sample @@ -42,5 +42,5 @@ example_key = 'AnExampleKey' ##search api #SEARCHAPI_API_KEY='xxxxxx' # -##bing seacrh +##bing search #BING_SUBSCRIPTION_KEY='xxxxxx' \ No newline at end of file diff --git a/examples/startup_app/demo_startup_app_with_single_agent_and_memory/config/custom_key.toml.sample b/examples/startup_app/demo_startup_app_with_single_agent_and_memory/config/custom_key.toml.sample index 4ba5bcb4..8c3a693e 100644 --- a/examples/startup_app/demo_startup_app_with_single_agent_and_memory/config/custom_key.toml.sample +++ b/examples/startup_app/demo_startup_app_with_single_agent_and_memory/config/custom_key.toml.sample @@ -42,5 +42,5 @@ example_key = 'AnExampleKey' ##search api #SEARCHAPI_API_KEY='xxxxxx' # -##bing seacrh +##bing search #BING_SUBSCRIPTION_KEY='xxxxxx' \ No newline at end of file diff --git a/tests/test_agentuniverse/unit/agent/config.toml b/tests/test_agentuniverse/unit/agent/config.toml index 206c07ae..eafd5f12 100644 --- a/tests/test_agentuniverse/unit/agent/config.toml +++ b/tests/test_agentuniverse/unit/agent/config.toml @@ -31,5 +31,5 @@ gunicorn_config_path = './gunicorn_config.toml' #custom_key_path = './custom_key.toml' [DB] -# A mysql db uri used to save web request task status. Status will be saved in sqllite if the uri is empty all not exist. +# A mysql db uri used to save web request task status. Status will be saved in sqlite if the uri is empty all not exist. system_db_uri = '' \ No newline at end of file