diff --git a/en/.doctrees/agentscope.agents.agent.doctree b/en/.doctrees/agentscope.agents.agent.doctree index 3d428e068..0dd883ec0 100644 Binary files a/en/.doctrees/agentscope.agents.agent.doctree and b/en/.doctrees/agentscope.agents.agent.doctree differ diff --git a/en/.doctrees/agentscope.agents.dialog_agent.doctree b/en/.doctrees/agentscope.agents.dialog_agent.doctree index 10519d5cd..30a04a754 100644 Binary files a/en/.doctrees/agentscope.agents.dialog_agent.doctree and b/en/.doctrees/agentscope.agents.dialog_agent.doctree differ diff --git a/en/.doctrees/agentscope.agents.dict_dialog_agent.doctree b/en/.doctrees/agentscope.agents.dict_dialog_agent.doctree index 4a5b8c63c..3b3e2bccc 100644 Binary files a/en/.doctrees/agentscope.agents.dict_dialog_agent.doctree and b/en/.doctrees/agentscope.agents.dict_dialog_agent.doctree differ diff --git a/en/.doctrees/agentscope.agents.doctree b/en/.doctrees/agentscope.agents.doctree index a8b60f9a6..22eef1a5f 100644 Binary files a/en/.doctrees/agentscope.agents.doctree and b/en/.doctrees/agentscope.agents.doctree differ diff --git a/en/.doctrees/agentscope.agents.rag_agent.doctree b/en/.doctrees/agentscope.agents.rag_agent.doctree index 16973dba9..b590b2be8 100644 Binary files a/en/.doctrees/agentscope.agents.rag_agent.doctree and b/en/.doctrees/agentscope.agents.rag_agent.doctree differ diff --git a/en/.doctrees/agentscope.agents.react_agent.doctree b/en/.doctrees/agentscope.agents.react_agent.doctree index ebdb79cef..de8176955 100644 Binary files a/en/.doctrees/agentscope.agents.react_agent.doctree and b/en/.doctrees/agentscope.agents.react_agent.doctree differ diff --git a/en/.doctrees/agentscope.agents.rpc_agent.doctree b/en/.doctrees/agentscope.agents.rpc_agent.doctree index 55652e181..3133bf9ed 100644 Binary files a/en/.doctrees/agentscope.agents.rpc_agent.doctree and b/en/.doctrees/agentscope.agents.rpc_agent.doctree differ diff --git a/en/.doctrees/agentscope.agents.user_agent.doctree b/en/.doctrees/agentscope.agents.user_agent.doctree index d9c81b35b..0d1a9ff05 100644 Binary files a/en/.doctrees/agentscope.agents.user_agent.doctree and b/en/.doctrees/agentscope.agents.user_agent.doctree differ diff --git a/en/.doctrees/agentscope.doctree b/en/.doctrees/agentscope.doctree index f2ec623c9..eec773ab7 100644 Binary files a/en/.doctrees/agentscope.doctree and b/en/.doctrees/agentscope.doctree differ diff --git a/en/.doctrees/agentscope.message.doctree b/en/.doctrees/agentscope.message.doctree index a97c5b1b2..b5a3240a8 100644 Binary files a/en/.doctrees/agentscope.message.doctree and b/en/.doctrees/agentscope.message.doctree differ diff --git a/en/.doctrees/agentscope.message.placeholder.doctree b/en/.doctrees/agentscope.message.placeholder.doctree index 8770c93a6..c0f1fba90 100644 Binary files a/en/.doctrees/agentscope.message.placeholder.doctree and b/en/.doctrees/agentscope.message.placeholder.doctree differ diff --git a/en/.doctrees/agentscope.msghub.doctree b/en/.doctrees/agentscope.msghub.doctree index 13fe4a69b..a9141076b 100644 Binary files a/en/.doctrees/agentscope.msghub.doctree and b/en/.doctrees/agentscope.msghub.doctree differ diff --git a/en/.doctrees/agentscope.service.execute_code.exec_notebook.doctree b/en/.doctrees/agentscope.service.execute_code.exec_notebook.doctree index cc89e6297..f1a4da873 100644 Binary files a/en/.doctrees/agentscope.service.execute_code.exec_notebook.doctree and b/en/.doctrees/agentscope.service.execute_code.exec_notebook.doctree differ diff --git a/en/.doctrees/environment.pickle b/en/.doctrees/environment.pickle index de8401fca..3514ef6fc 100644 Binary files a/en/.doctrees/environment.pickle and b/en/.doctrees/environment.pickle differ diff --git a/en/.doctrees/index.doctree b/en/.doctrees/index.doctree index 3b47a5dec..6df45e9cc 100644 Binary files a/en/.doctrees/index.doctree and b/en/.doctrees/index.doctree differ diff --git a/en/.doctrees/tutorial/102-installation.doctree b/en/.doctrees/tutorial/102-installation.doctree index b18662307..531b59cc7 100644 Binary files a/en/.doctrees/tutorial/102-installation.doctree and b/en/.doctrees/tutorial/102-installation.doctree differ diff --git a/en/_modules/agentscope/agents/rpc_agent.html b/en/_modules/agentscope/agents/rpc_agent.html index f55af88c8..8cff80887 100644 --- a/en/_modules/agentscope/agents/rpc_agent.html +++ b/en/_modules/agentscope/agents/rpc_agent.html @@ -129,12 +129,12 @@

Source code for agentscope.agents.rpc_agent

 
 
 
-[docs] +[docs] class RpcAgent(AgentBase): """A wrapper to extend an AgentBase into a gRPC Client."""
-[docs] +[docs] def __init__( self, name: str, @@ -239,7 +239,7 @@

Source code for agentscope.agents.rpc_agent

         self.client.create_agent(self.agent_configs)
 
 
-[docs] +[docs] def reply(self, x: Optional[Union[Msg, Sequence[Msg]]] = None) -> Msg: if self.client is None: self._launch_server() @@ -250,7 +250,7 @@

Source code for agentscope.agents.rpc_agent

 
 
 
-[docs] +[docs] def observe(self, x: Union[Msg, Sequence[Msg]]) -> None: if self.client is None: self._launch_server() @@ -261,7 +261,7 @@

Source code for agentscope.agents.rpc_agent

 
 
 
-[docs] +[docs] def clone_instances( self, num_instances: int, @@ -309,7 +309,7 @@

Source code for agentscope.agents.rpc_agent

 
 
 
-[docs] +[docs] def stop(self) -> None: """Stop the RpcAgent and the rpc server.""" if self.server_launcher is not None: diff --git a/en/_modules/agentscope/models/dashscope_model.html b/en/_modules/agentscope/models/dashscope_model.html index 12af993c4..a28324c92 100644 --- a/en/_modules/agentscope/models/dashscope_model.html +++ b/en/_modules/agentscope/models/dashscope_model.html @@ -122,7 +122,6 @@

Source code for agentscope.models.dashscope_model

from http import HTTPStatus from typing import Any, Union, List, Sequence, Optional, Generator -from dashscope.api_entities.dashscope_response import GenerationResponse from loguru import logger from ..manager import FileManager @@ -131,8 +130,10 @@

Source code for agentscope.models.dashscope_model

try: import dashscope + from dashscope.api_entities.dashscope_response import GenerationResponse except ImportError: dashscope = None + GenerationResponse = None from .model import ModelWrapperBase, ModelResponse @@ -173,7 +174,8 @@

Source code for agentscope.models.dashscope_model

if dashscope is None: raise ImportError( - "Cannot find dashscope package in current python environment.", + "The package 'dashscope' is not installed. Please install it " + "by running `pip install dashscope==1.14.1`", ) self.generate_args = generate_args or {} @@ -868,7 +870,7 @@

Source code for agentscope.models.dashscope_model

messages=messages, **kwargs, ) - # Unhandle code path here + # Unhandled code path here # response could be a generator , if stream is yes # suggest add a check here if response.status_code != HTTPStatus.OK: diff --git a/en/_modules/agentscope/models/ollama_model.html b/en/_modules/agentscope/models/ollama_model.html index d46bf7f15..cbd37da91 100644 --- a/en/_modules/agentscope/models/ollama_model.html +++ b/en/_modules/agentscope/models/ollama_model.html @@ -124,11 +124,6 @@

Source code for agentscope.models.ollama_model

from ..models import ModelWrapperBase, ModelResponse from ..utils.common import _convert_to_str -try: - import ollama -except ImportError: - ollama = None -

[docs] @@ -188,6 +183,15 @@

Source code for agentscope.models.ollama_model

self.options = options self.keep_alive = keep_alive + + try: + import ollama + except ImportError as e: + raise ImportError( + "The package ollama is not found. Please install it by " + 'running command `pip install "ollama>=0.1.7"`', + ) from e + self.client = ollama.Client(host=host, **kwargs)

diff --git a/en/_modules/agentscope/service/execute_code/exec_notebook.html b/en/_modules/agentscope/service/execute_code/exec_notebook.html index f0687e49f..8c2fb0bbb 100644 --- a/en/_modules/agentscope/service/execute_code/exec_notebook.html +++ b/en/_modules/agentscope/service/execute_code/exec_notebook.html @@ -119,23 +119,19 @@

Source code for agentscope.service.execute_code.exec_notebook

# -*- coding: utf-8 -*- # pylint: disable=C0301 """Service for executing jupyter notebooks interactively -Partially referenced the implementation of https://github.com/geekan/MetaGPT/blob/main/metagpt/actions/di/execute_nb_code.py -""" # noqa +Partially referenced the implementation of +https://github.com/geekan/MetaGPT/blob/main/metagpt/actions/di/execute_nb_code.py +""" import base64 import asyncio from loguru import logger - try: - from nbclient import NotebookClient - from nbclient.exceptions import CellTimeoutError, DeadKernelError + import nbclient import nbformat -except ImportError as import_error: - from agentscope.utils.common import ImportErrorReporter - - nbclient = ImportErrorReporter(import_error) - nbformat = ImportErrorReporter(import_error) - NotebookClient = ImportErrorReporter(import_error) +except ImportError: + nbclient = None + nbformat = None from ...manager import FileManager from ..service_status import ServiceExecStatus @@ -188,8 +184,15 @@

Source code for agentscope.service.execute_code.exec_notebook

The timeout for each cell execution. Default to 300. """ + + if nbclient is None or nbformat is None: + raise ImportError( + "The package nbclient or nbformat is not found. Please " + "install it by `pip install notebook nbclient nbformat`", + ) + self.nb = nbformat.v4.new_notebook() - self.nb_client = NotebookClient(nb=self.nb) + self.nb_client = nbclient.NotebookClient(nb=self.nb) self.timeout = timeout asyncio.run(self._start_client())
@@ -236,7 +239,7 @@

Source code for agentscope.service.execute_code.exec_notebook

async def _restart_client(self) -> None: """Restart the notebook client""" await self._kill_client() - self.nb_client = NotebookClient(self.nb, timeout=self.timeout) + self.nb_client = nbclient.NotebookClient(self.nb, timeout=self.timeout) await self._start_client() async def _run_cell(self, cell_index: int) -> ServiceResponse: @@ -250,13 +253,13 @@

Source code for agentscope.service.execute_code.exec_notebook

for output in self.nb.cells[cell_index].outputs ], ) - except DeadKernelError: + except nbclient.exceptions.DeadKernelError: await self.reset() return ServiceResponse( status=ServiceExecStatus.ERROR, content="DeadKernelError when executing cell, reset kernel", ) - except CellTimeoutError: + except nbclient.exceptions.CellTimeoutError: assert self.nb_client.km is not None await self.nb_client.km.interrupt_kernel() return ServiceResponse( diff --git a/en/_modules/agentscope/service/multi_modality/dashscope_services.html b/en/_modules/agentscope/service/multi_modality/dashscope_services.html index 94b3faede..7a1ebbaba 100644 --- a/en/_modules/agentscope/service/multi_modality/dashscope_services.html +++ b/en/_modules/agentscope/service/multi_modality/dashscope_services.html @@ -127,17 +127,11 @@

Source code for agentscope.service.multi_modality.dashscope_services

import os -import dashscope -from dashscope.audio.tts import SpeechSynthesizer - -from agentscope.models import ( +from ...models import ( DashScopeImageSynthesisWrapper, DashScopeMultiModalWrapper, ) -# SpeechSynthesizerWrapper is current not available - - from ..service_response import ( ServiceResponse, ServiceExecStatus, @@ -385,9 +379,17 @@

Source code for agentscope.service.multi_modality.dashscope_services

> {'status': 'SUCCESS', 'content': {"audio_path": "AUDIO_PATH"}} """ + try: + import dashscope + except ImportError as e: + raise ImportError( + "The package 'dashscope' is not installed. Please install it by " + "running `pip install dashscope==1.14.1`", + ) from e + dashscope.api_key = api_key - res = SpeechSynthesizer.call( + res = dashscope.audio.tts.SpeechSynthesizer.call( model=model, text=text, sample_rate=sample_rate, diff --git a/en/_modules/agentscope/web/gradio/utils.html b/en/_modules/agentscope/web/gradio/utils.html index 4db1fa124..69fae124d 100644 --- a/en/_modules/agentscope/web/gradio/utils.html +++ b/en/_modules/agentscope/web/gradio/utils.html @@ -127,8 +127,6 @@

Source code for agentscope.web.gradio.utils

 
 from PIL import Image
 
-from dashscope.audio.asr import RecognitionCallback, Recognition
-
 SYS_MSG_PREFIX = "【SYSTEM】"
 
 thread_local_data = threading.local()
@@ -319,7 +317,15 @@ 

Source code for agentscope.web.gradio.utils

 [docs]
 def audio2text(audio_path: str) -> str:
     """Converts audio file at the given path to text using ASR."""
-    # dashscope.api_key = ""
+
+    try:
+        from dashscope.audio.asr import RecognitionCallback, Recognition
+    except ImportError as e:
+        raise ImportError(
+            "The package dashscope is not found. Please install it by "
+            "running `pip install dashscope==1.14.1`",
+        ) from e
+
     callback = RecognitionCallback()
     rec = Recognition(
         model="paraformer-realtime-v1",
diff --git a/en/_sources/tutorial/102-installation.md.txt b/en/_sources/tutorial/102-installation.md.txt
index e1f16d305..a39b1113c 100644
--- a/en/_sources/tutorial/102-installation.md.txt
+++ b/en/_sources/tutorial/102-installation.md.txt
@@ -41,9 +41,7 @@ If you prefer to install AgentScope from Pypi, you can do so easily using `pip`:
 
 ```bash
 # For centralized multi-agent applications
-pip install agentscope --pre
-# For distributed multi-agent applications
-pip install agentscope[distribute] --pre # On Mac use `pip install agentscope\[distribute\] --pre`
+pip install agentscope
 ```
 
 ### Install from Source
@@ -59,10 +57,33 @@ cd agentscope
 
 # For centralized multi-agent applications
 pip install -e .
-# For distributed multi-agent applications
-pip install -e .[distribute]  # On Mac use `pip install -e .\[distribute\]`
 ```
 
-**Note**: The `[distribute]` option installs additional dependencies required for distributed applications. Remember to activate your virtual environment before running these commands.
+### Extra Dependencies
+
+The supported optional dependencies for AgentScope are list as follows:
+
+- ollama: Ollama API
+- litellm: Litellm API
+- zhipuai: Zhipuai API
+- gemini: Gemini API
+- service: The dependencies for different service functions
+- distribute: The dependencies for distribution mode
+- full: All the dependencies
+
+You can install one or more of these dependencies by adding them to the installation command.
+
+#### Windows
+```bash
+pip install agentscope[gemini]
+# or
+pip install agentscope[ollama,distribute]
+```
+#### Mac & Linux
+```bash
+pip install agentscope\[gemini\]
+# or
+pip install agentscope\[ollama,distribute\]
+```
 
 [[Return to the top]](#102-installation-en)
diff --git a/en/agentscope.agents.agent.html b/en/agentscope.agents.agent.html
index 895031e2a..f231dd4d0 100644
--- a/en/agentscope.agents.agent.html
+++ b/en/agentscope.agents.agent.html
@@ -237,7 +237,7 @@
 
 
-reply(x: Sequence[Msg] | Msg | None = None) Msg[source]
+reply(x: Msg | Sequence[Msg] | None = None) Msg[source]

Define the actions taken by this agent.

Parameters:
diff --git a/en/agentscope.agents.dialog_agent.html b/en/agentscope.agents.dialog_agent.html index 272bc418d..d15fde0c0 100644 --- a/en/agentscope.agents.dialog_agent.html +++ b/en/agentscope.agents.dialog_agent.html @@ -150,7 +150,7 @@
-reply(x: Sequence[Msg] | Msg | None = None) Msg[source]
+reply(x: Msg | Sequence[Msg] | None = None) Msg[source]

Reply function of the agent. Processes the input data, generates a prompt using the current dialogue memory and system prompt, and invokes the language model to produce a response. The diff --git a/en/agentscope.agents.dict_dialog_agent.html b/en/agentscope.agents.dict_dialog_agent.html index 0fbd63b91..7d24f087f 100644 --- a/en/agentscope.agents.dict_dialog_agent.html +++ b/en/agentscope.agents.dict_dialog_agent.html @@ -165,7 +165,7 @@

-reply(x: Sequence[Msg] | Msg | None = None) Msg[source]
+reply(x: Msg | Sequence[Msg] | None = None) Msg[source]

Reply function of the agent. Processes the input data, generates a prompt using the current dialogue memory and system prompt, and invokes the language diff --git a/en/agentscope.agents.html b/en/agentscope.agents.html index 0af9ed61c..dee235ea0 100644 --- a/en/agentscope.agents.html +++ b/en/agentscope.agents.html @@ -299,7 +299,7 @@

Submodules
-reply(x: Sequence[Msg] | Msg | None = None) Msg[source]
+reply(x: Msg | Sequence[Msg] | None = None) Msg[source]

Define the actions taken by this agent.

Parameters:
@@ -489,7 +489,7 @@

Submodules
-reply(x: Sequence[Msg] | Msg | None = None) Msg[source]
+reply(x: Msg | Sequence[Msg] | None = None) Msg[source]

Reply function of the agent. Processes the input data, generates a prompt using the current dialogue memory and system prompt, and invokes the language model to produce a response. The @@ -551,7 +551,7 @@

Submodules
-reply(x: Sequence[Msg] | Msg | None = None) Msg[source]
+reply(x: Msg | Sequence[Msg] | None = None) Msg[source]

Reply function of the agent. Processes the input data, generates a prompt using the current dialogue memory and system prompt, and invokes the language @@ -606,7 +606,7 @@

Submodules
-reply(x: Sequence[Msg] | Msg | None = None, required_keys: list[str] | str | None = None, timeout: int | None = None) Msg[source]
+reply(x: Msg | Sequence[Msg] | None = None, required_keys: list[str] | str | None = None, timeout: int | None = None) Msg[source]

Processes the input provided by the user and stores it in memory, potentially formatting it with additional provided details.

The method prompts the user for input, then optionally prompts for @@ -691,7 +691,7 @@

Submodules
-reply(x: Sequence[Msg] | Msg | None = None) Msg[source]
+reply(x: Msg | Sequence[Msg] | None = None) Msg[source]

The reply method of the agent.

@@ -738,103 +738,6 @@

Submodules -
-class agentscope.agents.RpcAgent(*args: tuple, **kwargs: dict)[source]
-

Bases: AgentBase

-

A wrapper to extend an AgentBase into a gRPC Client.

-
-
-__init__(name: str, host: str = 'localhost', port: int | None = None, agent_class: Type[AgentBase] | None = None, agent_configs: dict | None = None, max_pool_size: int = 8192, max_timeout_seconds: int = 7200, local_mode: bool = True, lazy_launch: bool = False, agent_id: str | None = None, connect_existing: bool = False) None[source]
-

Initialize a RpcAgent instance.

-
-
Parameters:
-
    -
  • name (str) – the name of the agent.

  • -
  • host (str, defaults to localhost) – Hostname of the rpc agent server.

  • -
  • port (int, defaults to None) – Port of the rpc agent server.

  • -
  • agent_class (Type[AgentBase]) – the AgentBase subclass of the source agent.

  • -
  • agent_configs (dict) – The args used to -init configs of the agent, generated by _AgentMeta.

  • -
  • max_pool_size (int, defaults to 8192) – Max number of task results that the server can accommodate.

  • -
  • max_timeout_seconds (int, defaults to 7200) – Timeout for task results.

  • -
  • local_mode (bool, defaults to True) – Whether the started gRPC server only listens to local -requests.

  • -
  • lazy_launch (bool, defaults to False) – Only launch the server when the agent is called.

  • -
  • agent_id (str, defaults to None) – The agent id of this instance. If None, it will -be generated randomly.

  • -
  • connect_existing (bool, defaults to False) – Set to True, if the agent is already running on the agent -server.

  • -
-
-
-
- -
-
-reply(x: Sequence[Msg] | Msg | None = None) Msg[source]
-

Define the actions taken by this agent.

-
-
Parameters:
-

x (Optional[Union[Msg, Sequence[Msg]]], defaults to None) – The input message(s) to the agent, which also can be omitted if -the agent doesn’t need any input.

-
-
Returns:
-

The output message generated by the agent.

-
-
Return type:
-

Msg

-
-
-
-

Note

-

Given that some agents are in an adversarial environment, -their input doesn’t include the thoughts of other agents.

-
-
- -
-
-observe(x: Msg | Sequence[Msg]) None[source]
-

Observe the input, store it in memory without response to it.

-
-
Parameters:
-

x (Union[Msg, Sequence[Msg]]) – The input message to be recorded in memory.

-
-
-
- -
-
-clone_instances(num_instances: int, including_self: bool = True) Sequence[AgentBase][source]
-

Clone a series of this instance with different agent_id and -return them as a list.

-
-
Parameters:
-
    -
  • num_instances (int) – The number of instances in the returned

  • -
  • list. (this method in the returned)

  • -
  • including_self (bool) – Whether to include the instance calling

  • -
  • list.

  • -
-
-
Returns:
-

A list of agent instances.

-
-
Return type:
-

Sequence[AgentBase]

-
-
-
- -
-
-stop() None[source]
-

Stop the RpcAgent and the rpc server.

-
- -

-
class agentscope.agents.LlamaIndexAgent(*args: tuple, **kwargs: dict)[source]
@@ -879,7 +782,7 @@

Submodules
-reply(x: Sequence[Msg] | Msg | None = None) Msg[source]
+reply(x: Msg | Sequence[Msg] | None = None) Msg[source]

Reply function of the RAG agent. Processes the input data, 1) use the input data to retrieve with RAG function; diff --git a/en/agentscope.agents.rag_agent.html b/en/agentscope.agents.rag_agent.html index 67c519d97..df74c2673 100644 --- a/en/agentscope.agents.rag_agent.html +++ b/en/agentscope.agents.rag_agent.html @@ -170,7 +170,7 @@

-reply(x: Sequence[Msg] | Msg | None = None) Msg[source]
+reply(x: Msg | Sequence[Msg] | None = None) Msg[source]

Reply function of the RAG agent. Processes the input data, 1) use the input data to retrieve with RAG function; diff --git a/en/agentscope.agents.react_agent.html b/en/agentscope.agents.react_agent.html index 009e4752f..cadb928eb 100644 --- a/en/agentscope.agents.react_agent.html +++ b/en/agentscope.agents.react_agent.html @@ -168,7 +168,7 @@

-reply(x: Sequence[Msg] | Msg | None = None) Msg[source]
+reply(x: Msg | Sequence[Msg] | None = None) Msg[source]

The reply method of the agent.

diff --git a/en/agentscope.agents.rpc_agent.html b/en/agentscope.agents.rpc_agent.html index 4031246d0..5ef5f5d6f 100644 --- a/en/agentscope.agents.rpc_agent.html +++ b/en/agentscope.agents.rpc_agent.html @@ -158,7 +158,7 @@
-reply(x: Sequence[Msg] | Msg | None = None) Msg[source]
+reply(x: Msg | Sequence[Msg] | None = None) Msg[source]

Define the actions taken by this agent.

Parameters:
diff --git a/en/agentscope.agents.user_agent.html b/en/agentscope.agents.user_agent.html index 6217184cc..8e1642c1c 100644 --- a/en/agentscope.agents.user_agent.html +++ b/en/agentscope.agents.user_agent.html @@ -153,7 +153,7 @@
-reply(x: Sequence[Msg] | Msg | None = None, required_keys: list[str] | str | None = None, timeout: int | None = None) Msg[source]
+reply(x: Msg | Sequence[Msg] | None = None, required_keys: list[str] | str | None = None, timeout: int | None = None) Msg[source]

Processes the input provided by the user and stores it in memory, potentially formatting it with additional provided details.

The method prompts the user for input, then optionally prompts for diff --git a/en/agentscope.html b/en/agentscope.html index 426652242..9283c56a2 100644 --- a/en/agentscope.html +++ b/en/agentscope.html @@ -207,14 +207,6 @@

SubpackagesDistConf.__init__() -
  • RpcAgent -
  • LlamaIndexAgent
  • clone_instances() (agentscope.agents.rpc_agent.RpcAgent method) - -
  • close() (agentscope.service.browser.web_browser.WebBrowser method)
  • OllamaChatWrapper (class in agentscope.models) @@ -3411,8 +3403,6 @@

    R

  • (agentscope.agents.ReActAgent method)
  • (agentscope.agents.rpc_agent.RpcAgent method) -
  • -
  • (agentscope.agents.RpcAgent method)
  • (agentscope.agents.user_agent.UserAgent method)
  • @@ -3495,11 +3485,9 @@

    R

  • (agentscope.message.PlaceholderMessage property)
  • -
  • RpcAgent (class in agentscope.agents) +
  • RpcAgent (class in agentscope.agents.rpc_agent)
  • @@ -3658,11 +3646,11 @@

    S

  • show_image_tokens() (agentscope.manager.MonitorManager method)
  • show_text_and_embedding_tokens() (agentscope.manager.MonitorManager method) -
  • -
  • ShrinkPolicy (class in agentscope.constants)
    • +
    • ShrinkPolicy (class in agentscope.constants) +
    • shutdown() (agentscope.server.launcher.RpcAgentServerLauncher method)
        @@ -3712,8 +3700,6 @@

        S

      • stop() (agentscope.agents.rpc_agent.RpcAgent method)
          -
        • (agentscope.agents.RpcAgent method) -
        • (agentscope.rpc.rpc_agent_client.RpcAgentClient method)
        • (agentscope.rpc.rpc_agent_pb2_grpc.RpcAgent static method) diff --git a/en/objects.inv b/en/objects.inv index 1c2beb94e..fc9ff603d 100644 Binary files a/en/objects.inv and b/en/objects.inv differ diff --git a/en/searchindex.js b/en/searchindex.js index caa57e772..75b93af86 100644 --- a/en/searchindex.js +++ b/en/searchindex.js @@ -1 +1 @@ -Search.setIndex({"alltitles": {"(Optional) Setting up a local embedding model service": [[124, "optional-setting-up-a-local-embedding-model-service"]], "A Quick Introduction to RAG in AgentScope": [[124, null]], "About AgentScope": [[107, null]], "About Dashboard": [[122, "about-dashboard"]], "About Memory": [[118, "about-memory"]], "About Message": [[118, "about-message"]], "About Server Manager": [[122, "about-server-manager"]], "About Service Toolkit": [[117, "about-service-toolkit"]], "About ServiceResponse": [[117, "about-serviceresponse"]], "About Workstation": [[122, "about-workstation"]], "Actor Model": [[121, "actor-model"]], "Adding and Deleting Participants": [[113, "adding-and-deleting-participants"]], "Advanced Usage": [[116, "advanced-usage"], [121, "advanced-usage"]], "Agent": [[107, "agent"], [112, null]], "Agent Server": [[121, "agent-server"]], "AgentScope API Reference": [[105, null]], "AgentScope Code Structure": [[107, "agentscope-code-structure"]], "AgentScope Documentation": [[105, null]], "AgentScope Studio": [[122, null]], "Agents List": [[122, "agents-list"]], "Background": [[115, "background"], [123, "background"]], "Basic Parameters": [[114, "basic-parameters"]], "Broadcast message in MsgHub": [[113, "broadcast-message-in-msghub"]], "Build Model Service from Scratch": [[114, "build-model-service-from-scratch"]], "Build Your Application": [[122, "build-your-application"]], "Built-in Prompt Strategies": [[119, "built-in-prompt-strategies"]], "Built-in Service Functions": [[117, "built-in-service-functions"]], "Category": [[113, "category"]], "Challenges in Prompt Construction": [[119, "challenges-in-prompt-construction"]], "Check Your Application": [[122, "check-your-application"]], "Child Process Mode": [[121, "child-process-mode"]], "Code Review": [[127, "code-review"]], "Commit Your Changes": [[127, "commit-your-changes"]], "Configuration": [[114, "configuration"]], "Configuration Format": [[114, "configuration-format"]], "Connecting to AgentScope Studio": [[121, "connecting-to-agentscope-studio"]], "Contribute to AgentScope": [[127, null]], "Contribute to Codebase": [[127, "contribute-to-codebase"]], "Creat Your Own Model Wrapper": [[114, "creat-your-own-model-wrapper"]], "Create a New Branch": [[127, "create-a-new-branch"]], "Create a Virtual Environment": [[108, "create-a-virtual-environment"]], "Create new Service Function": [[117, "create-new-service-function"]], "Creating a MsgHub": [[113, "creating-a-msghub"]], "Customized Parser": [[115, "customized-parser"]], "Customizing Agents from the AgentPool": [[112, "customizing-agents-from-the-agentpool"]], "DashScope API": [[114, "dashscope-api"]], "DashScopeChatWrapper": [[119, "dashscopechatwrapper"]], "DashScopeMultiModalWrapper": [[119, "dashscopemultimodalwrapper"]], "Detailed Parameters": [[114, "detailed-parameters"]], "DialogAgent": [[112, "dialogagent"]], "Dictionary Type": [[115, "dictionary-type"]], "DingTalk (\u9489\u9489)": [[126, "dingtalk"]], "Discord": [[126, "discord"]], "Distribution": [[121, null]], "Example": [[117, "example"]], "Example: Werewolf Game": [[110, null]], "Explore Built-in Examples": [[122, "explore-built-in-examples"]], "Exploring the AgentPool": [[112, "exploring-the-agentpool"]], "ForLoopPipeline": [[113, "forlooppipeline"]], "Fork and Clone the Repository": [[127, "fork-and-clone-the-repository"]], "Format Instruction Template": [[115, "format-instruction-template"]], "Gemini API": [[114, "gemini-api"]], "GeminiChatWrapper": [[119, "geminichatwrapper"]], "Generation": [[123, "generation"]], "Generation with In Context Learning": [[123, "generation-with-in-context-learning"]], "Get Involved": [[128, null]], "Getting Involved": [[105, "getting-involved"], [129, "getting-involved"]], "Getting Started": [[110, "getting-started"]], "GitHub": [[126, "github"]], "Guidance": [[125, "guidance"]], "How is AgentScope designed?": [[107, "how-is-agentscope-designed"]], "How to create a Knowledge object": [[124, "how-to-create-a-knowledge-object"]], "How to use": [[117, "how-to-use"]], "How to use Service Functions": [[117, "how-to-use-service-functions"]], "How to use a Knowledge object": [[124, "how-to-use-a-knowledge-object"]], "IfElsePipeline": [[113, "ifelsepipeline"]], "Implement Werewolf Pipeline": [[110, "implement-werewolf-pipeline"]], "Implementation": [[121, "implementation"]], "Import Running Histories": [[122, "import-running-histories"]], "Import or Export Your Application": [[122, "import-or-export-your-application"]], "In Model Calling": [[116, "in-model-calling"]], "In Model Configuration": [[116, "in-model-configuration"]], "Independent Process Mode": [[121, "independent-process-mode"]], "Initialization": [[115, "initialization"], [115, "id1"], [123, "initialization"], [123, "id1"]], "Initialization & Format Instruction Template": [[115, "initialization-format-instruction-template"], [115, "id2"], [115, "id4"]], "Install from Source": [[108, "install-from-source"]], "Install with Pip": [[108, "install-with-pip"]], "Installation": [[108, null]], "Installing AgentScope": [[108, "installing-agentscope"]], "JSON / Python Object Type": [[115, "json-python-object-type"]], "Joining AgentScope Community": [[126, null]], "Key Concepts": [[107, "key-concepts"]], "Knowledge": [[124, "knowledge"]], "Knowledge Bank": [[124, "knowledge-bank"]], "Leverage Pipeline and MsgHub": [[110, "leverage-pipeline-and-msghub"]], "LiteLLM Chat API": [[114, "litellm-chat-api"]], "LiteLLMChatWrapper": [[119, "litellmchatwrapper"]], "Logging": [[111, null], [111, "id1"]], "Logging a Chat Message": [[111, "logging-a-chat-message"]], "Logging a System information": [[111, "logging-a-system-information"]], "Making Changes": [[127, "making-changes"]], "Manage your agent server processes": [[121, "manage-your-agent-server-processes"]], "Managing Server Process": [[122, "managing-server-process"]], "MarkdownCodeBlockParser": [[115, "markdowncodeblockparser"]], "MarkdownJsonDictParser": [[115, "markdownjsondictparser"]], "MarkdownJsonObjectParser": [[115, "markdownjsonobjectparser"]], "Memory": [[118, null]], "Memory List": [[122, "memory-list"]], "MemoryBase Class": [[118, "memorybase-class"]], "Message": [[107, "message"]], "MessageBase Class": [[118, "messagebase-class"]], "Model": [[114, null]], "Module contents": [[0, "module-agentscope"], [1, "module-agentscope.agents"], [13, "module-agentscope.manager"], [14, "module-agentscope.memory"], [17, "module-agentscope.message"], [20, "module-agentscope.models"], [32, "module-agentscope.parsers"], [38, "module-agentscope.pipelines"], [41, "module-agentscope.prompt"], [42, "module-agentscope.rag"], [46, "module-agentscope.rpc"], [51, "module-agentscope.server"], [54, "module-agentscope.service"], [55, "module-agentscope.service.browser"], [57, "module-agentscope.service.execute_code"], [61, "module-agentscope.service.file"], [65, "module-agentscope.service.multi_modality"], [68, "module-agentscope.service.retrieval"], [74, "module-agentscope.service.sql_query"], [78, "module-agentscope.service.text_processing"], [80, "module-agentscope.service.web"], [88, "module-agentscope.strategy"], [90, "module-agentscope.studio"], [92, "module-agentscope.utils"], [95, "module-agentscope.web"], [96, "module-agentscope.web.gradio"], [100, "module-agentscope.web.workstation"]], "Monitor": [[120, null]], "More about knowledge configurations": [[124, "more-about-knowledge-configurations"]], "More details inside LlamaIndexKnowledge": [[124, "more-details-inside-llamaindexknowledge"]], "Msg Class": [[118, "msg-class"]], "MsgHub": [[113, "msghub"]], "MultiTaggedContentParser": [[115, "multitaggedcontentparser"]], "Non-Vision Models": [[119, "non-vision-models"]], "Note": [[122, "note"]], "Ollama API": [[114, "ollama-api"]], "OllamaChatWrapper": [[119, "ollamachatwrapper"]], "OllamaGenerationWrapper": [[119, "ollamagenerationwrapper"]], "OpenAI API": [[114, "openai-api"]], "OpenAIChatWrapper": [[119, "openaichatwrapper"]], "Overview": [[115, "overview"]], "Parse Function": [[115, "parse-function"], [115, "id3"], [115, "id5"]], "Parser": [[110, "parser"]], "Parser Module": [[115, "parser-module"]], "Parsers": [[115, "parsers"]], "Pipeline Combination": [[113, "pipeline-combination"]], "Pipeline and MsgHub": [[113, null]], "Pipelines": [[113, "pipelines"]], "PlaceHolder": [[121, "placeholder"]], "Post Request API": [[114, "post-request-api"]], "Prerequisites": [[125, "prerequisites"]], "Printing in Streaming Mode": [[116, "printing-in-streaming-mode"]], "Prompt Engineering": [[119, null]], "Prompt Strategy": [[119, "prompt-strategy"], [119, "id1"], [119, "id2"], [119, "id3"], [119, "id4"], [119, "id5"], [119, "id6"], [119, "id7"]], "Quick Start": [[109, null], [122, "quick-start"]], "RAG agent": [[124, "rag-agent"]], "ReAct Agent and Tool Usage": [[115, "react-agent-and-tool-usage"]], "RegexTaggedContentParser": [[115, "regextaggedcontentparser"]], "Register Running Application": [[122, "register-running-application"]], "Registering Server Process": [[122, "registering-server-process"]], "Report Bugs and Ask For New Features?": [[127, "report-bugs-and-ask-for-new-features"]], "Response Parser": [[115, null]], "Run Your Application": [[122, "run-your-application"]], "SequentialPipeline": [[113, "sequentialpipeline"]], "Servers List": [[122, "servers-list"]], "Service": [[107, "service"]], "Setting Up the Logger": [[111, "setting-up-the-logger"]], "Setup Streaming Mode": [[116, "setup-streaming-mode"]], "Start AgentScope Studio": [[122, "start-agentscope-studio"]], "Step 1: Convert your agent to its distributed version": [[121, "step-1-convert-your-agent-to-its-distributed-version"]], "Step 1: Prepare Model API and Set Model Configs": [[110, "step-1-prepare-model-api-and-set-model-configs"]], "Step 2: Define the Roles of Each Agent": [[110, "step-2-define-the-roles-of-each-agent"]], "Step 2: Orchestrate Distributed Application Flow": [[121, "step-2-orchestrate-distributed-application-flow"]], "Step 3: Initialize AgentScope and the Agents": [[110, "step-3-initialize-agentscope-and-the-agents"]], "Step 4: Set Up the Game Logic": [[110, "step-4-set-up-the-game-logic"]], "Step 5: Run the Application": [[110, "step-5-run-the-application"]], "Step1: Prepare Model": [[109, "step1-prepare-model"]], "Step2: Create Agents": [[109, "step2-create-agents"]], "Step3: Agent Conversation": [[109, "step3-agent-conversation"]], "Streaming": [[116, null]], "String Type": [[115, "string-type"]], "Submit a Pull Request": [[127, "submit-a-pull-request"]], "Submodules": [[0, "submodules"], [1, "submodules"], [14, "submodules"], [17, "submodules"], [20, "submodules"], [32, "submodules"], [38, "submodules"], [42, "submodules"], [46, "submodules"], [51, "submodules"], [54, "submodules"], [55, "submodules"], [57, "submodules"], [61, "submodules"], [65, "submodules"], [68, "submodules"], [74, "submodules"], [78, "submodules"], [80, "submodules"], [88, "submodules"], [90, "submodules"], [92, "submodules"], [96, "submodules"], [100, "submodules"]], "Subpackages": [[0, "subpackages"], [54, "subpackages"], [95, "subpackages"]], "Supported Models": [[114, "supported-models"]], "SwitchPipeline": [[113, "switchpipeline"]], "System Prompt Comparer": [[123, "system-prompt-comparer"]], "System Prompt Generator": [[123, "system-prompt-generator"]], "System Prompt Optimization": [[123, null]], "System Prompt Optimizer": [[123, "system-prompt-optimizer"]], "Table of Contents": [[115, "table-of-contents"], [123, "table-of-contents"]], "TemporaryMemory": [[118, "temporarymemory"]], "Tool": [[117, null]], "Tutorial Navigator": [[105, "tutorial-navigator"], [129, "tutorial-navigator"]], "Typical Use Cases": [[115, "typical-use-cases"]], "Understanding AgentBase": [[112, "understanding-agentbase"]], "Usage": [[113, "usage"], [113, "id1"], [121, "usage"]], "UserAgent": [[112, "useragent"]], "Using Conda": [[108, "using-conda"]], "Using LlamaIndexKnowledge as an example": [[124, "using-llamaindexknowledge-as-an-example"]], "Using Virtualenv": [[108, "using-virtualenv"]], "Validation": [[115, "validation"]], "Vision Models": [[119, "vision-models"]], "Web Browser Control": [[125, null]], "Welcome to AgentScope Tutorial": [[105, "welcome-to-agentscope-tutorial"], [129, null]], "WereWolf Game": [[115, "werewolf-game"]], "What is AgentScope?": [[107, "what-is-agentscope"]], "WhileLoopPipeline": [[113, "whilelooppipeline"]], "Why AgentScope?": [[107, "why-agentscope"]], "Work with Agent": [[125, "work-with-agent"]], "Workflow": [[107, "workflow"]], "ZhipuAI API": [[114, "zhipuai-api"]], "ZhipuAIChatWrapper": [[119, "zhipuaichatwrapper"]], "agentscope": [[106, null]], "agentscope package": [[0, null]], "agentscope.agents package": [[1, null]], "agentscope.agents.agent module": [[2, null]], "agentscope.agents.dialog_agent module": [[3, null]], "agentscope.agents.dict_dialog_agent module": [[4, null]], "agentscope.agents.operator module": [[5, null]], "agentscope.agents.rag_agent module": [[6, null]], "agentscope.agents.react_agent module": [[7, null]], "agentscope.agents.rpc_agent module": [[8, null]], "agentscope.agents.user_agent module": [[9, null]], "agentscope.constants module": [[10, null]], "agentscope.exception module": [[11, null]], "agentscope.logging module": [[12, null]], "agentscope.manager package": [[13, null]], "agentscope.memory package": [[14, null]], "agentscope.memory.memory module": [[15, null]], "agentscope.memory.temporary_memory module": [[16, null]], "agentscope.message package": [[17, null]], "agentscope.message.msg module": [[18, null]], "agentscope.message.placeholder module": [[19, null]], "agentscope.models package": [[20, null]], "agentscope.models.dashscope_model module": [[21, null]], "agentscope.models.gemini_model module": [[22, null]], "agentscope.models.litellm_model module": [[23, null]], "agentscope.models.model module": [[24, null]], "agentscope.models.ollama_model module": [[25, null]], "agentscope.models.openai_model module": [[26, null]], "agentscope.models.post_model module": [[27, null]], "agentscope.models.response module": [[28, null]], "agentscope.models.yi_model module": [[29, null]], "agentscope.models.zhipu_model module": [[30, null]], "agentscope.msghub module": [[31, null]], "agentscope.parsers package": [[32, null]], "agentscope.parsers.code_block_parser module": [[33, null]], "agentscope.parsers.json_object_parser module": [[34, null]], "agentscope.parsers.parser_base module": [[35, null]], "agentscope.parsers.regex_tagged_content_parser module": [[36, null]], "agentscope.parsers.tagged_content_parser module": [[37, null]], "agentscope.pipelines package": [[38, null]], "agentscope.pipelines.functional module": [[39, null]], "agentscope.pipelines.pipeline module": [[40, null]], "agentscope.prompt package": [[41, null]], "agentscope.rag package": [[42, null]], "agentscope.rag.knowledge module": [[43, null]], "agentscope.rag.knowledge_bank module": [[44, null]], "agentscope.rag.llama_index_knowledge module": [[45, null]], "agentscope.rpc package": [[46, null]], "agentscope.rpc.rpc_agent_client module": [[47, null]], "agentscope.rpc.rpc_agent_pb2 module": [[48, null]], "agentscope.rpc.rpc_agent_pb2_grpc module": [[49, null]], "agentscope.serialize module": [[50, null]], "agentscope.server package": [[51, null]], "agentscope.server.launcher module": [[52, null]], "agentscope.server.servicer module": [[53, null]], "agentscope.service package": [[54, null]], "agentscope.service.browser package": [[55, null]], "agentscope.service.browser.web_browser module": [[56, null]], "agentscope.service.execute_code package": [[57, null]], "agentscope.service.execute_code.exec_notebook module": [[58, null]], "agentscope.service.execute_code.exec_python module": [[59, null]], "agentscope.service.execute_code.exec_shell module": [[60, null]], "agentscope.service.file package": [[61, null]], "agentscope.service.file.common module": [[62, null]], "agentscope.service.file.json module": [[63, null]], "agentscope.service.file.text module": [[64, null]], "agentscope.service.multi_modality package": [[65, null]], "agentscope.service.multi_modality.dashscope_services module": [[66, null]], "agentscope.service.multi_modality.openai_services module": [[67, null]], "agentscope.service.retrieval package": [[68, null]], "agentscope.service.retrieval.retrieval_from_list module": [[69, null]], "agentscope.service.retrieval.similarity module": [[70, null]], "agentscope.service.service_response module": [[71, null]], "agentscope.service.service_status module": [[72, null]], "agentscope.service.service_toolkit module": [[73, null]], "agentscope.service.sql_query package": [[74, null]], "agentscope.service.sql_query.mongodb module": [[75, null]], "agentscope.service.sql_query.mysql module": [[76, null]], "agentscope.service.sql_query.sqlite module": [[77, null]], "agentscope.service.text_processing package": [[78, null]], "agentscope.service.text_processing.summarization module": [[79, null]], "agentscope.service.web package": [[80, null]], "agentscope.service.web.arxiv module": [[81, null]], "agentscope.service.web.dblp module": [[82, null]], "agentscope.service.web.download module": [[83, null]], "agentscope.service.web.search module": [[84, null]], "agentscope.service.web.tripadvisor module": [[85, null]], "agentscope.service.web.web_digest module": [[86, null]], "agentscope.service.web.wikipedia module": [[87, null]], "agentscope.strategy package": [[88, null]], "agentscope.strategy.mixture_of_agent module": [[89, null]], "agentscope.studio package": [[90, null]], "agentscope.studio.utils module": [[91, null]], "agentscope.utils package": [[92, null]], "agentscope.utils.common module": [[93, null]], "agentscope.utils.token_utils module": [[94, null]], "agentscope.web package": [[95, null]], "agentscope.web.gradio package": [[96, null]], "agentscope.web.gradio.constants module": [[97, null]], "agentscope.web.gradio.studio module": [[98, null]], "agentscope.web.gradio.utils module": [[99, null]], "agentscope.web.workstation package": [[100, null]], "agentscope.web.workstation.workflow module": [[101, null]], "agentscope.web.workstation.workflow_dag module": [[102, null]], "agentscope.web.workstation.workflow_node module": [[103, null]], "agentscope.web.workstation.workflow_utils module": [[104, null]], "to_dist with lower cost": [[121, "to-dist-with-lower-cost"]], "}": [[20, "id53"], [30, "id9"], [32, "id19"], [36, "id3"]]}, "docnames": ["agentscope", "agentscope.agents", "agentscope.agents.agent", "agentscope.agents.dialog_agent", "agentscope.agents.dict_dialog_agent", "agentscope.agents.operator", "agentscope.agents.rag_agent", "agentscope.agents.react_agent", "agentscope.agents.rpc_agent", "agentscope.agents.user_agent", "agentscope.constants", "agentscope.exception", "agentscope.logging", "agentscope.manager", "agentscope.memory", "agentscope.memory.memory", "agentscope.memory.temporary_memory", "agentscope.message", "agentscope.message.msg", "agentscope.message.placeholder", "agentscope.models", "agentscope.models.dashscope_model", "agentscope.models.gemini_model", "agentscope.models.litellm_model", "agentscope.models.model", "agentscope.models.ollama_model", "agentscope.models.openai_model", "agentscope.models.post_model", "agentscope.models.response", "agentscope.models.yi_model", "agentscope.models.zhipu_model", "agentscope.msghub", "agentscope.parsers", "agentscope.parsers.code_block_parser", "agentscope.parsers.json_object_parser", "agentscope.parsers.parser_base", "agentscope.parsers.regex_tagged_content_parser", "agentscope.parsers.tagged_content_parser", "agentscope.pipelines", "agentscope.pipelines.functional", "agentscope.pipelines.pipeline", "agentscope.prompt", "agentscope.rag", "agentscope.rag.knowledge", "agentscope.rag.knowledge_bank", "agentscope.rag.llama_index_knowledge", "agentscope.rpc", "agentscope.rpc.rpc_agent_client", "agentscope.rpc.rpc_agent_pb2", "agentscope.rpc.rpc_agent_pb2_grpc", "agentscope.serialize", "agentscope.server", "agentscope.server.launcher", "agentscope.server.servicer", "agentscope.service", "agentscope.service.browser", "agentscope.service.browser.web_browser", "agentscope.service.execute_code", "agentscope.service.execute_code.exec_notebook", "agentscope.service.execute_code.exec_python", "agentscope.service.execute_code.exec_shell", "agentscope.service.file", "agentscope.service.file.common", "agentscope.service.file.json", "agentscope.service.file.text", "agentscope.service.multi_modality", "agentscope.service.multi_modality.dashscope_services", "agentscope.service.multi_modality.openai_services", "agentscope.service.retrieval", "agentscope.service.retrieval.retrieval_from_list", "agentscope.service.retrieval.similarity", "agentscope.service.service_response", "agentscope.service.service_status", "agentscope.service.service_toolkit", "agentscope.service.sql_query", "agentscope.service.sql_query.mongodb", "agentscope.service.sql_query.mysql", "agentscope.service.sql_query.sqlite", "agentscope.service.text_processing", "agentscope.service.text_processing.summarization", "agentscope.service.web", "agentscope.service.web.arxiv", "agentscope.service.web.dblp", "agentscope.service.web.download", "agentscope.service.web.search", "agentscope.service.web.tripadvisor", "agentscope.service.web.web_digest", "agentscope.service.web.wikipedia", "agentscope.strategy", "agentscope.strategy.mixture_of_agent", "agentscope.studio", "agentscope.studio.utils", "agentscope.utils", "agentscope.utils.common", "agentscope.utils.token_utils", "agentscope.web", "agentscope.web.gradio", "agentscope.web.gradio.constants", "agentscope.web.gradio.studio", "agentscope.web.gradio.utils", "agentscope.web.workstation", "agentscope.web.workstation.workflow", "agentscope.web.workstation.workflow_dag", "agentscope.web.workstation.workflow_node", "agentscope.web.workstation.workflow_utils", "index", "modules", "tutorial/101-agentscope", "tutorial/102-installation", "tutorial/103-example", "tutorial/104-usecase", "tutorial/105-logging", "tutorial/201-agent", "tutorial/202-pipeline", "tutorial/203-model", "tutorial/203-parser", "tutorial/203-stream", "tutorial/204-service", "tutorial/205-memory", "tutorial/206-prompt", "tutorial/207-monitor", "tutorial/208-distribute", "tutorial/209-gui", "tutorial/209-prompt_opt", "tutorial/210-rag", "tutorial/211-web", "tutorial/301-community", "tutorial/302-contribute", "tutorial/contribute", "tutorial/main"], "envversion": {"sphinx": 62, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.viewcode": 1}, "filenames": ["agentscope.rst", "agentscope.agents.rst", "agentscope.agents.agent.rst", "agentscope.agents.dialog_agent.rst", "agentscope.agents.dict_dialog_agent.rst", "agentscope.agents.operator.rst", "agentscope.agents.rag_agent.rst", "agentscope.agents.react_agent.rst", "agentscope.agents.rpc_agent.rst", "agentscope.agents.user_agent.rst", "agentscope.constants.rst", "agentscope.exception.rst", "agentscope.logging.rst", "agentscope.manager.rst", "agentscope.memory.rst", "agentscope.memory.memory.rst", "agentscope.memory.temporary_memory.rst", "agentscope.message.rst", "agentscope.message.msg.rst", "agentscope.message.placeholder.rst", "agentscope.models.rst", "agentscope.models.dashscope_model.rst", "agentscope.models.gemini_model.rst", "agentscope.models.litellm_model.rst", "agentscope.models.model.rst", "agentscope.models.ollama_model.rst", "agentscope.models.openai_model.rst", "agentscope.models.post_model.rst", "agentscope.models.response.rst", "agentscope.models.yi_model.rst", "agentscope.models.zhipu_model.rst", "agentscope.msghub.rst", "agentscope.parsers.rst", "agentscope.parsers.code_block_parser.rst", "agentscope.parsers.json_object_parser.rst", "agentscope.parsers.parser_base.rst", "agentscope.parsers.regex_tagged_content_parser.rst", "agentscope.parsers.tagged_content_parser.rst", "agentscope.pipelines.rst", "agentscope.pipelines.functional.rst", "agentscope.pipelines.pipeline.rst", "agentscope.prompt.rst", "agentscope.rag.rst", "agentscope.rag.knowledge.rst", "agentscope.rag.knowledge_bank.rst", "agentscope.rag.llama_index_knowledge.rst", "agentscope.rpc.rst", "agentscope.rpc.rpc_agent_client.rst", "agentscope.rpc.rpc_agent_pb2.rst", "agentscope.rpc.rpc_agent_pb2_grpc.rst", "agentscope.serialize.rst", "agentscope.server.rst", "agentscope.server.launcher.rst", "agentscope.server.servicer.rst", "agentscope.service.rst", "agentscope.service.browser.rst", "agentscope.service.browser.web_browser.rst", "agentscope.service.execute_code.rst", "agentscope.service.execute_code.exec_notebook.rst", "agentscope.service.execute_code.exec_python.rst", "agentscope.service.execute_code.exec_shell.rst", "agentscope.service.file.rst", "agentscope.service.file.common.rst", "agentscope.service.file.json.rst", "agentscope.service.file.text.rst", "agentscope.service.multi_modality.rst", "agentscope.service.multi_modality.dashscope_services.rst", "agentscope.service.multi_modality.openai_services.rst", "agentscope.service.retrieval.rst", "agentscope.service.retrieval.retrieval_from_list.rst", "agentscope.service.retrieval.similarity.rst", "agentscope.service.service_response.rst", "agentscope.service.service_status.rst", "agentscope.service.service_toolkit.rst", "agentscope.service.sql_query.rst", "agentscope.service.sql_query.mongodb.rst", "agentscope.service.sql_query.mysql.rst", "agentscope.service.sql_query.sqlite.rst", "agentscope.service.text_processing.rst", "agentscope.service.text_processing.summarization.rst", "agentscope.service.web.rst", "agentscope.service.web.arxiv.rst", "agentscope.service.web.dblp.rst", "agentscope.service.web.download.rst", "agentscope.service.web.search.rst", "agentscope.service.web.tripadvisor.rst", "agentscope.service.web.web_digest.rst", "agentscope.service.web.wikipedia.rst", "agentscope.strategy.rst", "agentscope.strategy.mixture_of_agent.rst", "agentscope.studio.rst", "agentscope.studio.utils.rst", "agentscope.utils.rst", "agentscope.utils.common.rst", "agentscope.utils.token_utils.rst", "agentscope.web.rst", "agentscope.web.gradio.rst", "agentscope.web.gradio.constants.rst", "agentscope.web.gradio.studio.rst", "agentscope.web.gradio.utils.rst", "agentscope.web.workstation.rst", "agentscope.web.workstation.workflow.rst", "agentscope.web.workstation.workflow_dag.rst", "agentscope.web.workstation.workflow_node.rst", "agentscope.web.workstation.workflow_utils.rst", "index.rst", "modules.rst", "tutorial/101-agentscope.md", "tutorial/102-installation.md", "tutorial/103-example.md", "tutorial/104-usecase.md", "tutorial/105-logging.md", "tutorial/201-agent.md", "tutorial/202-pipeline.md", "tutorial/203-model.md", "tutorial/203-parser.md", "tutorial/203-stream.md", "tutorial/204-service.md", "tutorial/205-memory.md", "tutorial/206-prompt.md", "tutorial/207-monitor.md", "tutorial/208-distribute.md", "tutorial/209-gui.md", "tutorial/209-prompt_opt.md", "tutorial/210-rag.md", "tutorial/211-web.md", "tutorial/301-community.md", "tutorial/302-contribute.md", "tutorial/contribute.rst", "tutorial/main.md"], "indexentries": {"__init__() (agentscope.agents.agent.agentbase method)": [[2, "agentscope.agents.agent.AgentBase.__init__", false]], "__init__() (agentscope.agents.agent.distconf method)": [[2, "agentscope.agents.agent.DistConf.__init__", false]], "__init__() (agentscope.agents.agentbase method)": [[1, "agentscope.agents.AgentBase.__init__", false]], "__init__() (agentscope.agents.dialog_agent.dialogagent method)": [[3, "agentscope.agents.dialog_agent.DialogAgent.__init__", false]], "__init__() (agentscope.agents.dialogagent method)": [[1, "agentscope.agents.DialogAgent.__init__", false]], "__init__() (agentscope.agents.dict_dialog_agent.dictdialogagent method)": [[4, "agentscope.agents.dict_dialog_agent.DictDialogAgent.__init__", false]], "__init__() (agentscope.agents.dictdialogagent method)": [[1, "agentscope.agents.DictDialogAgent.__init__", false]], "__init__() (agentscope.agents.distconf method)": [[1, "agentscope.agents.DistConf.__init__", false]], "__init__() (agentscope.agents.llamaindexagent method)": [[1, "agentscope.agents.LlamaIndexAgent.__init__", false]], "__init__() (agentscope.agents.rag_agent.llamaindexagent method)": [[6, "agentscope.agents.rag_agent.LlamaIndexAgent.__init__", false]], "__init__() (agentscope.agents.react_agent.reactagent method)": [[7, "agentscope.agents.react_agent.ReActAgent.__init__", false]], "__init__() (agentscope.agents.reactagent method)": [[1, "agentscope.agents.ReActAgent.__init__", false]], "__init__() (agentscope.agents.rpc_agent.rpcagent method)": [[8, "agentscope.agents.rpc_agent.RpcAgent.__init__", false]], "__init__() (agentscope.agents.rpcagent method)": [[1, "agentscope.agents.RpcAgent.__init__", false]], "__init__() (agentscope.agents.user_agent.useragent method)": [[9, "agentscope.agents.user_agent.UserAgent.__init__", false]], "__init__() (agentscope.agents.useragent method)": [[1, "agentscope.agents.UserAgent.__init__", false]], "__init__() (agentscope.exception.agentservererror method)": [[11, "agentscope.exception.AgentServerError.__init__", false]], "__init__() (agentscope.exception.functioncallerror method)": [[11, "agentscope.exception.FunctionCallError.__init__", false]], "__init__() (agentscope.exception.quotaexceedederror method)": [[11, "agentscope.exception.QuotaExceededError.__init__", false]], "__init__() (agentscope.exception.responseparsingerror method)": [[11, "agentscope.exception.ResponseParsingError.__init__", false]], "__init__() (agentscope.exception.studioerror method)": [[11, "agentscope.exception.StudioError.__init__", false]], "__init__() (agentscope.exception.tagnotfounderror method)": [[11, "agentscope.exception.TagNotFoundError.__init__", false]], "__init__() (agentscope.manager.asmanager method)": [[13, "agentscope.manager.ASManager.__init__", false]], "__init__() (agentscope.manager.filemanager method)": [[13, "agentscope.manager.FileManager.__init__", false]], "__init__() (agentscope.manager.modelmanager method)": [[13, "agentscope.manager.ModelManager.__init__", false]], "__init__() (agentscope.manager.monitormanager method)": [[13, "agentscope.manager.MonitorManager.__init__", false]], "__init__() (agentscope.memory.temporary_memory.temporarymemory method)": [[16, "agentscope.memory.temporary_memory.TemporaryMemory.__init__", false]], "__init__() (agentscope.memory.temporarymemory method)": [[14, "agentscope.memory.TemporaryMemory.__init__", false]], "__init__() (agentscope.message.msg method)": [[17, "agentscope.message.Msg.__init__", false]], "__init__() (agentscope.message.msg.msg method)": [[18, "agentscope.message.msg.Msg.__init__", false]], "__init__() (agentscope.message.placeholder.placeholdermessage method)": [[19, "agentscope.message.placeholder.PlaceholderMessage.__init__", false]], "__init__() (agentscope.message.placeholdermessage method)": [[17, "agentscope.message.PlaceholderMessage.__init__", false]], "__init__() (agentscope.models.dashscope_model.dashscopechatwrapper method)": [[21, "agentscope.models.dashscope_model.DashScopeChatWrapper.__init__", false]], "__init__() (agentscope.models.dashscope_model.dashscopewrapperbase method)": [[21, "agentscope.models.dashscope_model.DashScopeWrapperBase.__init__", false]], "__init__() (agentscope.models.dashscopechatwrapper method)": [[20, "agentscope.models.DashScopeChatWrapper.__init__", false]], "__init__() (agentscope.models.gemini_model.geminichatwrapper method)": [[22, "agentscope.models.gemini_model.GeminiChatWrapper.__init__", false]], "__init__() (agentscope.models.gemini_model.geminiwrapperbase method)": [[22, "agentscope.models.gemini_model.GeminiWrapperBase.__init__", false]], "__init__() (agentscope.models.geminichatwrapper method)": [[20, "agentscope.models.GeminiChatWrapper.__init__", false]], "__init__() (agentscope.models.litellm_model.litellmchatwrapper method)": [[23, "agentscope.models.litellm_model.LiteLLMChatWrapper.__init__", false]], "__init__() (agentscope.models.litellm_model.litellmwrapperbase method)": [[23, "agentscope.models.litellm_model.LiteLLMWrapperBase.__init__", false]], "__init__() (agentscope.models.litellmchatwrapper method)": [[20, "agentscope.models.LiteLLMChatWrapper.__init__", false]], "__init__() (agentscope.models.model.modelwrapperbase method)": [[24, "agentscope.models.model.ModelWrapperBase.__init__", false]], "__init__() (agentscope.models.modelresponse method)": [[20, "agentscope.models.ModelResponse.__init__", false]], "__init__() (agentscope.models.modelwrapperbase method)": [[20, "agentscope.models.ModelWrapperBase.__init__", false]], "__init__() (agentscope.models.ollama_model.ollamachatwrapper method)": [[25, "agentscope.models.ollama_model.OllamaChatWrapper.__init__", false]], "__init__() (agentscope.models.ollama_model.ollamawrapperbase method)": [[25, "agentscope.models.ollama_model.OllamaWrapperBase.__init__", false]], "__init__() (agentscope.models.ollamachatwrapper method)": [[20, "agentscope.models.OllamaChatWrapper.__init__", false]], "__init__() (agentscope.models.openai_model.openaichatwrapper method)": [[26, "agentscope.models.openai_model.OpenAIChatWrapper.__init__", false]], "__init__() (agentscope.models.openai_model.openaiwrapperbase method)": [[26, "agentscope.models.openai_model.OpenAIWrapperBase.__init__", false]], "__init__() (agentscope.models.openaichatwrapper method)": [[20, "agentscope.models.OpenAIChatWrapper.__init__", false]], "__init__() (agentscope.models.openaiwrapperbase method)": [[20, "agentscope.models.OpenAIWrapperBase.__init__", false]], "__init__() (agentscope.models.post_model.postapimodelwrapperbase method)": [[27, "agentscope.models.post_model.PostAPIModelWrapperBase.__init__", false]], "__init__() (agentscope.models.postapimodelwrapperbase method)": [[20, "agentscope.models.PostAPIModelWrapperBase.__init__", false]], "__init__() (agentscope.models.response.modelresponse method)": [[28, "agentscope.models.response.ModelResponse.__init__", false]], "__init__() (agentscope.models.yi_model.yichatwrapper method)": [[29, "agentscope.models.yi_model.YiChatWrapper.__init__", false]], "__init__() (agentscope.models.yichatwrapper method)": [[20, "agentscope.models.YiChatWrapper.__init__", false]], "__init__() (agentscope.models.zhipu_model.zhipuaichatwrapper method)": [[30, "agentscope.models.zhipu_model.ZhipuAIChatWrapper.__init__", false]], "__init__() (agentscope.models.zhipu_model.zhipuaiwrapperbase method)": [[30, "agentscope.models.zhipu_model.ZhipuAIWrapperBase.__init__", false]], "__init__() (agentscope.models.zhipuaichatwrapper method)": [[20, "agentscope.models.ZhipuAIChatWrapper.__init__", false]], "__init__() (agentscope.msghub.msghubmanager method)": [[31, "agentscope.msghub.MsgHubManager.__init__", false]], "__init__() (agentscope.parsers.code_block_parser.markdowncodeblockparser method)": [[33, "agentscope.parsers.code_block_parser.MarkdownCodeBlockParser.__init__", false]], "__init__() (agentscope.parsers.json_object_parser.markdownjsondictparser method)": [[34, "agentscope.parsers.json_object_parser.MarkdownJsonDictParser.__init__", false]], "__init__() (agentscope.parsers.json_object_parser.markdownjsonobjectparser method)": [[34, "agentscope.parsers.json_object_parser.MarkdownJsonObjectParser.__init__", false]], "__init__() (agentscope.parsers.markdowncodeblockparser method)": [[32, "agentscope.parsers.MarkdownCodeBlockParser.__init__", false]], "__init__() (agentscope.parsers.markdownjsondictparser method)": [[32, "agentscope.parsers.MarkdownJsonDictParser.__init__", false]], "__init__() (agentscope.parsers.markdownjsonobjectparser method)": [[32, "agentscope.parsers.MarkdownJsonObjectParser.__init__", false]], "__init__() (agentscope.parsers.multitaggedcontentparser method)": [[32, "agentscope.parsers.MultiTaggedContentParser.__init__", false]], "__init__() (agentscope.parsers.parser_base.dictfiltermixin method)": [[35, "agentscope.parsers.parser_base.DictFilterMixin.__init__", false]], "__init__() (agentscope.parsers.regex_tagged_content_parser.regextaggedcontentparser method)": [[36, "agentscope.parsers.regex_tagged_content_parser.RegexTaggedContentParser.__init__", false]], "__init__() (agentscope.parsers.regextaggedcontentparser method)": [[32, "agentscope.parsers.RegexTaggedContentParser.__init__", false]], "__init__() (agentscope.parsers.tagged_content_parser.multitaggedcontentparser method)": [[37, "agentscope.parsers.tagged_content_parser.MultiTaggedContentParser.__init__", false]], "__init__() (agentscope.parsers.tagged_content_parser.taggedcontent method)": [[37, "agentscope.parsers.tagged_content_parser.TaggedContent.__init__", false]], "__init__() (agentscope.parsers.taggedcontent method)": [[32, "agentscope.parsers.TaggedContent.__init__", false]], "__init__() (agentscope.pipelines.forlooppipeline method)": [[38, "agentscope.pipelines.ForLoopPipeline.__init__", false]], "__init__() (agentscope.pipelines.ifelsepipeline method)": [[38, "agentscope.pipelines.IfElsePipeline.__init__", false]], "__init__() (agentscope.pipelines.pipeline.forlooppipeline method)": [[40, "agentscope.pipelines.pipeline.ForLoopPipeline.__init__", false]], "__init__() (agentscope.pipelines.pipeline.ifelsepipeline method)": [[40, "agentscope.pipelines.pipeline.IfElsePipeline.__init__", false]], "__init__() (agentscope.pipelines.pipeline.pipelinebase method)": [[40, "agentscope.pipelines.pipeline.PipelineBase.__init__", false]], "__init__() (agentscope.pipelines.pipeline.sequentialpipeline method)": [[40, "agentscope.pipelines.pipeline.SequentialPipeline.__init__", false]], "__init__() (agentscope.pipelines.pipeline.switchpipeline method)": [[40, "agentscope.pipelines.pipeline.SwitchPipeline.__init__", false]], "__init__() (agentscope.pipelines.pipeline.whilelooppipeline method)": [[40, "agentscope.pipelines.pipeline.WhileLoopPipeline.__init__", false]], "__init__() (agentscope.pipelines.pipelinebase method)": [[38, "agentscope.pipelines.PipelineBase.__init__", false]], "__init__() (agentscope.pipelines.sequentialpipeline method)": [[38, "agentscope.pipelines.SequentialPipeline.__init__", false]], "__init__() (agentscope.pipelines.switchpipeline method)": [[38, "agentscope.pipelines.SwitchPipeline.__init__", false]], "__init__() (agentscope.pipelines.whilelooppipeline method)": [[38, "agentscope.pipelines.WhileLoopPipeline.__init__", false]], "__init__() (agentscope.prompt.chinesesystempromptgenerator method)": [[41, "agentscope.prompt.ChineseSystemPromptGenerator.__init__", false]], "__init__() (agentscope.prompt.englishsystempromptgenerator method)": [[41, "agentscope.prompt.EnglishSystemPromptGenerator.__init__", false]], "__init__() (agentscope.prompt.systempromptcomparer method)": [[41, "agentscope.prompt.SystemPromptComparer.__init__", false]], "__init__() (agentscope.prompt.systempromptgeneratorbase method)": [[41, "agentscope.prompt.SystemPromptGeneratorBase.__init__", false]], "__init__() (agentscope.prompt.systempromptoptimizer method)": [[41, "agentscope.prompt.SystemPromptOptimizer.__init__", false]], "__init__() (agentscope.rag.knowledge method)": [[42, "agentscope.rag.Knowledge.__init__", false]], "__init__() (agentscope.rag.knowledge.knowledge method)": [[43, "agentscope.rag.knowledge.Knowledge.__init__", false]], "__init__() (agentscope.rag.knowledge_bank.knowledgebank method)": [[44, "agentscope.rag.knowledge_bank.KnowledgeBank.__init__", false]], "__init__() (agentscope.rag.knowledgebank method)": [[42, "agentscope.rag.KnowledgeBank.__init__", false]], "__init__() (agentscope.rag.llama_index_knowledge.llamaindexknowledge method)": [[45, "agentscope.rag.llama_index_knowledge.LlamaIndexKnowledge.__init__", false]], "__init__() (agentscope.rpc.responsestub method)": [[46, "agentscope.rpc.ResponseStub.__init__", false]], "__init__() (agentscope.rpc.rpc_agent_client.responsestub method)": [[47, "agentscope.rpc.rpc_agent_client.ResponseStub.__init__", false]], "__init__() (agentscope.rpc.rpc_agent_client.rpcagentclient method)": [[47, "agentscope.rpc.rpc_agent_client.RpcAgentClient.__init__", false]], "__init__() (agentscope.rpc.rpc_agent_pb2_grpc.rpcagentstub method)": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgentStub.__init__", false]], "__init__() (agentscope.rpc.rpcagentclient method)": [[46, "agentscope.rpc.RpcAgentClient.__init__", false]], "__init__() (agentscope.rpc.rpcagentstub method)": [[46, "agentscope.rpc.RpcAgentStub.__init__", false]], "__init__() (agentscope.server.agentserverservicer method)": [[51, "agentscope.server.AgentServerServicer.__init__", false]], "__init__() (agentscope.server.launcher.rpcagentserverlauncher method)": [[52, "agentscope.server.launcher.RpcAgentServerLauncher.__init__", false]], "__init__() (agentscope.server.rpcagentserverlauncher method)": [[51, "agentscope.server.RpcAgentServerLauncher.__init__", false]], "__init__() (agentscope.server.servicer.agentserverservicer method)": [[53, "agentscope.server.servicer.AgentServerServicer.__init__", false]], "__init__() (agentscope.service.browser.web_browser.webbrowser method)": [[56, "agentscope.service.browser.web_browser.WebBrowser.__init__", false]], "__init__() (agentscope.service.execute_code.exec_notebook.notebookexecutor method)": [[58, "agentscope.service.execute_code.exec_notebook.NoteBookExecutor.__init__", false]], "__init__() (agentscope.service.notebookexecutor method)": [[54, "agentscope.service.NoteBookExecutor.__init__", false]], "__init__() (agentscope.service.service_response.serviceresponse method)": [[71, "agentscope.service.service_response.ServiceResponse.__init__", false]], "__init__() (agentscope.service.service_toolkit.servicefunction method)": [[73, "agentscope.service.service_toolkit.ServiceFunction.__init__", false]], "__init__() (agentscope.service.service_toolkit.servicetoolkit method)": [[73, "agentscope.service.service_toolkit.ServiceToolkit.__init__", false]], "__init__() (agentscope.service.serviceresponse method)": [[54, "agentscope.service.ServiceResponse.__init__", false]], "__init__() (agentscope.service.servicetoolkit method)": [[54, "agentscope.service.ServiceToolkit.__init__", false]], "__init__() (agentscope.service.webbrowser method)": [[54, "agentscope.service.WebBrowser.__init__", false]], "__init__() (agentscope.strategy.mixture_of_agent.mixtureofagents method)": [[89, "agentscope.strategy.mixture_of_agent.MixtureOfAgents.__init__", false]], "__init__() (agentscope.strategy.mixtureofagents method)": [[88, "agentscope.strategy.MixtureOfAgents.__init__", false]], "__init__() (agentscope.utils.common.importerrorreporter method)": [[93, "agentscope.utils.common.ImportErrorReporter.__init__", false]], "__init__() (agentscope.web.workstation.workflow_dag.asdigraph method)": [[102, "agentscope.web.workstation.workflow_dag.ASDiGraph.__init__", false]], "__init__() (agentscope.web.workstation.workflow_node.bingsearchservicenode method)": [[103, "agentscope.web.workstation.workflow_node.BingSearchServiceNode.__init__", false]], "__init__() (agentscope.web.workstation.workflow_node.copynode method)": [[103, "agentscope.web.workstation.workflow_node.CopyNode.__init__", false]], "__init__() (agentscope.web.workstation.workflow_node.dialogagentnode method)": [[103, "agentscope.web.workstation.workflow_node.DialogAgentNode.__init__", false]], "__init__() (agentscope.web.workstation.workflow_node.dictdialogagentnode method)": [[103, "agentscope.web.workstation.workflow_node.DictDialogAgentNode.__init__", false]], "__init__() (agentscope.web.workstation.workflow_node.forlooppipelinenode method)": [[103, "agentscope.web.workstation.workflow_node.ForLoopPipelineNode.__init__", false]], "__init__() (agentscope.web.workstation.workflow_node.googlesearchservicenode method)": [[103, "agentscope.web.workstation.workflow_node.GoogleSearchServiceNode.__init__", false]], "__init__() (agentscope.web.workstation.workflow_node.ifelsepipelinenode method)": [[103, "agentscope.web.workstation.workflow_node.IfElsePipelineNode.__init__", false]], "__init__() (agentscope.web.workstation.workflow_node.modelnode method)": [[103, "agentscope.web.workstation.workflow_node.ModelNode.__init__", false]], "__init__() (agentscope.web.workstation.workflow_node.msghubnode method)": [[103, "agentscope.web.workstation.workflow_node.MsgHubNode.__init__", false]], "__init__() (agentscope.web.workstation.workflow_node.msgnode method)": [[103, "agentscope.web.workstation.workflow_node.MsgNode.__init__", false]], "__init__() (agentscope.web.workstation.workflow_node.placeholdernode method)": [[103, "agentscope.web.workstation.workflow_node.PlaceHolderNode.__init__", false]], "__init__() (agentscope.web.workstation.workflow_node.pythonservicenode method)": [[103, "agentscope.web.workstation.workflow_node.PythonServiceNode.__init__", false]], "__init__() (agentscope.web.workstation.workflow_node.reactagentnode method)": [[103, "agentscope.web.workstation.workflow_node.ReActAgentNode.__init__", false]], "__init__() (agentscope.web.workstation.workflow_node.readtextservicenode method)": [[103, "agentscope.web.workstation.workflow_node.ReadTextServiceNode.__init__", false]], "__init__() (agentscope.web.workstation.workflow_node.sequentialpipelinenode method)": [[103, "agentscope.web.workstation.workflow_node.SequentialPipelineNode.__init__", false]], "__init__() (agentscope.web.workstation.workflow_node.switchpipelinenode method)": [[103, "agentscope.web.workstation.workflow_node.SwitchPipelineNode.__init__", false]], "__init__() (agentscope.web.workstation.workflow_node.useragentnode method)": [[103, "agentscope.web.workstation.workflow_node.UserAgentNode.__init__", false]], "__init__() (agentscope.web.workstation.workflow_node.whilelooppipelinenode method)": [[103, "agentscope.web.workstation.workflow_node.WhileLoopPipelineNode.__init__", false]], "__init__() (agentscope.web.workstation.workflow_node.workflownode method)": [[103, "agentscope.web.workstation.workflow_node.WorkflowNode.__init__", false]], "__init__() (agentscope.web.workstation.workflow_node.writetextservicenode method)": [[103, "agentscope.web.workstation.workflow_node.WriteTextServiceNode.__init__", false]], "action_click() (agentscope.service.browser.web_browser.webbrowser method)": [[56, "agentscope.service.browser.web_browser.WebBrowser.action_click", false]], "action_click() (agentscope.service.webbrowser method)": [[54, "agentscope.service.WebBrowser.action_click", false]], "action_press_key() (agentscope.service.browser.web_browser.webbrowser method)": [[56, "agentscope.service.browser.web_browser.WebBrowser.action_press_key", false]], "action_press_key() (agentscope.service.webbrowser method)": [[54, "agentscope.service.WebBrowser.action_press_key", false]], "action_scroll_down() (agentscope.service.browser.web_browser.webbrowser method)": [[56, "agentscope.service.browser.web_browser.WebBrowser.action_scroll_down", false]], "action_scroll_down() (agentscope.service.webbrowser method)": [[54, "agentscope.service.WebBrowser.action_scroll_down", false]], "action_scroll_up() (agentscope.service.browser.web_browser.webbrowser method)": [[56, "agentscope.service.browser.web_browser.WebBrowser.action_scroll_up", false]], "action_scroll_up() (agentscope.service.webbrowser method)": [[54, "agentscope.service.WebBrowser.action_scroll_up", false]], "action_type() (agentscope.service.browser.web_browser.webbrowser method)": [[56, "agentscope.service.browser.web_browser.WebBrowser.action_type", false]], "action_type() (agentscope.service.webbrowser method)": [[54, "agentscope.service.WebBrowser.action_type", false]], "action_visit_url() (agentscope.service.browser.web_browser.webbrowser method)": [[56, "agentscope.service.browser.web_browser.WebBrowser.action_visit_url", false]], "action_visit_url() (agentscope.service.webbrowser method)": [[54, "agentscope.service.WebBrowser.action_visit_url", false]], "add() (agentscope.memory.memory.memorybase method)": [[15, "agentscope.memory.memory.MemoryBase.add", false]], "add() (agentscope.memory.memorybase method)": [[14, "agentscope.memory.MemoryBase.add", false]], "add() (agentscope.memory.temporary_memory.temporarymemory method)": [[16, "agentscope.memory.temporary_memory.TemporaryMemory.add", false]], "add() (agentscope.memory.temporarymemory method)": [[14, "agentscope.memory.TemporaryMemory.add", false]], "add() (agentscope.msghub.msghubmanager method)": [[31, "agentscope.msghub.MsgHubManager.add", false]], "add() (agentscope.service.service_toolkit.servicetoolkit method)": [[73, "agentscope.service.service_toolkit.ServiceToolkit.add", false]], "add() (agentscope.service.servicetoolkit method)": [[54, "agentscope.service.ServiceToolkit.add", false]], "add_as_node() (agentscope.web.workstation.workflow_dag.asdigraph method)": [[102, "agentscope.web.workstation.workflow_dag.ASDiGraph.add_as_node", false]], "add_data_as_knowledge() (agentscope.rag.knowledge_bank.knowledgebank method)": [[44, "agentscope.rag.knowledge_bank.KnowledgeBank.add_data_as_knowledge", false]], "add_data_as_knowledge() (agentscope.rag.knowledgebank method)": [[42, "agentscope.rag.KnowledgeBank.add_data_as_knowledge", false]], "add_rpcagentservicer_to_server() (in module agentscope.rpc)": [[46, "agentscope.rpc.add_RpcAgentServicer_to_server", false]], "add_rpcagentservicer_to_server() (in module agentscope.rpc.rpc_agent_pb2_grpc)": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.add_RpcAgentServicer_to_server", false]], "agent (agentscope.web.workstation.workflow_node.workflownodetype attribute)": [[103, "agentscope.web.workstation.workflow_node.WorkflowNodeType.AGENT", false]], "agent_exists() (agentscope.server.agentserverservicer method)": [[51, "agentscope.server.AgentServerServicer.agent_exists", false]], "agent_exists() (agentscope.server.servicer.agentserverservicer method)": [[53, "agentscope.server.servicer.AgentServerServicer.agent_exists", false]], "agent_id (agentscope.agents.agent.agentbase property)": [[2, "agentscope.agents.agent.AgentBase.agent_id", false]], "agent_id (agentscope.agents.agentbase property)": [[1, "agentscope.agents.AgentBase.agent_id", false]], "agentbase (class in agentscope.agents)": [[1, "agentscope.agents.AgentBase", false]], "agentbase (class in agentscope.agents.agent)": [[2, "agentscope.agents.agent.AgentBase", false]], "agentcallerror": [[11, "agentscope.exception.AgentCallError", false]], "agentcreationerror": [[11, "agentscope.exception.AgentCreationError", false]], "agentscope": [[0, "module-agentscope", false]], "agentscope.agents": [[1, "module-agentscope.agents", false]], "agentscope.agents.agent": [[2, "module-agentscope.agents.agent", false]], "agentscope.agents.dialog_agent": [[3, "module-agentscope.agents.dialog_agent", false]], "agentscope.agents.dict_dialog_agent": [[4, "module-agentscope.agents.dict_dialog_agent", false]], "agentscope.agents.operator": [[5, "module-agentscope.agents.operator", false]], "agentscope.agents.rag_agent": [[6, "module-agentscope.agents.rag_agent", false]], "agentscope.agents.react_agent": [[7, "module-agentscope.agents.react_agent", false]], "agentscope.agents.rpc_agent": [[8, "module-agentscope.agents.rpc_agent", false]], "agentscope.agents.user_agent": [[9, "module-agentscope.agents.user_agent", false]], "agentscope.constants": [[10, "module-agentscope.constants", false]], "agentscope.exception": [[11, "module-agentscope.exception", false]], "agentscope.logging": [[12, "module-agentscope.logging", false]], "agentscope.manager": [[13, "module-agentscope.manager", false]], "agentscope.memory": [[14, "module-agentscope.memory", false]], "agentscope.memory.memory": [[15, "module-agentscope.memory.memory", false]], "agentscope.memory.temporary_memory": [[16, "module-agentscope.memory.temporary_memory", false]], "agentscope.message": [[17, "module-agentscope.message", false]], "agentscope.message.msg": [[18, "module-agentscope.message.msg", false]], "agentscope.message.placeholder": [[19, "module-agentscope.message.placeholder", false]], "agentscope.models": [[20, "module-agentscope.models", false]], "agentscope.models.dashscope_model": [[21, "module-agentscope.models.dashscope_model", false]], "agentscope.models.gemini_model": [[22, "module-agentscope.models.gemini_model", false]], "agentscope.models.litellm_model": [[23, "module-agentscope.models.litellm_model", false]], "agentscope.models.model": [[24, "module-agentscope.models.model", false]], "agentscope.models.ollama_model": [[25, "module-agentscope.models.ollama_model", false]], "agentscope.models.openai_model": [[26, "module-agentscope.models.openai_model", false]], "agentscope.models.post_model": [[27, "module-agentscope.models.post_model", false]], "agentscope.models.response": [[28, "module-agentscope.models.response", false]], "agentscope.models.yi_model": [[29, "module-agentscope.models.yi_model", false]], "agentscope.models.zhipu_model": [[30, "module-agentscope.models.zhipu_model", false]], "agentscope.msghub": [[31, "module-agentscope.msghub", false]], "agentscope.parsers": [[32, "module-agentscope.parsers", false]], "agentscope.parsers.code_block_parser": [[33, "module-agentscope.parsers.code_block_parser", false]], "agentscope.parsers.json_object_parser": [[34, "module-agentscope.parsers.json_object_parser", false]], "agentscope.parsers.parser_base": [[35, "module-agentscope.parsers.parser_base", false]], "agentscope.parsers.regex_tagged_content_parser": [[36, "module-agentscope.parsers.regex_tagged_content_parser", false]], "agentscope.parsers.tagged_content_parser": [[37, "module-agentscope.parsers.tagged_content_parser", false]], "agentscope.pipelines": [[38, "module-agentscope.pipelines", false]], "agentscope.pipelines.functional": [[39, "module-agentscope.pipelines.functional", false]], "agentscope.pipelines.pipeline": [[40, "module-agentscope.pipelines.pipeline", false]], "agentscope.prompt": [[41, "module-agentscope.prompt", false]], "agentscope.rag": [[42, "module-agentscope.rag", false]], "agentscope.rag.knowledge": [[43, "module-agentscope.rag.knowledge", false]], "agentscope.rag.knowledge_bank": [[44, "module-agentscope.rag.knowledge_bank", false]], "agentscope.rag.llama_index_knowledge": [[45, "module-agentscope.rag.llama_index_knowledge", false]], "agentscope.rpc": [[46, "module-agentscope.rpc", false]], "agentscope.rpc.rpc_agent_client": [[47, "module-agentscope.rpc.rpc_agent_client", false]], "agentscope.rpc.rpc_agent_pb2": [[48, "module-agentscope.rpc.rpc_agent_pb2", false]], "agentscope.rpc.rpc_agent_pb2_grpc": [[49, "module-agentscope.rpc.rpc_agent_pb2_grpc", false]], "agentscope.serialize": [[50, "module-agentscope.serialize", false]], "agentscope.server": [[51, "module-agentscope.server", false]], "agentscope.server.launcher": [[52, "module-agentscope.server.launcher", false]], "agentscope.server.servicer": [[53, "module-agentscope.server.servicer", false]], "agentscope.service": [[54, "module-agentscope.service", false]], "agentscope.service.browser": [[55, "module-agentscope.service.browser", false]], "agentscope.service.browser.web_browser": [[56, "module-agentscope.service.browser.web_browser", false]], "agentscope.service.execute_code": [[57, "module-agentscope.service.execute_code", false]], "agentscope.service.execute_code.exec_notebook": [[58, "module-agentscope.service.execute_code.exec_notebook", false]], "agentscope.service.execute_code.exec_python": [[59, "module-agentscope.service.execute_code.exec_python", false]], "agentscope.service.execute_code.exec_shell": [[60, "module-agentscope.service.execute_code.exec_shell", false]], "agentscope.service.file": [[61, "module-agentscope.service.file", false]], "agentscope.service.file.common": [[62, "module-agentscope.service.file.common", false]], "agentscope.service.file.json": [[63, "module-agentscope.service.file.json", false]], "agentscope.service.file.text": [[64, "module-agentscope.service.file.text", false]], "agentscope.service.multi_modality": [[65, "module-agentscope.service.multi_modality", false]], "agentscope.service.multi_modality.dashscope_services": [[66, "module-agentscope.service.multi_modality.dashscope_services", false]], "agentscope.service.multi_modality.openai_services": [[67, "module-agentscope.service.multi_modality.openai_services", false]], "agentscope.service.retrieval": [[68, "module-agentscope.service.retrieval", false]], "agentscope.service.retrieval.retrieval_from_list": [[69, "module-agentscope.service.retrieval.retrieval_from_list", false]], "agentscope.service.retrieval.similarity": [[70, "module-agentscope.service.retrieval.similarity", false]], "agentscope.service.service_response": [[71, "module-agentscope.service.service_response", false]], "agentscope.service.service_status": [[72, "module-agentscope.service.service_status", false]], "agentscope.service.service_toolkit": [[73, "module-agentscope.service.service_toolkit", false]], "agentscope.service.sql_query": [[74, "module-agentscope.service.sql_query", false]], "agentscope.service.sql_query.mongodb": [[75, "module-agentscope.service.sql_query.mongodb", false]], "agentscope.service.sql_query.mysql": [[76, "module-agentscope.service.sql_query.mysql", false]], "agentscope.service.sql_query.sqlite": [[77, "module-agentscope.service.sql_query.sqlite", false]], "agentscope.service.text_processing": [[78, "module-agentscope.service.text_processing", false]], "agentscope.service.text_processing.summarization": [[79, "module-agentscope.service.text_processing.summarization", false]], "agentscope.service.web": [[80, "module-agentscope.service.web", false]], "agentscope.service.web.arxiv": [[81, "module-agentscope.service.web.arxiv", false]], "agentscope.service.web.dblp": [[82, "module-agentscope.service.web.dblp", false]], "agentscope.service.web.download": [[83, "module-agentscope.service.web.download", false]], "agentscope.service.web.search": [[84, "module-agentscope.service.web.search", false]], "agentscope.service.web.tripadvisor": [[85, "module-agentscope.service.web.tripadvisor", false]], "agentscope.service.web.web_digest": [[86, "module-agentscope.service.web.web_digest", false]], "agentscope.service.web.wikipedia": [[87, "module-agentscope.service.web.wikipedia", false]], "agentscope.strategy": [[88, "module-agentscope.strategy", false]], "agentscope.strategy.mixture_of_agent": [[89, "module-agentscope.strategy.mixture_of_agent", false]], "agentscope.studio": [[90, "module-agentscope.studio", false]], "agentscope.studio.utils": [[91, "module-agentscope.studio.utils", false]], "agentscope.utils": [[92, "module-agentscope.utils", false]], "agentscope.utils.common": [[93, "module-agentscope.utils.common", false]], "agentscope.utils.token_utils": [[94, "module-agentscope.utils.token_utils", false]], "agentscope.web": [[95, "module-agentscope.web", false]], "agentscope.web.gradio": [[96, "module-agentscope.web.gradio", false]], "agentscope.web.gradio.constants": [[97, "module-agentscope.web.gradio.constants", false]], "agentscope.web.gradio.studio": [[98, "module-agentscope.web.gradio.studio", false]], "agentscope.web.gradio.utils": [[99, "module-agentscope.web.gradio.utils", false]], "agentscope.web.workstation": [[100, "module-agentscope.web.workstation", false]], "agentscope.web.workstation.workflow": [[101, "module-agentscope.web.workstation.workflow", false]], "agentscope.web.workstation.workflow_dag": [[102, "module-agentscope.web.workstation.workflow_dag", false]], "agentscope.web.workstation.workflow_node": [[103, "module-agentscope.web.workstation.workflow_node", false]], "agentscope.web.workstation.workflow_utils": [[104, "module-agentscope.web.workstation.workflow_utils", false]], "agentservererror": [[11, "agentscope.exception.AgentServerError", false]], "agentservernotaliveerror": [[11, "agentscope.exception.AgentServerNotAliveError", false]], "agentserverservicer (class in agentscope.server)": [[51, "agentscope.server.AgentServerServicer", false]], "agentserverservicer (class in agentscope.server.servicer)": [[53, "agentscope.server.servicer.AgentServerServicer", false]], "argumentnotfounderror": [[11, "agentscope.exception.ArgumentNotFoundError", false]], "argumenttypeerror": [[11, "agentscope.exception.ArgumentTypeError", false]], "aria_label (agentscope.service.browser.web_browser.webelementinfo attribute)": [[56, "agentscope.service.browser.web_browser.WebElementInfo.aria_label", false]], "aria_label (agentscope.service.webelementinfo attribute)": [[54, "agentscope.service.WebElementInfo.aria_label", false]], "arxiv_search() (in module agentscope.service)": [[54, "agentscope.service.arxiv_search", false]], "arxiv_search() (in module agentscope.service.web.arxiv)": [[81, "agentscope.service.web.arxiv.arxiv_search", false]], "as_server() (in module agentscope.server)": [[51, "agentscope.server.as_server", false]], "as_server() (in module agentscope.server.launcher)": [[52, "agentscope.server.launcher.as_server", false]], "asdigraph (class in agentscope.web.workstation.workflow_dag)": [[102, "agentscope.web.workstation.workflow_dag.ASDiGraph", false]], "asmanager (class in agentscope.manager)": [[13, "agentscope.manager.ASManager", false]], "async_run_code_on_notebook() (agentscope.service.execute_code.exec_notebook.notebookexecutor method)": [[58, "agentscope.service.execute_code.exec_notebook.NoteBookExecutor.async_run_code_on_notebook", false]], "async_run_code_on_notebook() (agentscope.service.notebookexecutor method)": [[54, "agentscope.service.NoteBookExecutor.async_run_code_on_notebook", false]], "audio2text() (in module agentscope.web.gradio.utils)": [[99, "agentscope.web.gradio.utils.audio2text", false]], "bing_search() (in module agentscope.service)": [[54, "agentscope.service.bing_search", false]], "bing_search() (in module agentscope.service.web.search)": [[84, "agentscope.service.web.search.bing_search", false]], "bingsearchservicenode (class in agentscope.web.workstation.workflow_node)": [[103, "agentscope.web.workstation.workflow_node.BingSearchServiceNode", false]], "broadcast() (agentscope.msghub.msghubmanager method)": [[31, "agentscope.msghub.MsgHubManager.broadcast", false]], "build_dag() (in module agentscope.web.workstation.workflow_dag)": [[102, "agentscope.web.workstation.workflow_dag.build_dag", false]], "cache_text_embedding() (agentscope.manager.filemanager method)": [[13, "agentscope.manager.FileManager.cache_text_embedding", false]], "call_agent_func() (agentscope.rpc.rpc_agent_client.rpcagentclient method)": [[47, "agentscope.rpc.rpc_agent_client.RpcAgentClient.call_agent_func", false]], "call_agent_func() (agentscope.rpc.rpc_agent_pb2_grpc.rpcagent static method)": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgent.call_agent_func", false]], "call_agent_func() (agentscope.rpc.rpc_agent_pb2_grpc.rpcagentservicer method)": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgentServicer.call_agent_func", false]], "call_agent_func() (agentscope.rpc.rpcagentclient method)": [[46, "agentscope.rpc.RpcAgentClient.call_agent_func", false]], "call_agent_func() (agentscope.rpc.rpcagentservicer method)": [[46, "agentscope.rpc.RpcAgentServicer.call_agent_func", false]], "call_agent_func() (agentscope.server.agentserverservicer method)": [[51, "agentscope.server.AgentServerServicer.call_agent_func", false]], "call_agent_func() (agentscope.server.servicer.agentserverservicer method)": [[53, "agentscope.server.servicer.AgentServerServicer.call_agent_func", false]], "call_in_thread() (in module agentscope.rpc)": [[46, "agentscope.rpc.call_in_thread", false]], "call_in_thread() (in module agentscope.rpc.rpc_agent_client)": [[47, "agentscope.rpc.rpc_agent_client.call_in_thread", false]], "cells_length (agentscope.service.execute_code.exec_notebook.notebookexecutor property)": [[58, "agentscope.service.execute_code.exec_notebook.NoteBookExecutor.cells_length", false]], "cells_length (agentscope.service.notebookexecutor property)": [[54, "agentscope.service.NoteBookExecutor.cells_length", false]], "check_uuid() (in module agentscope.web.gradio.utils)": [[99, "agentscope.web.gradio.utils.check_uuid", false]], "chinesesystempromptgenerator (class in agentscope.prompt)": [[41, "agentscope.prompt.ChineseSystemPromptGenerator", false]], "clear() (agentscope.memory.memory.memorybase method)": [[15, "agentscope.memory.memory.MemoryBase.clear", false]], "clear() (agentscope.memory.memorybase method)": [[14, "agentscope.memory.MemoryBase.clear", false]], "clear() (agentscope.memory.temporary_memory.temporarymemory method)": [[16, "agentscope.memory.temporary_memory.TemporaryMemory.clear", false]], "clear() (agentscope.memory.temporarymemory method)": [[14, "agentscope.memory.TemporaryMemory.clear", false]], "clear_audience() (agentscope.agents.agent.agentbase method)": [[2, "agentscope.agents.agent.AgentBase.clear_audience", false]], "clear_audience() (agentscope.agents.agentbase method)": [[1, "agentscope.agents.AgentBase.clear_audience", false]], "clear_model_configs() (agentscope.manager.modelmanager method)": [[13, "agentscope.manager.ModelManager.clear_model_configs", false]], "clone_agent() (agentscope.rpc.rpc_agent_client.rpcagentclient method)": [[47, "agentscope.rpc.rpc_agent_client.RpcAgentClient.clone_agent", false]], "clone_agent() (agentscope.rpc.rpc_agent_pb2_grpc.rpcagent static method)": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgent.clone_agent", false]], "clone_agent() (agentscope.rpc.rpc_agent_pb2_grpc.rpcagentservicer method)": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgentServicer.clone_agent", false]], "clone_agent() (agentscope.rpc.rpcagentclient method)": [[46, "agentscope.rpc.RpcAgentClient.clone_agent", false]], "clone_agent() (agentscope.rpc.rpcagentservicer method)": [[46, "agentscope.rpc.RpcAgentServicer.clone_agent", false]], "clone_agent() (agentscope.server.agentserverservicer method)": [[51, "agentscope.server.AgentServerServicer.clone_agent", false]], "clone_agent() (agentscope.server.servicer.agentserverservicer method)": [[53, "agentscope.server.servicer.AgentServerServicer.clone_agent", false]], "clone_instances() (agentscope.agents.rpc_agent.rpcagent method)": [[8, "agentscope.agents.rpc_agent.RpcAgent.clone_instances", false]], "clone_instances() (agentscope.agents.rpcagent method)": [[1, "agentscope.agents.RpcAgent.clone_instances", false]], "close() (agentscope.service.browser.web_browser.webbrowser method)": [[56, "agentscope.service.browser.web_browser.WebBrowser.close", false]], "close() (agentscope.service.webbrowser method)": [[54, "agentscope.service.WebBrowser.close", false]], "code_dir (agentscope.manager.filemanager property)": [[13, "agentscope.manager.FileManager.code_dir", false]], "compare_in_dialog() (agentscope.prompt.systempromptcomparer method)": [[41, "agentscope.prompt.SystemPromptComparer.compare_in_dialog", false]], "compare_with_queries() (agentscope.prompt.systempromptcomparer method)": [[41, "agentscope.prompt.SystemPromptComparer.compare_with_queries", false]], "compile() (agentscope.web.workstation.workflow_dag.asdigraph method)": [[102, "agentscope.web.workstation.workflow_dag.ASDiGraph.compile", false]], "compile() (agentscope.web.workstation.workflow_node.bingsearchservicenode method)": [[103, "agentscope.web.workstation.workflow_node.BingSearchServiceNode.compile", false]], "compile() (agentscope.web.workstation.workflow_node.copynode method)": [[103, "agentscope.web.workstation.workflow_node.CopyNode.compile", false]], "compile() (agentscope.web.workstation.workflow_node.dialogagentnode method)": [[103, "agentscope.web.workstation.workflow_node.DialogAgentNode.compile", false]], "compile() (agentscope.web.workstation.workflow_node.dictdialogagentnode method)": [[103, "agentscope.web.workstation.workflow_node.DictDialogAgentNode.compile", false]], "compile() (agentscope.web.workstation.workflow_node.forlooppipelinenode method)": [[103, "agentscope.web.workstation.workflow_node.ForLoopPipelineNode.compile", false]], "compile() (agentscope.web.workstation.workflow_node.googlesearchservicenode method)": [[103, "agentscope.web.workstation.workflow_node.GoogleSearchServiceNode.compile", false]], "compile() (agentscope.web.workstation.workflow_node.ifelsepipelinenode method)": [[103, "agentscope.web.workstation.workflow_node.IfElsePipelineNode.compile", false]], "compile() (agentscope.web.workstation.workflow_node.modelnode method)": [[103, "agentscope.web.workstation.workflow_node.ModelNode.compile", false]], "compile() (agentscope.web.workstation.workflow_node.msghubnode method)": [[103, "agentscope.web.workstation.workflow_node.MsgHubNode.compile", false]], "compile() (agentscope.web.workstation.workflow_node.msgnode method)": [[103, "agentscope.web.workstation.workflow_node.MsgNode.compile", false]], "compile() (agentscope.web.workstation.workflow_node.placeholdernode method)": [[103, "agentscope.web.workstation.workflow_node.PlaceHolderNode.compile", false]], "compile() (agentscope.web.workstation.workflow_node.pythonservicenode method)": [[103, "agentscope.web.workstation.workflow_node.PythonServiceNode.compile", false]], "compile() (agentscope.web.workstation.workflow_node.reactagentnode method)": [[103, "agentscope.web.workstation.workflow_node.ReActAgentNode.compile", false]], "compile() (agentscope.web.workstation.workflow_node.readtextservicenode method)": [[103, "agentscope.web.workstation.workflow_node.ReadTextServiceNode.compile", false]], "compile() (agentscope.web.workstation.workflow_node.sequentialpipelinenode method)": [[103, "agentscope.web.workstation.workflow_node.SequentialPipelineNode.compile", false]], "compile() (agentscope.web.workstation.workflow_node.switchpipelinenode method)": [[103, "agentscope.web.workstation.workflow_node.SwitchPipelineNode.compile", false]], "compile() (agentscope.web.workstation.workflow_node.useragentnode method)": [[103, "agentscope.web.workstation.workflow_node.UserAgentNode.compile", false]], "compile() (agentscope.web.workstation.workflow_node.whilelooppipelinenode method)": [[103, "agentscope.web.workstation.workflow_node.WhileLoopPipelineNode.compile", false]], "compile() (agentscope.web.workstation.workflow_node.workflownode method)": [[103, "agentscope.web.workstation.workflow_node.WorkflowNode.compile", false]], "compile() (agentscope.web.workstation.workflow_node.writetextservicenode method)": [[103, "agentscope.web.workstation.workflow_node.WriteTextServiceNode.compile", false]], "compile_workflow() (in module agentscope.web.workstation.workflow)": [[101, "agentscope.web.workstation.workflow.compile_workflow", false]], "config_name (agentscope.models.dashscope_model.dashscopechatwrapper attribute)": [[21, "agentscope.models.dashscope_model.DashScopeChatWrapper.config_name", false]], "config_name (agentscope.models.dashscope_model.dashscopeimagesynthesiswrapper attribute)": [[21, "agentscope.models.dashscope_model.DashScopeImageSynthesisWrapper.config_name", false]], "config_name (agentscope.models.dashscope_model.dashscopemultimodalwrapper attribute)": [[21, "agentscope.models.dashscope_model.DashScopeMultiModalWrapper.config_name", false]], "config_name (agentscope.models.dashscope_model.dashscopetextembeddingwrapper attribute)": [[21, "agentscope.models.dashscope_model.DashScopeTextEmbeddingWrapper.config_name", false]], "config_name (agentscope.models.gemini_model.geminichatwrapper attribute)": [[22, "agentscope.models.gemini_model.GeminiChatWrapper.config_name", false]], "config_name (agentscope.models.gemini_model.geminiembeddingwrapper attribute)": [[22, "agentscope.models.gemini_model.GeminiEmbeddingWrapper.config_name", false]], "config_name (agentscope.models.litellm_model.litellmchatwrapper attribute)": [[23, "agentscope.models.litellm_model.LiteLLMChatWrapper.config_name", false]], "config_name (agentscope.models.model.modelwrapperbase attribute)": [[24, "agentscope.models.model.ModelWrapperBase.config_name", false]], "config_name (agentscope.models.modelwrapperbase attribute)": [[20, "agentscope.models.ModelWrapperBase.config_name", false]], "config_name (agentscope.models.ollama_model.ollamachatwrapper attribute)": [[25, "agentscope.models.ollama_model.OllamaChatWrapper.config_name", false]], "config_name (agentscope.models.ollama_model.ollamaembeddingwrapper attribute)": [[25, "agentscope.models.ollama_model.OllamaEmbeddingWrapper.config_name", false]], "config_name (agentscope.models.ollama_model.ollamagenerationwrapper attribute)": [[25, "agentscope.models.ollama_model.OllamaGenerationWrapper.config_name", false]], "config_name (agentscope.models.openai_model.openaichatwrapper attribute)": [[26, "agentscope.models.openai_model.OpenAIChatWrapper.config_name", false]], "config_name (agentscope.models.openai_model.openaidallewrapper attribute)": [[26, "agentscope.models.openai_model.OpenAIDALLEWrapper.config_name", false]], "config_name (agentscope.models.openai_model.openaiembeddingwrapper attribute)": [[26, "agentscope.models.openai_model.OpenAIEmbeddingWrapper.config_name", false]], "config_name (agentscope.models.post_model.postapichatwrapper attribute)": [[27, "agentscope.models.post_model.PostAPIChatWrapper.config_name", false]], "config_name (agentscope.models.post_model.postapimodelwrapperbase attribute)": [[27, "agentscope.models.post_model.PostAPIModelWrapperBase.config_name", false]], "config_name (agentscope.models.yi_model.yichatwrapper attribute)": [[29, "agentscope.models.yi_model.YiChatWrapper.config_name", false]], "config_name (agentscope.models.zhipu_model.zhipuaichatwrapper attribute)": [[30, "agentscope.models.zhipu_model.ZhipuAIChatWrapper.config_name", false]], "config_name (agentscope.models.zhipu_model.zhipuaiembeddingwrapper attribute)": [[30, "agentscope.models.zhipu_model.ZhipuAIEmbeddingWrapper.config_name", false]], "content (agentscope.message.msg property)": [[17, "agentscope.message.Msg.content", false]], "content (agentscope.message.msg.msg property)": [[18, "agentscope.message.msg.Msg.content", false]], "content (agentscope.message.placeholder.placeholdermessage property)": [[19, "agentscope.message.placeholder.PlaceholderMessage.content", false]], "content (agentscope.message.placeholdermessage property)": [[17, "agentscope.message.PlaceholderMessage.content", false]], "content_hint (agentscope.parsers.code_block_parser.markdowncodeblockparser attribute)": [[33, "agentscope.parsers.code_block_parser.MarkdownCodeBlockParser.content_hint", false]], "content_hint (agentscope.parsers.json_object_parser.markdownjsondictparser attribute)": [[34, "agentscope.parsers.json_object_parser.MarkdownJsonDictParser.content_hint", false]], "content_hint (agentscope.parsers.json_object_parser.markdownjsonobjectparser attribute)": [[34, "agentscope.parsers.json_object_parser.MarkdownJsonObjectParser.content_hint", false]], "content_hint (agentscope.parsers.markdowncodeblockparser attribute)": [[32, "agentscope.parsers.MarkdownCodeBlockParser.content_hint", false]], "content_hint (agentscope.parsers.markdownjsondictparser attribute)": [[32, "agentscope.parsers.MarkdownJsonDictParser.content_hint", false]], "content_hint (agentscope.parsers.markdownjsonobjectparser attribute)": [[32, "agentscope.parsers.MarkdownJsonObjectParser.content_hint", false]], "content_hint (agentscope.parsers.tagged_content_parser.taggedcontent attribute)": [[37, "agentscope.parsers.tagged_content_parser.TaggedContent.content_hint", false]], "content_hint (agentscope.parsers.taggedcontent attribute)": [[32, "agentscope.parsers.TaggedContent.content_hint", false]], "convert_url() (agentscope.models.dashscope_model.dashscopemultimodalwrapper method)": [[21, "agentscope.models.dashscope_model.DashScopeMultiModalWrapper.convert_url", false]], "convert_url() (agentscope.models.dashscopemultimodalwrapper method)": [[20, "agentscope.models.DashScopeMultiModalWrapper.convert_url", false]], "copy (agentscope.web.workstation.workflow_node.workflownodetype attribute)": [[103, "agentscope.web.workstation.workflow_node.WorkflowNodeType.COPY", false]], "copynode (class in agentscope.web.workstation.workflow_node)": [[103, "agentscope.web.workstation.workflow_node.CopyNode", false]], "cos_sim() (in module agentscope.service)": [[54, "agentscope.service.cos_sim", false]], "cos_sim() (in module agentscope.service.retrieval.similarity)": [[70, "agentscope.service.retrieval.similarity.cos_sim", false]], "count_openai_token() (in module agentscope.utils.token_utils)": [[94, "agentscope.utils.token_utils.count_openai_token", false]], "create_agent() (agentscope.rpc.rpc_agent_client.rpcagentclient method)": [[47, "agentscope.rpc.rpc_agent_client.RpcAgentClient.create_agent", false]], "create_agent() (agentscope.rpc.rpc_agent_pb2_grpc.rpcagent static method)": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgent.create_agent", false]], "create_agent() (agentscope.rpc.rpc_agent_pb2_grpc.rpcagentservicer method)": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgentServicer.create_agent", false]], "create_agent() (agentscope.rpc.rpcagentclient method)": [[46, "agentscope.rpc.RpcAgentClient.create_agent", false]], "create_agent() (agentscope.rpc.rpcagentservicer method)": [[46, "agentscope.rpc.RpcAgentServicer.create_agent", false]], "create_agent() (agentscope.server.agentserverservicer method)": [[51, "agentscope.server.AgentServerServicer.create_agent", false]], "create_agent() (agentscope.server.servicer.agentserverservicer method)": [[53, "agentscope.server.servicer.AgentServerServicer.create_agent", false]], "create_directory() (in module agentscope.service)": [[54, "agentscope.service.create_directory", false]], "create_directory() (in module agentscope.service.file.common)": [[62, "agentscope.service.file.common.create_directory", false]], "create_file() (in module agentscope.service)": [[54, "agentscope.service.create_file", false]], "create_file() (in module agentscope.service.file.common)": [[62, "agentscope.service.file.common.create_file", false]], "create_tempdir() (in module agentscope.utils.common)": [[93, "agentscope.utils.common.create_tempdir", false]], "cycle_dots() (in module agentscope.web.gradio.utils)": [[99, "agentscope.web.gradio.utils.cycle_dots", false]], "dashscope_image_to_text() (in module agentscope.service)": [[54, "agentscope.service.dashscope_image_to_text", false]], "dashscope_image_to_text() (in module agentscope.service.multi_modality.dashscope_services)": [[66, "agentscope.service.multi_modality.dashscope_services.dashscope_image_to_text", false]], "dashscope_text_to_audio() (in module agentscope.service)": [[54, "agentscope.service.dashscope_text_to_audio", false]], "dashscope_text_to_audio() (in module agentscope.service.multi_modality.dashscope_services)": [[66, "agentscope.service.multi_modality.dashscope_services.dashscope_text_to_audio", false]], "dashscope_text_to_image() (in module agentscope.service)": [[54, "agentscope.service.dashscope_text_to_image", false]], "dashscope_text_to_image() (in module agentscope.service.multi_modality.dashscope_services)": [[66, "agentscope.service.multi_modality.dashscope_services.dashscope_text_to_image", false]], "dashscopechatwrapper (class in agentscope.models)": [[20, "agentscope.models.DashScopeChatWrapper", false]], "dashscopechatwrapper (class in agentscope.models.dashscope_model)": [[21, "agentscope.models.dashscope_model.DashScopeChatWrapper", false]], "dashscopeimagesynthesiswrapper (class in agentscope.models)": [[20, "agentscope.models.DashScopeImageSynthesisWrapper", false]], "dashscopeimagesynthesiswrapper (class in agentscope.models.dashscope_model)": [[21, "agentscope.models.dashscope_model.DashScopeImageSynthesisWrapper", false]], "dashscopemultimodalwrapper (class in agentscope.models)": [[20, "agentscope.models.DashScopeMultiModalWrapper", false]], "dashscopemultimodalwrapper (class in agentscope.models.dashscope_model)": [[21, "agentscope.models.dashscope_model.DashScopeMultiModalWrapper", false]], "dashscopetextembeddingwrapper (class in agentscope.models)": [[20, "agentscope.models.DashScopeTextEmbeddingWrapper", false]], "dashscopetextembeddingwrapper (class in agentscope.models.dashscope_model)": [[21, "agentscope.models.dashscope_model.DashScopeTextEmbeddingWrapper", false]], "dashscopewrapperbase (class in agentscope.models.dashscope_model)": [[21, "agentscope.models.dashscope_model.DashScopeWrapperBase", false]], "dblp_search_authors() (in module agentscope.service)": [[54, "agentscope.service.dblp_search_authors", false]], "dblp_search_authors() (in module agentscope.service.web.dblp)": [[82, "agentscope.service.web.dblp.dblp_search_authors", false]], "dblp_search_publications() (in module agentscope.service)": [[54, "agentscope.service.dblp_search_publications", false]], "dblp_search_publications() (in module agentscope.service.web.dblp)": [[82, "agentscope.service.web.dblp.dblp_search_publications", false]], "dblp_search_venues() (in module agentscope.service)": [[54, "agentscope.service.dblp_search_venues", false]], "dblp_search_venues() (in module agentscope.service.web.dblp)": [[82, "agentscope.service.web.dblp.dblp_search_venues", false]], "decode_jwt() (in module agentscope.studio.utils)": [[91, "agentscope.studio.utils.decode_jwt", false]], "delete() (agentscope.memory.memory.memorybase method)": [[15, "agentscope.memory.memory.MemoryBase.delete", false]], "delete() (agentscope.memory.memorybase method)": [[14, "agentscope.memory.MemoryBase.delete", false]], "delete() (agentscope.memory.temporary_memory.temporarymemory method)": [[16, "agentscope.memory.temporary_memory.TemporaryMemory.delete", false]], "delete() (agentscope.memory.temporarymemory method)": [[14, "agentscope.memory.TemporaryMemory.delete", false]], "delete() (agentscope.msghub.msghubmanager method)": [[31, "agentscope.msghub.MsgHubManager.delete", false]], "delete_agent() (agentscope.rpc.rpc_agent_client.rpcagentclient method)": [[47, "agentscope.rpc.rpc_agent_client.RpcAgentClient.delete_agent", false]], "delete_agent() (agentscope.rpc.rpc_agent_pb2_grpc.rpcagent static method)": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgent.delete_agent", false]], "delete_agent() (agentscope.rpc.rpc_agent_pb2_grpc.rpcagentservicer method)": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgentServicer.delete_agent", false]], "delete_agent() (agentscope.rpc.rpcagentclient method)": [[46, "agentscope.rpc.RpcAgentClient.delete_agent", false]], "delete_agent() (agentscope.rpc.rpcagentservicer method)": [[46, "agentscope.rpc.RpcAgentServicer.delete_agent", false]], "delete_agent() (agentscope.server.agentserverservicer method)": [[51, "agentscope.server.AgentServerServicer.delete_agent", false]], "delete_agent() (agentscope.server.servicer.agentserverservicer method)": [[53, "agentscope.server.servicer.AgentServerServicer.delete_agent", false]], "delete_all_agent() (agentscope.rpc.rpc_agent_client.rpcagentclient method)": [[47, "agentscope.rpc.rpc_agent_client.RpcAgentClient.delete_all_agent", false]], "delete_all_agent() (agentscope.rpc.rpcagentclient method)": [[46, "agentscope.rpc.RpcAgentClient.delete_all_agent", false]], "delete_all_agents() (agentscope.rpc.rpc_agent_pb2_grpc.rpcagent static method)": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgent.delete_all_agents", false]], "delete_all_agents() (agentscope.rpc.rpc_agent_pb2_grpc.rpcagentservicer method)": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgentServicer.delete_all_agents", false]], "delete_all_agents() (agentscope.rpc.rpcagentservicer method)": [[46, "agentscope.rpc.RpcAgentServicer.delete_all_agents", false]], "delete_all_agents() (agentscope.server.agentserverservicer method)": [[51, "agentscope.server.AgentServerServicer.delete_all_agents", false]], "delete_all_agents() (agentscope.server.servicer.agentserverservicer method)": [[53, "agentscope.server.servicer.AgentServerServicer.delete_all_agents", false]], "delete_directory() (in module agentscope.service)": [[54, "agentscope.service.delete_directory", false]], "delete_directory() (in module agentscope.service.file.common)": [[62, "agentscope.service.file.common.delete_directory", false]], "delete_file() (in module agentscope.service)": [[54, "agentscope.service.delete_file", false]], "delete_file() (in module agentscope.service.file.common)": [[62, "agentscope.service.file.common.delete_file", false]], "deprecated_model_type (agentscope.models.dashscope_model.dashscopechatwrapper attribute)": [[21, "agentscope.models.dashscope_model.DashScopeChatWrapper.deprecated_model_type", false]], "deprecated_model_type (agentscope.models.dashscopechatwrapper attribute)": [[20, "agentscope.models.DashScopeChatWrapper.deprecated_model_type", false]], "deprecated_model_type (agentscope.models.openai_model.openaichatwrapper attribute)": [[26, "agentscope.models.openai_model.OpenAIChatWrapper.deprecated_model_type", false]], "deprecated_model_type (agentscope.models.openaichatwrapper attribute)": [[20, "agentscope.models.OpenAIChatWrapper.deprecated_model_type", false]], "deprecated_model_type (agentscope.models.post_model.postapidallewrapper attribute)": [[27, "agentscope.models.post_model.PostAPIDALLEWrapper.deprecated_model_type", false]], "deps_converter() (in module agentscope.web.workstation.workflow_utils)": [[104, "agentscope.web.workstation.workflow_utils.deps_converter", false]], "descriptor (agentscope.rpc.rpcmsg attribute)": [[46, "agentscope.rpc.RpcMsg.DESCRIPTOR", false]], "deserialize() (in module agentscope.serialize)": [[50, "agentscope.serialize.deserialize", false]], "dialogagent (class in agentscope.agents)": [[1, "agentscope.agents.DialogAgent", false]], "dialogagent (class in agentscope.agents.dialog_agent)": [[3, "agentscope.agents.dialog_agent.DialogAgent", false]], "dialogagentnode (class in agentscope.web.workstation.workflow_node)": [[103, "agentscope.web.workstation.workflow_node.DialogAgentNode", false]], "dict_converter() (in module agentscope.web.workstation.workflow_utils)": [[104, "agentscope.web.workstation.workflow_utils.dict_converter", false]], "dictdialogagent (class in agentscope.agents)": [[1, "agentscope.agents.DictDialogAgent", false]], "dictdialogagent (class in agentscope.agents.dict_dialog_agent)": [[4, "agentscope.agents.dict_dialog_agent.DictDialogAgent", false]], "dictdialogagentnode (class in agentscope.web.workstation.workflow_node)": [[103, "agentscope.web.workstation.workflow_node.DictDialogAgentNode", false]], "dictfiltermixin (class in agentscope.parsers.parser_base)": [[35, "agentscope.parsers.parser_base.DictFilterMixin", false]], "digest_webpage() (in module agentscope.service)": [[54, "agentscope.service.digest_webpage", false]], "digest_webpage() (in module agentscope.service.web.web_digest)": [[86, "agentscope.service.web.web_digest.digest_webpage", false]], "distconf (class in agentscope.agents)": [[1, "agentscope.agents.DistConf", false]], "distconf (class in agentscope.agents.agent)": [[2, "agentscope.agents.agent.DistConf", false]], "download_file() (agentscope.rpc.rpc_agent_client.rpcagentclient method)": [[47, "agentscope.rpc.rpc_agent_client.RpcAgentClient.download_file", false]], "download_file() (agentscope.rpc.rpc_agent_pb2_grpc.rpcagent static method)": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgent.download_file", false]], "download_file() (agentscope.rpc.rpc_agent_pb2_grpc.rpcagentservicer method)": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgentServicer.download_file", false]], "download_file() (agentscope.rpc.rpcagentclient method)": [[46, "agentscope.rpc.RpcAgentClient.download_file", false]], "download_file() (agentscope.rpc.rpcagentservicer method)": [[46, "agentscope.rpc.RpcAgentServicer.download_file", false]], "download_file() (agentscope.server.agentserverservicer method)": [[51, "agentscope.server.AgentServerServicer.download_file", false]], "download_file() (agentscope.server.servicer.agentserverservicer method)": [[53, "agentscope.server.servicer.AgentServerServicer.download_file", false]], "download_from_url() (in module agentscope.service)": [[54, "agentscope.service.download_from_url", false]], "download_from_url() (in module agentscope.service.web.download)": [[83, "agentscope.service.web.download.download_from_url", false]], "embedding_cache_dir (agentscope.manager.filemanager property)": [[13, "agentscope.manager.FileManager.embedding_cache_dir", false]], "englishsystempromptgenerator (class in agentscope.prompt)": [[41, "agentscope.prompt.EnglishSystemPromptGenerator", false]], "equip() (agentscope.rag.knowledge_bank.knowledgebank method)": [[44, "agentscope.rag.knowledge_bank.KnowledgeBank.equip", false]], "equip() (agentscope.rag.knowledgebank method)": [[42, "agentscope.rag.KnowledgeBank.equip", false]], "error (agentscope.service.service_status.serviceexecstatus attribute)": [[72, "agentscope.service.service_status.ServiceExecStatus.ERROR", false]], "error (agentscope.service.serviceexecstatus attribute)": [[54, "agentscope.service.ServiceExecStatus.ERROR", false]], "exec_node() (agentscope.web.workstation.workflow_dag.asdigraph method)": [[102, "agentscope.web.workstation.workflow_dag.ASDiGraph.exec_node", false]], "execute_python_code() (in module agentscope.service)": [[54, "agentscope.service.execute_python_code", false]], "execute_python_code() (in module agentscope.service.execute_code.exec_python)": [[59, "agentscope.service.execute_code.exec_python.execute_python_code", false]], "execute_shell_command() (in module agentscope.service)": [[54, "agentscope.service.execute_shell_command", false]], "execute_shell_command() (in module agentscope.service.execute_code.exec_shell)": [[60, "agentscope.service.execute_code.exec_shell.execute_shell_command", false]], "export() (agentscope.memory.memory.memorybase method)": [[15, "agentscope.memory.memory.MemoryBase.export", false]], "export() (agentscope.memory.memorybase method)": [[14, "agentscope.memory.MemoryBase.export", false]], "export() (agentscope.memory.temporary_memory.temporarymemory method)": [[16, "agentscope.memory.temporary_memory.TemporaryMemory.export", false]], "export() (agentscope.memory.temporarymemory method)": [[14, "agentscope.memory.TemporaryMemory.export", false]], "fetch_cached_text_embedding() (agentscope.manager.filemanager method)": [[13, "agentscope.manager.FileManager.fetch_cached_text_embedding", false]], "file_dir (agentscope.manager.filemanager property)": [[13, "agentscope.manager.FileManager.file_dir", false]], "filemanager (class in agentscope.manager)": [[13, "agentscope.manager.FileManager", false]], "finish() (agentscope.agents.react_agent.reactagent static method)": [[7, "agentscope.agents.react_agent.ReActAgent.finish", false]], "finish() (agentscope.agents.reactagent static method)": [[1, "agentscope.agents.ReActAgent.finish", false]], "flush() (agentscope.manager.asmanager method)": [[13, "agentscope.manager.ASManager.flush", false]], "flush() (agentscope.manager.filemanager method)": [[13, "agentscope.manager.FileManager.flush", false]], "flush() (agentscope.manager.modelmanager method)": [[13, "agentscope.manager.ModelManager.flush", false]], "flush() (agentscope.manager.monitormanager method)": [[13, "agentscope.manager.MonitorManager.flush", false]], "fn_choice() (in module agentscope.web.gradio.studio)": [[98, "agentscope.web.gradio.studio.fn_choice", false]], "forlooppipeline (class in agentscope.pipelines)": [[38, "agentscope.pipelines.ForLoopPipeline", false]], "forlooppipeline (class in agentscope.pipelines.pipeline)": [[40, "agentscope.pipelines.pipeline.ForLoopPipeline", false]], "forlooppipeline() (in module agentscope.pipelines)": [[38, "agentscope.pipelines.forlooppipeline", false]], "forlooppipeline() (in module agentscope.pipelines.functional)": [[39, "agentscope.pipelines.functional.forlooppipeline", false]], "forlooppipelinenode (class in agentscope.web.workstation.workflow_node)": [[103, "agentscope.web.workstation.workflow_node.ForLoopPipelineNode", false]], "format() (agentscope.models.dashscope_model.dashscopechatwrapper method)": [[21, "agentscope.models.dashscope_model.DashScopeChatWrapper.format", false]], "format() (agentscope.models.dashscope_model.dashscopemultimodalwrapper method)": [[21, "agentscope.models.dashscope_model.DashScopeMultiModalWrapper.format", false]], "format() (agentscope.models.dashscope_model.dashscopewrapperbase method)": [[21, "agentscope.models.dashscope_model.DashScopeWrapperBase.format", false]], "format() (agentscope.models.dashscopechatwrapper method)": [[20, "agentscope.models.DashScopeChatWrapper.format", false]], "format() (agentscope.models.dashscopemultimodalwrapper method)": [[20, "agentscope.models.DashScopeMultiModalWrapper.format", false]], "format() (agentscope.models.gemini_model.geminichatwrapper static method)": [[22, "agentscope.models.gemini_model.GeminiChatWrapper.format", false]], "format() (agentscope.models.geminichatwrapper static method)": [[20, "agentscope.models.GeminiChatWrapper.format", false]], "format() (agentscope.models.litellm_model.litellmchatwrapper method)": [[23, "agentscope.models.litellm_model.LiteLLMChatWrapper.format", false]], "format() (agentscope.models.litellm_model.litellmwrapperbase method)": [[23, "agentscope.models.litellm_model.LiteLLMWrapperBase.format", false]], "format() (agentscope.models.litellmchatwrapper method)": [[20, "agentscope.models.LiteLLMChatWrapper.format", false]], "format() (agentscope.models.model.modelwrapperbase method)": [[24, "agentscope.models.model.ModelWrapperBase.format", false]], "format() (agentscope.models.modelwrapperbase method)": [[20, "agentscope.models.ModelWrapperBase.format", false]], "format() (agentscope.models.ollama_model.ollamachatwrapper method)": [[25, "agentscope.models.ollama_model.OllamaChatWrapper.format", false]], "format() (agentscope.models.ollama_model.ollamaembeddingwrapper method)": [[25, "agentscope.models.ollama_model.OllamaEmbeddingWrapper.format", false]], "format() (agentscope.models.ollama_model.ollamagenerationwrapper method)": [[25, "agentscope.models.ollama_model.OllamaGenerationWrapper.format", false]], "format() (agentscope.models.ollamachatwrapper method)": [[20, "agentscope.models.OllamaChatWrapper.format", false]], "format() (agentscope.models.ollamaembeddingwrapper method)": [[20, "agentscope.models.OllamaEmbeddingWrapper.format", false]], "format() (agentscope.models.ollamagenerationwrapper method)": [[20, "agentscope.models.OllamaGenerationWrapper.format", false]], "format() (agentscope.models.openai_model.openaichatwrapper method)": [[26, "agentscope.models.openai_model.OpenAIChatWrapper.format", false]], "format() (agentscope.models.openai_model.openaiwrapperbase method)": [[26, "agentscope.models.openai_model.OpenAIWrapperBase.format", false]], "format() (agentscope.models.openaichatwrapper method)": [[20, "agentscope.models.OpenAIChatWrapper.format", false]], "format() (agentscope.models.openaiwrapperbase method)": [[20, "agentscope.models.OpenAIWrapperBase.format", false]], "format() (agentscope.models.post_model.postapichatwrapper method)": [[27, "agentscope.models.post_model.PostAPIChatWrapper.format", false]], "format() (agentscope.models.post_model.postapidallewrapper method)": [[27, "agentscope.models.post_model.PostAPIDALLEWrapper.format", false]], "format() (agentscope.models.post_model.postapiembeddingwrapper method)": [[27, "agentscope.models.post_model.PostAPIEmbeddingWrapper.format", false]], "format() (agentscope.models.postapichatwrapper method)": [[20, "agentscope.models.PostAPIChatWrapper.format", false]], "format() (agentscope.models.yi_model.yichatwrapper method)": [[29, "agentscope.models.yi_model.YiChatWrapper.format", false]], "format() (agentscope.models.yichatwrapper method)": [[20, "agentscope.models.YiChatWrapper.format", false]], "format() (agentscope.models.zhipu_model.zhipuaichatwrapper method)": [[30, "agentscope.models.zhipu_model.ZhipuAIChatWrapper.format", false]], "format() (agentscope.models.zhipu_model.zhipuaiwrapperbase method)": [[30, "agentscope.models.zhipu_model.ZhipuAIWrapperBase.format", false]], "format() (agentscope.models.zhipuaichatwrapper method)": [[20, "agentscope.models.ZhipuAIChatWrapper.format", false]], "format_for_common_chat_models() (agentscope.models.model.modelwrapperbase static method)": [[24, "agentscope.models.model.ModelWrapperBase.format_for_common_chat_models", false]], "format_for_common_chat_models() (agentscope.models.modelwrapperbase static method)": [[20, "agentscope.models.ModelWrapperBase.format_for_common_chat_models", false]], "format_instruction (agentscope.parsers.code_block_parser.markdowncodeblockparser attribute)": [[33, "agentscope.parsers.code_block_parser.MarkdownCodeBlockParser.format_instruction", false]], "format_instruction (agentscope.parsers.json_object_parser.markdownjsondictparser property)": [[34, "agentscope.parsers.json_object_parser.MarkdownJsonDictParser.format_instruction", false]], "format_instruction (agentscope.parsers.json_object_parser.markdownjsonobjectparser property)": [[34, "agentscope.parsers.json_object_parser.MarkdownJsonObjectParser.format_instruction", false]], "format_instruction (agentscope.parsers.markdowncodeblockparser attribute)": [[32, "agentscope.parsers.MarkdownCodeBlockParser.format_instruction", false]], "format_instruction (agentscope.parsers.markdownjsondictparser property)": [[32, "agentscope.parsers.MarkdownJsonDictParser.format_instruction", false]], "format_instruction (agentscope.parsers.markdownjsonobjectparser property)": [[32, "agentscope.parsers.MarkdownJsonObjectParser.format_instruction", false]], "format_instruction (agentscope.parsers.multitaggedcontentparser attribute)": [[32, "agentscope.parsers.MultiTaggedContentParser.format_instruction", false]], "format_instruction (agentscope.parsers.regex_tagged_content_parser.regextaggedcontentparser property)": [[36, "agentscope.parsers.regex_tagged_content_parser.RegexTaggedContentParser.format_instruction", false]], "format_instruction (agentscope.parsers.regextaggedcontentparser property)": [[32, "agentscope.parsers.RegexTaggedContentParser.format_instruction", false]], "format_instruction (agentscope.parsers.tagged_content_parser.multitaggedcontentparser attribute)": [[37, "agentscope.parsers.tagged_content_parser.MultiTaggedContentParser.format_instruction", false]], "formatted_str() (agentscope.message.msg method)": [[17, "agentscope.message.Msg.formatted_str", false]], "formatted_str() (agentscope.message.msg.msg method)": [[18, "agentscope.message.msg.Msg.formatted_str", false]], "from_dict() (agentscope.message.msg class method)": [[17, "agentscope.message.Msg.from_dict", false]], "from_dict() (agentscope.message.msg.msg class method)": [[18, "agentscope.message.msg.Msg.from_dict", false]], "from_dict() (agentscope.message.placeholder.placeholdermessage class method)": [[19, "agentscope.message.placeholder.PlaceholderMessage.from_dict", false]], "from_dict() (agentscope.message.placeholdermessage class method)": [[17, "agentscope.message.PlaceholderMessage.from_dict", false]], "functioncallerror": [[11, "agentscope.exception.FunctionCallError", false]], "functioncallformaterror": [[11, "agentscope.exception.FunctionCallFormatError", false]], "functionnotfounderror": [[11, "agentscope.exception.FunctionNotFoundError", false]], "geminichatwrapper (class in agentscope.models)": [[20, "agentscope.models.GeminiChatWrapper", false]], "geminichatwrapper (class in agentscope.models.gemini_model)": [[22, "agentscope.models.gemini_model.GeminiChatWrapper", false]], "geminiembeddingwrapper (class in agentscope.models)": [[20, "agentscope.models.GeminiEmbeddingWrapper", false]], "geminiembeddingwrapper (class in agentscope.models.gemini_model)": [[22, "agentscope.models.gemini_model.GeminiEmbeddingWrapper", false]], "geminiwrapperbase (class in agentscope.models.gemini_model)": [[22, "agentscope.models.gemini_model.GeminiWrapperBase", false]], "generate() (agentscope.prompt.systempromptgeneratorbase method)": [[41, "agentscope.prompt.SystemPromptGeneratorBase.generate", false]], "generate_agent_id() (agentscope.agents.agent.agentbase class method)": [[2, "agentscope.agents.agent.AgentBase.generate_agent_id", false]], "generate_agent_id() (agentscope.agents.agentbase class method)": [[1, "agentscope.agents.AgentBase.generate_agent_id", false]], "generate_image_from_name() (in module agentscope.web.gradio.utils)": [[99, "agentscope.web.gradio.utils.generate_image_from_name", false]], "generate_jwt() (in module agentscope.studio.utils)": [[91, "agentscope.studio.utils.generate_jwt", false]], "generate_notes() (agentscope.prompt.systempromptoptimizer method)": [[41, "agentscope.prompt.SystemPromptOptimizer.generate_notes", false]], "generate_server_id() (agentscope.server.launcher.rpcagentserverlauncher class method)": [[52, "agentscope.server.launcher.RpcAgentServerLauncher.generate_server_id", false]], "generate_server_id() (agentscope.server.rpcagentserverlauncher class method)": [[51, "agentscope.server.RpcAgentServerLauncher.generate_server_id", false]], "generation_method (agentscope.models.gemini_model.geminichatwrapper attribute)": [[22, "agentscope.models.gemini_model.GeminiChatWrapper.generation_method", false]], "generation_method (agentscope.models.geminichatwrapper attribute)": [[20, "agentscope.models.GeminiChatWrapper.generation_method", false]], "get() (agentscope.service.service_toolkit.servicefactory class method)": [[73, "agentscope.service.service_toolkit.ServiceFactory.get", false]], "get() (agentscope.service.service_toolkit.servicetoolkit class method)": [[73, "agentscope.service.service_toolkit.ServiceToolkit.get", false]], "get() (agentscope.service.servicefactory class method)": [[54, "agentscope.service.ServiceFactory.get", false]], "get() (agentscope.service.servicetoolkit class method)": [[54, "agentscope.service.ServiceToolkit.get", false]], "get_action_functions() (agentscope.service.browser.web_browser.webbrowser method)": [[56, "agentscope.service.browser.web_browser.WebBrowser.get_action_functions", false]], "get_action_functions() (agentscope.service.webbrowser method)": [[54, "agentscope.service.WebBrowser.get_action_functions", false]], "get_agent() (agentscope.server.agentserverservicer method)": [[51, "agentscope.server.AgentServerServicer.get_agent", false]], "get_agent() (agentscope.server.servicer.agentserverservicer method)": [[53, "agentscope.server.servicer.AgentServerServicer.get_agent", false]], "get_agent_class() (agentscope.agents.agent.agentbase class method)": [[2, "agentscope.agents.agent.AgentBase.get_agent_class", false]], "get_agent_class() (agentscope.agents.agentbase class method)": [[1, "agentscope.agents.AgentBase.get_agent_class", false]], "get_agent_list() (agentscope.rpc.rpc_agent_client.rpcagentclient method)": [[47, "agentscope.rpc.rpc_agent_client.RpcAgentClient.get_agent_list", false]], "get_agent_list() (agentscope.rpc.rpc_agent_pb2_grpc.rpcagent static method)": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgent.get_agent_list", false]], "get_agent_list() (agentscope.rpc.rpc_agent_pb2_grpc.rpcagentservicer method)": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgentServicer.get_agent_list", false]], "get_agent_list() (agentscope.rpc.rpcagentclient method)": [[46, "agentscope.rpc.RpcAgentClient.get_agent_list", false]], "get_agent_list() (agentscope.rpc.rpcagentservicer method)": [[46, "agentscope.rpc.RpcAgentServicer.get_agent_list", false]], "get_agent_list() (agentscope.server.agentserverservicer method)": [[51, "agentscope.server.AgentServerServicer.get_agent_list", false]], "get_agent_list() (agentscope.server.servicer.agentserverservicer method)": [[53, "agentscope.server.servicer.AgentServerServicer.get_agent_list", false]], "get_agent_memory() (agentscope.rpc.rpc_agent_client.rpcagentclient method)": [[47, "agentscope.rpc.rpc_agent_client.RpcAgentClient.get_agent_memory", false]], "get_agent_memory() (agentscope.rpc.rpc_agent_pb2_grpc.rpcagent static method)": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgent.get_agent_memory", false]], "get_agent_memory() (agentscope.rpc.rpc_agent_pb2_grpc.rpcagentservicer method)": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgentServicer.get_agent_memory", false]], "get_agent_memory() (agentscope.rpc.rpcagentclient method)": [[46, "agentscope.rpc.RpcAgentClient.get_agent_memory", false]], "get_agent_memory() (agentscope.rpc.rpcagentservicer method)": [[46, "agentscope.rpc.RpcAgentServicer.get_agent_memory", false]], "get_agent_memory() (agentscope.server.agentserverservicer method)": [[51, "agentscope.server.AgentServerServicer.get_agent_memory", false]], "get_agent_memory() (agentscope.server.servicer.agentserverservicer method)": [[53, "agentscope.server.servicer.AgentServerServicer.get_agent_memory", false]], "get_all_agents() (in module agentscope.web.workstation.workflow_node)": [[103, "agentscope.web.workstation.workflow_node.get_all_agents", false]], "get_chat() (in module agentscope.web.gradio.studio)": [[98, "agentscope.web.gradio.studio.get_chat", false]], "get_chat_msg() (in module agentscope.web.gradio.utils)": [[99, "agentscope.web.gradio.utils.get_chat_msg", false]], "get_config_by_name() (agentscope.manager.modelmanager method)": [[13, "agentscope.manager.ModelManager.get_config_by_name", false]], "get_current_directory() (in module agentscope.service)": [[54, "agentscope.service.get_current_directory", false]], "get_current_directory() (in module agentscope.service.file.common)": [[62, "agentscope.service.file.common.get_current_directory", false]], "get_embeddings() (agentscope.memory.temporary_memory.temporarymemory method)": [[16, "agentscope.memory.temporary_memory.TemporaryMemory.get_embeddings", false]], "get_embeddings() (agentscope.memory.temporarymemory method)": [[14, "agentscope.memory.TemporaryMemory.get_embeddings", false]], "get_help() (in module agentscope.service)": [[54, "agentscope.service.get_help", false]], "get_instance() (agentscope.manager.asmanager class method)": [[13, "agentscope.manager.ASManager.get_instance", false]], "get_instance() (agentscope.manager.filemanager class method)": [[13, "agentscope.manager.FileManager.get_instance", false]], "get_instance() (agentscope.manager.modelmanager class method)": [[13, "agentscope.manager.ModelManager.get_instance", false]], "get_instance() (agentscope.manager.monitormanager class method)": [[13, "agentscope.manager.MonitorManager.get_instance", false]], "get_knowledge() (agentscope.rag.knowledge_bank.knowledgebank method)": [[44, "agentscope.rag.knowledge_bank.KnowledgeBank.get_knowledge", false]], "get_knowledge() (agentscope.rag.knowledgebank method)": [[42, "agentscope.rag.KnowledgeBank.get_knowledge", false]], "get_memory() (agentscope.memory.memory.memorybase method)": [[15, "agentscope.memory.memory.MemoryBase.get_memory", false]], "get_memory() (agentscope.memory.memorybase method)": [[14, "agentscope.memory.MemoryBase.get_memory", false]], "get_memory() (agentscope.memory.temporary_memory.temporarymemory method)": [[16, "agentscope.memory.temporary_memory.TemporaryMemory.get_memory", false]], "get_memory() (agentscope.memory.temporarymemory method)": [[14, "agentscope.memory.TemporaryMemory.get_memory", false]], "get_model_by_config_name() (agentscope.manager.modelmanager method)": [[13, "agentscope.manager.ModelManager.get_model_by_config_name", false]], "get_openai_max_length() (in module agentscope.utils.token_utils)": [[94, "agentscope.utils.token_utils.get_openai_max_length", false]], "get_player_input() (in module agentscope.web.gradio.utils)": [[99, "agentscope.web.gradio.utils.get_player_input", false]], "get_reset_msg() (in module agentscope.web.gradio.utils)": [[99, "agentscope.web.gradio.utils.get_reset_msg", false]], "get_response() (agentscope.rpc.responsestub method)": [[46, "agentscope.rpc.ResponseStub.get_response", false]], "get_response() (agentscope.rpc.rpc_agent_client.responsestub method)": [[47, "agentscope.rpc.rpc_agent_client.ResponseStub.get_response", false]], "get_server_info() (agentscope.rpc.rpc_agent_client.rpcagentclient method)": [[47, "agentscope.rpc.rpc_agent_client.RpcAgentClient.get_server_info", false]], "get_server_info() (agentscope.rpc.rpc_agent_pb2_grpc.rpcagent static method)": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgent.get_server_info", false]], "get_server_info() (agentscope.rpc.rpc_agent_pb2_grpc.rpcagentservicer method)": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgentServicer.get_server_info", false]], "get_server_info() (agentscope.rpc.rpcagentclient method)": [[46, "agentscope.rpc.RpcAgentClient.get_server_info", false]], "get_server_info() (agentscope.rpc.rpcagentservicer method)": [[46, "agentscope.rpc.RpcAgentServicer.get_server_info", false]], "get_server_info() (agentscope.server.agentserverservicer method)": [[51, "agentscope.server.AgentServerServicer.get_server_info", false]], "get_server_info() (agentscope.server.servicer.agentserverservicer method)": [[53, "agentscope.server.servicer.AgentServerServicer.get_server_info", false]], "get_task_id() (agentscope.server.agentserverservicer method)": [[51, "agentscope.server.AgentServerServicer.get_task_id", false]], "get_task_id() (agentscope.server.servicer.agentserverservicer method)": [[53, "agentscope.server.servicer.AgentServerServicer.get_task_id", false]], "get_wrapper() (agentscope.models.model.modelwrapperbase class method)": [[24, "agentscope.models.model.ModelWrapperBase.get_wrapper", false]], "get_wrapper() (agentscope.models.modelwrapperbase class method)": [[20, "agentscope.models.ModelWrapperBase.get_wrapper", false]], "google_search() (in module agentscope.service)": [[54, "agentscope.service.google_search", false]], "google_search() (in module agentscope.service.web.search)": [[84, "agentscope.service.web.search.google_search", false]], "googlesearchservicenode (class in agentscope.web.workstation.workflow_node)": [[103, "agentscope.web.workstation.workflow_node.GoogleSearchServiceNode", false]], "height (agentscope.service.browser.web_browser.webelementinfo attribute)": [[56, "agentscope.service.browser.web_browser.WebElementInfo.height", false]], "height (agentscope.service.webelementinfo attribute)": [[54, "agentscope.service.WebElementInfo.height", false]], "host (agentscope.exception.agentservererror attribute)": [[11, "agentscope.exception.AgentServerError.host", false]], "html (agentscope.service.browser.web_browser.webelementinfo attribute)": [[56, "agentscope.service.browser.web_browser.WebElementInfo.html", false]], "html (agentscope.service.webelementinfo attribute)": [[54, "agentscope.service.WebElementInfo.html", false]], "id (agentscope.message.msg property)": [[17, "agentscope.message.Msg.id", false]], "id (agentscope.message.msg.msg property)": [[18, "agentscope.message.msg.Msg.id", false]], "id (agentscope.message.placeholder.placeholdermessage property)": [[19, "agentscope.message.placeholder.PlaceholderMessage.id", false]], "id (agentscope.message.placeholdermessage property)": [[17, "agentscope.message.PlaceholderMessage.id", false]], "ifelsepipeline (class in agentscope.pipelines)": [[38, "agentscope.pipelines.IfElsePipeline", false]], "ifelsepipeline (class in agentscope.pipelines.pipeline)": [[40, "agentscope.pipelines.pipeline.IfElsePipeline", false]], "ifelsepipeline() (in module agentscope.pipelines)": [[38, "agentscope.pipelines.ifelsepipeline", false]], "ifelsepipeline() (in module agentscope.pipelines.functional)": [[39, "agentscope.pipelines.functional.ifelsepipeline", false]], "ifelsepipelinenode (class in agentscope.web.workstation.workflow_node)": [[103, "agentscope.web.workstation.workflow_node.IfElsePipelineNode", false]], "import_function_from_path() (in module agentscope.web.gradio.studio)": [[98, "agentscope.web.gradio.studio.import_function_from_path", false]], "importerrorreporter (class in agentscope.utils.common)": [[93, "agentscope.utils.common.ImportErrorReporter", false]], "init() (in module agentscope)": [[0, "agentscope.init", false]], "init() (in module agentscope.studio)": [[90, "agentscope.studio.init", false]], "init_uid_list() (in module agentscope.web.gradio.studio)": [[98, "agentscope.web.gradio.studio.init_uid_list", false]], "init_uid_queues() (in module agentscope.web.gradio.utils)": [[99, "agentscope.web.gradio.utils.init_uid_queues", false]], "initialize() (agentscope.manager.asmanager method)": [[13, "agentscope.manager.ASManager.initialize", false]], "initialize() (agentscope.manager.filemanager method)": [[13, "agentscope.manager.FileManager.initialize", false]], "initialize() (agentscope.manager.modelmanager method)": [[13, "agentscope.manager.ModelManager.initialize", false]], "initialize() (agentscope.manager.monitormanager method)": [[13, "agentscope.manager.MonitorManager.initialize", false]], "inner_text (agentscope.service.browser.web_browser.webelementinfo attribute)": [[56, "agentscope.service.browser.web_browser.WebElementInfo.inner_text", false]], "inner_text (agentscope.service.webelementinfo attribute)": [[54, "agentscope.service.WebElementInfo.inner_text", false]], "invoke_dir (agentscope.manager.filemanager property)": [[13, "agentscope.manager.FileManager.invoke_dir", false]], "is_alive() (agentscope.rpc.rpc_agent_client.rpcagentclient method)": [[47, "agentscope.rpc.rpc_agent_client.RpcAgentClient.is_alive", false]], "is_alive() (agentscope.rpc.rpc_agent_pb2_grpc.rpcagent static method)": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgent.is_alive", false]], "is_alive() (agentscope.rpc.rpc_agent_pb2_grpc.rpcagentservicer method)": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgentServicer.is_alive", false]], "is_alive() (agentscope.rpc.rpcagentclient method)": [[46, "agentscope.rpc.RpcAgentClient.is_alive", false]], "is_alive() (agentscope.rpc.rpcagentservicer method)": [[46, "agentscope.rpc.RpcAgentServicer.is_alive", false]], "is_alive() (agentscope.server.agentserverservicer method)": [[51, "agentscope.server.AgentServerServicer.is_alive", false]], "is_alive() (agentscope.server.servicer.agentserverservicer method)": [[53, "agentscope.server.servicer.AgentServerServicer.is_alive", false]], "is_callable_expression() (in module agentscope.web.workstation.workflow_utils)": [[104, "agentscope.web.workstation.workflow_utils.is_callable_expression", false]], "is_clickable (agentscope.service.browser.web_browser.webelementinfo attribute)": [[56, "agentscope.service.browser.web_browser.WebElementInfo.is_clickable", false]], "is_clickable (agentscope.service.webelementinfo attribute)": [[54, "agentscope.service.WebElementInfo.is_clickable", false]], "is_initialized() (agentscope.manager.filemanager class method)": [[13, "agentscope.manager.FileManager.is_initialized", false]], "is_serializable() (in module agentscope.serialize)": [[50, "agentscope.serialize.is_serializable", false]], "is_stream_exhausted (agentscope.models.modelresponse property)": [[20, "agentscope.models.ModelResponse.is_stream_exhausted", false]], "is_stream_exhausted (agentscope.models.response.modelresponse property)": [[28, "agentscope.models.response.ModelResponse.is_stream_exhausted", false]], "is_valid_url() (in module agentscope.service.web.web_digest)": [[86, "agentscope.service.web.web_digest.is_valid_url", false]], "json (agentscope.constants.responseformat attribute)": [[10, "agentscope.constants.ResponseFormat.JSON", false]], "json_required_hint (agentscope.parsers.multitaggedcontentparser attribute)": [[32, "agentscope.parsers.MultiTaggedContentParser.json_required_hint", false]], "json_required_hint (agentscope.parsers.tagged_content_parser.multitaggedcontentparser attribute)": [[37, "agentscope.parsers.tagged_content_parser.MultiTaggedContentParser.json_required_hint", false]], "json_schema (agentscope.service.service_toolkit.servicefunction attribute)": [[73, "agentscope.service.service_toolkit.ServiceFunction.json_schema", false]], "json_schemas (agentscope.service.service_toolkit.servicetoolkit property)": [[73, "agentscope.service.service_toolkit.ServiceToolkit.json_schemas", false]], "json_schemas (agentscope.service.servicetoolkit property)": [[54, "agentscope.service.ServiceToolkit.json_schemas", false]], "jsondictvalidationerror": [[11, "agentscope.exception.JsonDictValidationError", false]], "jsonparsingerror": [[11, "agentscope.exception.JsonParsingError", false]], "jsontypeerror": [[11, "agentscope.exception.JsonTypeError", false]], "keep_alive (agentscope.models.ollama_model.ollamachatwrapper attribute)": [[25, "agentscope.models.ollama_model.OllamaChatWrapper.keep_alive", false]], "keep_alive (agentscope.models.ollama_model.ollamaembeddingwrapper attribute)": [[25, "agentscope.models.ollama_model.OllamaEmbeddingWrapper.keep_alive", false]], "keep_alive (agentscope.models.ollama_model.ollamagenerationwrapper attribute)": [[25, "agentscope.models.ollama_model.OllamaGenerationWrapper.keep_alive", false]], "keep_alive (agentscope.models.ollama_model.ollamawrapperbase attribute)": [[25, "agentscope.models.ollama_model.OllamaWrapperBase.keep_alive", false]], "knowledge (class in agentscope.rag)": [[42, "agentscope.rag.Knowledge", false]], "knowledge (class in agentscope.rag.knowledge)": [[43, "agentscope.rag.knowledge.Knowledge", false]], "knowledgebank (class in agentscope.rag)": [[42, "agentscope.rag.KnowledgeBank", false]], "knowledgebank (class in agentscope.rag.knowledge_bank)": [[44, "agentscope.rag.knowledge_bank.KnowledgeBank", false]], "kwarg_converter() (in module agentscope.web.workstation.workflow_utils)": [[104, "agentscope.web.workstation.workflow_utils.kwarg_converter", false]], "launch() (agentscope.server.launcher.rpcagentserverlauncher method)": [[52, "agentscope.server.launcher.RpcAgentServerLauncher.launch", false]], "launch() (agentscope.server.rpcagentserverlauncher method)": [[51, "agentscope.server.RpcAgentServerLauncher.launch", false]], "list_directory_content() (in module agentscope.service)": [[54, "agentscope.service.list_directory_content", false]], "list_directory_content() (in module agentscope.service.file.common)": [[62, "agentscope.service.file.common.list_directory_content", false]], "list_models() (agentscope.models.gemini_model.geminiwrapperbase method)": [[22, "agentscope.models.gemini_model.GeminiWrapperBase.list_models", false]], "litellmchatwrapper (class in agentscope.models)": [[20, "agentscope.models.LiteLLMChatWrapper", false]], "litellmchatwrapper (class in agentscope.models.litellm_model)": [[23, "agentscope.models.litellm_model.LiteLLMChatWrapper", false]], "litellmwrapperbase (class in agentscope.models.litellm_model)": [[23, "agentscope.models.litellm_model.LiteLLMWrapperBase", false]], "llamaindexagent (class in agentscope.agents)": [[1, "agentscope.agents.LlamaIndexAgent", false]], "llamaindexagent (class in agentscope.agents.rag_agent)": [[6, "agentscope.agents.rag_agent.LlamaIndexAgent", false]], "llamaindexknowledge (class in agentscope.rag.llama_index_knowledge)": [[45, "agentscope.rag.llama_index_knowledge.LlamaIndexKnowledge", false]], "load() (agentscope.memory.memory.memorybase method)": [[15, "agentscope.memory.memory.MemoryBase.load", false]], "load() (agentscope.memory.memorybase method)": [[14, "agentscope.memory.MemoryBase.load", false]], "load() (agentscope.memory.temporary_memory.temporarymemory method)": [[16, "agentscope.memory.temporary_memory.TemporaryMemory.load", false]], "load() (agentscope.memory.temporarymemory method)": [[14, "agentscope.memory.TemporaryMemory.load", false]], "load_agents_from_dir() (in module agentscope.server.launcher)": [[52, "agentscope.server.launcher.load_agents_from_dir", false]], "load_agents_from_file() (in module agentscope.server.launcher)": [[52, "agentscope.server.launcher.load_agents_from_file", false]], "load_config() (in module agentscope.web.workstation.workflow)": [[101, "agentscope.web.workstation.workflow.load_config", false]], "load_dict() (agentscope.manager.asmanager method)": [[13, "agentscope.manager.ASManager.load_dict", false]], "load_dict() (agentscope.manager.filemanager method)": [[13, "agentscope.manager.FileManager.load_dict", false]], "load_dict() (agentscope.manager.modelmanager method)": [[13, "agentscope.manager.ModelManager.load_dict", false]], "load_dict() (agentscope.manager.monitormanager method)": [[13, "agentscope.manager.MonitorManager.load_dict", false]], "load_model_configs() (agentscope.manager.modelmanager method)": [[13, "agentscope.manager.ModelManager.load_model_configs", false]], "load_web() (in module agentscope.service)": [[54, "agentscope.service.load_web", false]], "load_web() (in module agentscope.service.web.web_digest)": [[86, "agentscope.service.web.web_digest.load_web", false]], "log_gradio() (in module agentscope.logging)": [[12, "agentscope.logging.log_gradio", false]], "log_msg() (in module agentscope.logging)": [[12, "agentscope.logging.log_msg", false]], "log_stream_msg() (in module agentscope.logging)": [[12, "agentscope.logging.log_stream_msg", false]], "main() (in module agentscope.web.workstation.workflow)": [[101, "agentscope.web.workstation.workflow.main", false]], "markdowncodeblockparser (class in agentscope.parsers)": [[32, "agentscope.parsers.MarkdownCodeBlockParser", false]], "markdowncodeblockparser (class in agentscope.parsers.code_block_parser)": [[33, "agentscope.parsers.code_block_parser.MarkdownCodeBlockParser", false]], "markdownjsondictparser (class in agentscope.parsers)": [[32, "agentscope.parsers.MarkdownJsonDictParser", false]], "markdownjsondictparser (class in agentscope.parsers.json_object_parser)": [[34, "agentscope.parsers.json_object_parser.MarkdownJsonDictParser", false]], "markdownjsonobjectparser (class in agentscope.parsers)": [[32, "agentscope.parsers.MarkdownJsonObjectParser", false]], "markdownjsonobjectparser (class in agentscope.parsers.json_object_parser)": [[34, "agentscope.parsers.json_object_parser.MarkdownJsonObjectParser", false]], "memorybase (class in agentscope.memory)": [[14, "agentscope.memory.MemoryBase", false]], "memorybase (class in agentscope.memory.memory)": [[15, "agentscope.memory.memory.MemoryBase", false]], "message (agentscope.exception.agentservererror attribute)": [[11, "agentscope.exception.AgentServerError.message", false]], "message (agentscope.web.workstation.workflow_node.workflownodetype attribute)": [[103, "agentscope.web.workstation.workflow_node.WorkflowNodeType.MESSAGE", false]], "meta_data (agentscope.service.browser.web_browser.webelementinfo attribute)": [[56, "agentscope.service.browser.web_browser.WebElementInfo.meta_data", false]], "meta_data (agentscope.service.webelementinfo attribute)": [[54, "agentscope.service.WebElementInfo.meta_data", false]], "metadata (agentscope.message.msg property)": [[17, "agentscope.message.Msg.metadata", false]], "metadata (agentscope.message.msg.msg property)": [[18, "agentscope.message.msg.Msg.metadata", false]], "metadata (agentscope.message.placeholder.placeholdermessage property)": [[19, "agentscope.message.placeholder.PlaceholderMessage.metadata", false]], "metadata (agentscope.message.placeholdermessage property)": [[17, "agentscope.message.PlaceholderMessage.metadata", false]], "missing_begin_tag (agentscope.exception.tagnotfounderror attribute)": [[11, "agentscope.exception.TagNotFoundError.missing_begin_tag", false]], "missing_end_tag (agentscope.exception.tagnotfounderror attribute)": [[11, "agentscope.exception.TagNotFoundError.missing_end_tag", false]], "mixtureofagents (class in agentscope.strategy)": [[88, "agentscope.strategy.MixtureOfAgents", false]], "mixtureofagents (class in agentscope.strategy.mixture_of_agent)": [[89, "agentscope.strategy.mixture_of_agent.MixtureOfAgents", false]], "model (agentscope.web.workstation.workflow_node.workflownodetype attribute)": [[103, "agentscope.web.workstation.workflow_node.WorkflowNodeType.MODEL", false]], "model_computed_fields (agentscope.service.browser.web_browser.webelementinfo attribute)": [[56, "agentscope.service.browser.web_browser.WebElementInfo.model_computed_fields", false]], "model_computed_fields (agentscope.service.webelementinfo attribute)": [[54, "agentscope.service.WebElementInfo.model_computed_fields", false]], "model_config (agentscope.service.browser.web_browser.webelementinfo attribute)": [[56, "agentscope.service.browser.web_browser.WebElementInfo.model_config", false]], "model_config (agentscope.service.webelementinfo attribute)": [[54, "agentscope.service.WebElementInfo.model_config", false]], "model_configs (agentscope.manager.modelmanager attribute)": [[13, "agentscope.manager.ModelManager.model_configs", false]], "model_fields (agentscope.service.browser.web_browser.webelementinfo attribute)": [[56, "agentscope.service.browser.web_browser.WebElementInfo.model_fields", false]], "model_fields (agentscope.service.webelementinfo attribute)": [[54, "agentscope.service.WebElementInfo.model_fields", false]], "model_name (agentscope.models.dashscope_model.dashscopechatwrapper attribute)": [[21, "agentscope.models.dashscope_model.DashScopeChatWrapper.model_name", false]], "model_name (agentscope.models.dashscope_model.dashscopeimagesynthesiswrapper attribute)": [[21, "agentscope.models.dashscope_model.DashScopeImageSynthesisWrapper.model_name", false]], "model_name (agentscope.models.dashscope_model.dashscopemultimodalwrapper attribute)": [[21, "agentscope.models.dashscope_model.DashScopeMultiModalWrapper.model_name", false]], "model_name (agentscope.models.dashscope_model.dashscopetextembeddingwrapper attribute)": [[21, "agentscope.models.dashscope_model.DashScopeTextEmbeddingWrapper.model_name", false]], "model_name (agentscope.models.gemini_model.geminichatwrapper attribute)": [[22, "agentscope.models.gemini_model.GeminiChatWrapper.model_name", false]], "model_name (agentscope.models.gemini_model.geminiembeddingwrapper attribute)": [[22, "agentscope.models.gemini_model.GeminiEmbeddingWrapper.model_name", false]], "model_name (agentscope.models.litellm_model.litellmchatwrapper attribute)": [[23, "agentscope.models.litellm_model.LiteLLMChatWrapper.model_name", false]], "model_name (agentscope.models.model.modelwrapperbase attribute)": [[24, "agentscope.models.model.ModelWrapperBase.model_name", false]], "model_name (agentscope.models.modelwrapperbase attribute)": [[20, "agentscope.models.ModelWrapperBase.model_name", false]], "model_name (agentscope.models.ollama_model.ollamachatwrapper attribute)": [[25, "agentscope.models.ollama_model.OllamaChatWrapper.model_name", false]], "model_name (agentscope.models.ollama_model.ollamaembeddingwrapper attribute)": [[25, "agentscope.models.ollama_model.OllamaEmbeddingWrapper.model_name", false]], "model_name (agentscope.models.ollama_model.ollamagenerationwrapper attribute)": [[25, "agentscope.models.ollama_model.OllamaGenerationWrapper.model_name", false]], "model_name (agentscope.models.ollama_model.ollamawrapperbase attribute)": [[25, "agentscope.models.ollama_model.OllamaWrapperBase.model_name", false]], "model_name (agentscope.models.openai_model.openaichatwrapper attribute)": [[26, "agentscope.models.openai_model.OpenAIChatWrapper.model_name", false]], "model_name (agentscope.models.openai_model.openaidallewrapper attribute)": [[26, "agentscope.models.openai_model.OpenAIDALLEWrapper.model_name", false]], "model_name (agentscope.models.openai_model.openaiembeddingwrapper attribute)": [[26, "agentscope.models.openai_model.OpenAIEmbeddingWrapper.model_name", false]], "model_name (agentscope.models.post_model.postapichatwrapper attribute)": [[27, "agentscope.models.post_model.PostAPIChatWrapper.model_name", false]], "model_name (agentscope.models.post_model.postapimodelwrapperbase attribute)": [[27, "agentscope.models.post_model.PostAPIModelWrapperBase.model_name", false]], "model_name (agentscope.models.yi_model.yichatwrapper attribute)": [[29, "agentscope.models.yi_model.YiChatWrapper.model_name", false]], "model_name (agentscope.models.zhipu_model.zhipuaichatwrapper attribute)": [[30, "agentscope.models.zhipu_model.ZhipuAIChatWrapper.model_name", false]], "model_name (agentscope.models.zhipu_model.zhipuaiembeddingwrapper attribute)": [[30, "agentscope.models.zhipu_model.ZhipuAIEmbeddingWrapper.model_name", false]], "model_type (agentscope.models.dashscope_model.dashscopechatwrapper attribute)": [[21, "agentscope.models.dashscope_model.DashScopeChatWrapper.model_type", false]], "model_type (agentscope.models.dashscope_model.dashscopeimagesynthesiswrapper attribute)": [[21, "agentscope.models.dashscope_model.DashScopeImageSynthesisWrapper.model_type", false]], "model_type (agentscope.models.dashscope_model.dashscopemultimodalwrapper attribute)": [[21, "agentscope.models.dashscope_model.DashScopeMultiModalWrapper.model_type", false]], "model_type (agentscope.models.dashscope_model.dashscopetextembeddingwrapper attribute)": [[21, "agentscope.models.dashscope_model.DashScopeTextEmbeddingWrapper.model_type", false]], "model_type (agentscope.models.dashscopechatwrapper attribute)": [[20, "agentscope.models.DashScopeChatWrapper.model_type", false]], "model_type (agentscope.models.dashscopeimagesynthesiswrapper attribute)": [[20, "agentscope.models.DashScopeImageSynthesisWrapper.model_type", false]], "model_type (agentscope.models.dashscopemultimodalwrapper attribute)": [[20, "agentscope.models.DashScopeMultiModalWrapper.model_type", false]], "model_type (agentscope.models.dashscopetextembeddingwrapper attribute)": [[20, "agentscope.models.DashScopeTextEmbeddingWrapper.model_type", false]], "model_type (agentscope.models.gemini_model.geminichatwrapper attribute)": [[22, "agentscope.models.gemini_model.GeminiChatWrapper.model_type", false]], "model_type (agentscope.models.gemini_model.geminiembeddingwrapper attribute)": [[22, "agentscope.models.gemini_model.GeminiEmbeddingWrapper.model_type", false]], "model_type (agentscope.models.geminichatwrapper attribute)": [[20, "agentscope.models.GeminiChatWrapper.model_type", false]], "model_type (agentscope.models.geminiembeddingwrapper attribute)": [[20, "agentscope.models.GeminiEmbeddingWrapper.model_type", false]], "model_type (agentscope.models.litellm_model.litellmchatwrapper attribute)": [[23, "agentscope.models.litellm_model.LiteLLMChatWrapper.model_type", false]], "model_type (agentscope.models.litellmchatwrapper attribute)": [[20, "agentscope.models.LiteLLMChatWrapper.model_type", false]], "model_type (agentscope.models.model.modelwrapperbase attribute)": [[24, "agentscope.models.model.ModelWrapperBase.model_type", false]], "model_type (agentscope.models.modelwrapperbase attribute)": [[20, "agentscope.models.ModelWrapperBase.model_type", false]], "model_type (agentscope.models.ollama_model.ollamachatwrapper attribute)": [[25, "agentscope.models.ollama_model.OllamaChatWrapper.model_type", false]], "model_type (agentscope.models.ollama_model.ollamaembeddingwrapper attribute)": [[25, "agentscope.models.ollama_model.OllamaEmbeddingWrapper.model_type", false]], "model_type (agentscope.models.ollama_model.ollamagenerationwrapper attribute)": [[25, "agentscope.models.ollama_model.OllamaGenerationWrapper.model_type", false]], "model_type (agentscope.models.ollama_model.ollamawrapperbase attribute)": [[25, "agentscope.models.ollama_model.OllamaWrapperBase.model_type", false]], "model_type (agentscope.models.ollamachatwrapper attribute)": [[20, "agentscope.models.OllamaChatWrapper.model_type", false]], "model_type (agentscope.models.ollamaembeddingwrapper attribute)": [[20, "agentscope.models.OllamaEmbeddingWrapper.model_type", false]], "model_type (agentscope.models.ollamagenerationwrapper attribute)": [[20, "agentscope.models.OllamaGenerationWrapper.model_type", false]], "model_type (agentscope.models.openai_model.openaichatwrapper attribute)": [[26, "agentscope.models.openai_model.OpenAIChatWrapper.model_type", false]], "model_type (agentscope.models.openai_model.openaidallewrapper attribute)": [[26, "agentscope.models.openai_model.OpenAIDALLEWrapper.model_type", false]], "model_type (agentscope.models.openai_model.openaiembeddingwrapper attribute)": [[26, "agentscope.models.openai_model.OpenAIEmbeddingWrapper.model_type", false]], "model_type (agentscope.models.openaichatwrapper attribute)": [[20, "agentscope.models.OpenAIChatWrapper.model_type", false]], "model_type (agentscope.models.openaidallewrapper attribute)": [[20, "agentscope.models.OpenAIDALLEWrapper.model_type", false]], "model_type (agentscope.models.openaiembeddingwrapper attribute)": [[20, "agentscope.models.OpenAIEmbeddingWrapper.model_type", false]], "model_type (agentscope.models.post_model.postapichatwrapper attribute)": [[27, "agentscope.models.post_model.PostAPIChatWrapper.model_type", false]], "model_type (agentscope.models.post_model.postapidallewrapper attribute)": [[27, "agentscope.models.post_model.PostAPIDALLEWrapper.model_type", false]], "model_type (agentscope.models.post_model.postapiembeddingwrapper attribute)": [[27, "agentscope.models.post_model.PostAPIEmbeddingWrapper.model_type", false]], "model_type (agentscope.models.post_model.postapimodelwrapperbase attribute)": [[27, "agentscope.models.post_model.PostAPIModelWrapperBase.model_type", false]], "model_type (agentscope.models.postapichatwrapper attribute)": [[20, "agentscope.models.PostAPIChatWrapper.model_type", false]], "model_type (agentscope.models.postapimodelwrapperbase attribute)": [[20, "agentscope.models.PostAPIModelWrapperBase.model_type", false]], "model_type (agentscope.models.yi_model.yichatwrapper attribute)": [[29, "agentscope.models.yi_model.YiChatWrapper.model_type", false]], "model_type (agentscope.models.yichatwrapper attribute)": [[20, "agentscope.models.YiChatWrapper.model_type", false]], "model_type (agentscope.models.zhipu_model.zhipuaichatwrapper attribute)": [[30, "agentscope.models.zhipu_model.ZhipuAIChatWrapper.model_type", false]], "model_type (agentscope.models.zhipu_model.zhipuaiembeddingwrapper attribute)": [[30, "agentscope.models.zhipu_model.ZhipuAIEmbeddingWrapper.model_type", false]], "model_type (agentscope.models.zhipuaichatwrapper attribute)": [[20, "agentscope.models.ZhipuAIChatWrapper.model_type", false]], "model_type (agentscope.models.zhipuaiembeddingwrapper attribute)": [[20, "agentscope.models.ZhipuAIEmbeddingWrapper.model_type", false]], "modelmanager (class in agentscope.manager)": [[13, "agentscope.manager.ModelManager", false]], "modelnode (class in agentscope.web.workstation.workflow_node)": [[103, "agentscope.web.workstation.workflow_node.ModelNode", false]], "modelresponse (class in agentscope.models)": [[20, "agentscope.models.ModelResponse", false]], "modelresponse (class in agentscope.models.response)": [[28, "agentscope.models.response.ModelResponse", false]], "modelwrapperbase (class in agentscope.models)": [[20, "agentscope.models.ModelWrapperBase", false]], "modelwrapperbase (class in agentscope.models.model)": [[24, "agentscope.models.model.ModelWrapperBase", false]], "module": [[0, "module-agentscope", false], [1, "module-agentscope.agents", false], [2, "module-agentscope.agents.agent", false], [3, "module-agentscope.agents.dialog_agent", false], [4, "module-agentscope.agents.dict_dialog_agent", false], [5, "module-agentscope.agents.operator", false], [6, "module-agentscope.agents.rag_agent", false], [7, "module-agentscope.agents.react_agent", false], [8, "module-agentscope.agents.rpc_agent", false], [9, "module-agentscope.agents.user_agent", false], [10, "module-agentscope.constants", false], [11, "module-agentscope.exception", false], [12, "module-agentscope.logging", false], [13, "module-agentscope.manager", false], [14, "module-agentscope.memory", false], [15, "module-agentscope.memory.memory", false], [16, "module-agentscope.memory.temporary_memory", false], [17, "module-agentscope.message", false], [18, "module-agentscope.message.msg", false], [19, "module-agentscope.message.placeholder", false], [20, "module-agentscope.models", false], [21, "module-agentscope.models.dashscope_model", false], [22, "module-agentscope.models.gemini_model", false], [23, "module-agentscope.models.litellm_model", false], [24, "module-agentscope.models.model", false], [25, "module-agentscope.models.ollama_model", false], [26, "module-agentscope.models.openai_model", false], [27, "module-agentscope.models.post_model", false], [28, "module-agentscope.models.response", false], [29, "module-agentscope.models.yi_model", false], [30, "module-agentscope.models.zhipu_model", false], [31, "module-agentscope.msghub", false], [32, "module-agentscope.parsers", false], [33, "module-agentscope.parsers.code_block_parser", false], [34, "module-agentscope.parsers.json_object_parser", false], [35, "module-agentscope.parsers.parser_base", false], [36, "module-agentscope.parsers.regex_tagged_content_parser", false], [37, "module-agentscope.parsers.tagged_content_parser", false], [38, "module-agentscope.pipelines", false], [39, "module-agentscope.pipelines.functional", false], [40, "module-agentscope.pipelines.pipeline", false], [41, "module-agentscope.prompt", false], [42, "module-agentscope.rag", false], [43, "module-agentscope.rag.knowledge", false], [44, "module-agentscope.rag.knowledge_bank", false], [45, "module-agentscope.rag.llama_index_knowledge", false], [46, "module-agentscope.rpc", false], [47, "module-agentscope.rpc.rpc_agent_client", false], [48, "module-agentscope.rpc.rpc_agent_pb2", false], [49, "module-agentscope.rpc.rpc_agent_pb2_grpc", false], [50, "module-agentscope.serialize", false], [51, "module-agentscope.server", false], [52, "module-agentscope.server.launcher", false], [53, "module-agentscope.server.servicer", false], [54, "module-agentscope.service", false], [55, "module-agentscope.service.browser", false], [56, "module-agentscope.service.browser.web_browser", false], [57, "module-agentscope.service.execute_code", false], [58, "module-agentscope.service.execute_code.exec_notebook", false], [59, "module-agentscope.service.execute_code.exec_python", false], [60, "module-agentscope.service.execute_code.exec_shell", false], [61, "module-agentscope.service.file", false], [62, "module-agentscope.service.file.common", false], [63, "module-agentscope.service.file.json", false], [64, "module-agentscope.service.file.text", false], [65, "module-agentscope.service.multi_modality", false], [66, "module-agentscope.service.multi_modality.dashscope_services", false], [67, "module-agentscope.service.multi_modality.openai_services", false], [68, "module-agentscope.service.retrieval", false], [69, "module-agentscope.service.retrieval.retrieval_from_list", false], [70, "module-agentscope.service.retrieval.similarity", false], [71, "module-agentscope.service.service_response", false], [72, "module-agentscope.service.service_status", false], [73, "module-agentscope.service.service_toolkit", false], [74, "module-agentscope.service.sql_query", false], [75, "module-agentscope.service.sql_query.mongodb", false], [76, "module-agentscope.service.sql_query.mysql", false], [77, "module-agentscope.service.sql_query.sqlite", false], [78, "module-agentscope.service.text_processing", false], [79, "module-agentscope.service.text_processing.summarization", false], [80, "module-agentscope.service.web", false], [81, "module-agentscope.service.web.arxiv", false], [82, "module-agentscope.service.web.dblp", false], [83, "module-agentscope.service.web.download", false], [84, "module-agentscope.service.web.search", false], [85, "module-agentscope.service.web.tripadvisor", false], [86, "module-agentscope.service.web.web_digest", false], [87, "module-agentscope.service.web.wikipedia", false], [88, "module-agentscope.strategy", false], [89, "module-agentscope.strategy.mixture_of_agent", false], [90, "module-agentscope.studio", false], [91, "module-agentscope.studio.utils", false], [92, "module-agentscope.utils", false], [93, "module-agentscope.utils.common", false], [94, "module-agentscope.utils.token_utils", false], [95, "module-agentscope.web", false], [96, "module-agentscope.web.gradio", false], [97, "module-agentscope.web.gradio.constants", false], [98, "module-agentscope.web.gradio.studio", false], [99, "module-agentscope.web.gradio.utils", false], [100, "module-agentscope.web.workstation", false], [101, "module-agentscope.web.workstation.workflow", false], [102, "module-agentscope.web.workstation.workflow_dag", false], [103, "module-agentscope.web.workstation.workflow_node", false], [104, "module-agentscope.web.workstation.workflow_utils", false]], "monitormanager (class in agentscope.manager)": [[13, "agentscope.manager.MonitorManager", false]], "move_directory() (in module agentscope.service)": [[54, "agentscope.service.move_directory", false]], "move_directory() (in module agentscope.service.file.common)": [[62, "agentscope.service.file.common.move_directory", false]], "move_file() (in module agentscope.service)": [[54, "agentscope.service.move_file", false]], "move_file() (in module agentscope.service.file.common)": [[62, "agentscope.service.file.common.move_file", false]], "msg (class in agentscope.message)": [[17, "agentscope.message.Msg", false]], "msg (class in agentscope.message.msg)": [[18, "agentscope.message.msg.Msg", false]], "msghub() (in module agentscope)": [[0, "agentscope.msghub", false]], "msghub() (in module agentscope.msghub)": [[31, "agentscope.msghub.msghub", false]], "msghubmanager (class in agentscope.msghub)": [[31, "agentscope.msghub.MsgHubManager", false]], "msghubnode (class in agentscope.web.workstation.workflow_node)": [[103, "agentscope.web.workstation.workflow_node.MsgHubNode", false]], "msgnode (class in agentscope.web.workstation.workflow_node)": [[103, "agentscope.web.workstation.workflow_node.MsgNode", false]], "multitaggedcontentparser (class in agentscope.parsers)": [[32, "agentscope.parsers.MultiTaggedContentParser", false]], "multitaggedcontentparser (class in agentscope.parsers.tagged_content_parser)": [[37, "agentscope.parsers.tagged_content_parser.MultiTaggedContentParser", false]], "name (agentscope.message.msg property)": [[17, "agentscope.message.Msg.name", false]], "name (agentscope.message.msg.msg property)": [[18, "agentscope.message.msg.Msg.name", false]], "name (agentscope.message.placeholder.placeholdermessage property)": [[19, "agentscope.message.placeholder.PlaceholderMessage.name", false]], "name (agentscope.message.placeholdermessage property)": [[17, "agentscope.message.PlaceholderMessage.name", false]], "name (agentscope.parsers.code_block_parser.markdowncodeblockparser attribute)": [[33, "agentscope.parsers.code_block_parser.MarkdownCodeBlockParser.name", false]], "name (agentscope.parsers.json_object_parser.markdownjsondictparser attribute)": [[34, "agentscope.parsers.json_object_parser.MarkdownJsonDictParser.name", false]], "name (agentscope.parsers.json_object_parser.markdownjsonobjectparser attribute)": [[34, "agentscope.parsers.json_object_parser.MarkdownJsonObjectParser.name", false]], "name (agentscope.parsers.markdowncodeblockparser attribute)": [[32, "agentscope.parsers.MarkdownCodeBlockParser.name", false]], "name (agentscope.parsers.markdownjsondictparser attribute)": [[32, "agentscope.parsers.MarkdownJsonDictParser.name", false]], "name (agentscope.parsers.markdownjsonobjectparser attribute)": [[32, "agentscope.parsers.MarkdownJsonObjectParser.name", false]], "name (agentscope.parsers.tagged_content_parser.taggedcontent attribute)": [[37, "agentscope.parsers.tagged_content_parser.TaggedContent.name", false]], "name (agentscope.parsers.taggedcontent attribute)": [[32, "agentscope.parsers.TaggedContent.name", false]], "name (agentscope.service.service_toolkit.servicefunction attribute)": [[73, "agentscope.service.service_toolkit.ServiceFunction.name", false]], "node_name (agentscope.service.browser.web_browser.webelementinfo attribute)": [[56, "agentscope.service.browser.web_browser.WebElementInfo.node_name", false]], "node_name (agentscope.service.webelementinfo attribute)": [[54, "agentscope.service.WebElementInfo.node_name", false]], "node_type (agentscope.web.workstation.workflow_node.bingsearchservicenode attribute)": [[103, "agentscope.web.workstation.workflow_node.BingSearchServiceNode.node_type", false]], "node_type (agentscope.web.workstation.workflow_node.copynode attribute)": [[103, "agentscope.web.workstation.workflow_node.CopyNode.node_type", false]], "node_type (agentscope.web.workstation.workflow_node.dialogagentnode attribute)": [[103, "agentscope.web.workstation.workflow_node.DialogAgentNode.node_type", false]], "node_type (agentscope.web.workstation.workflow_node.dictdialogagentnode attribute)": [[103, "agentscope.web.workstation.workflow_node.DictDialogAgentNode.node_type", false]], "node_type (agentscope.web.workstation.workflow_node.forlooppipelinenode attribute)": [[103, "agentscope.web.workstation.workflow_node.ForLoopPipelineNode.node_type", false]], "node_type (agentscope.web.workstation.workflow_node.googlesearchservicenode attribute)": [[103, "agentscope.web.workstation.workflow_node.GoogleSearchServiceNode.node_type", false]], "node_type (agentscope.web.workstation.workflow_node.ifelsepipelinenode attribute)": [[103, "agentscope.web.workstation.workflow_node.IfElsePipelineNode.node_type", false]], "node_type (agentscope.web.workstation.workflow_node.modelnode attribute)": [[103, "agentscope.web.workstation.workflow_node.ModelNode.node_type", false]], "node_type (agentscope.web.workstation.workflow_node.msghubnode attribute)": [[103, "agentscope.web.workstation.workflow_node.MsgHubNode.node_type", false]], "node_type (agentscope.web.workstation.workflow_node.msgnode attribute)": [[103, "agentscope.web.workstation.workflow_node.MsgNode.node_type", false]], "node_type (agentscope.web.workstation.workflow_node.placeholdernode attribute)": [[103, "agentscope.web.workstation.workflow_node.PlaceHolderNode.node_type", false]], "node_type (agentscope.web.workstation.workflow_node.pythonservicenode attribute)": [[103, "agentscope.web.workstation.workflow_node.PythonServiceNode.node_type", false]], "node_type (agentscope.web.workstation.workflow_node.reactagentnode attribute)": [[103, "agentscope.web.workstation.workflow_node.ReActAgentNode.node_type", false]], "node_type (agentscope.web.workstation.workflow_node.readtextservicenode attribute)": [[103, "agentscope.web.workstation.workflow_node.ReadTextServiceNode.node_type", false]], "node_type (agentscope.web.workstation.workflow_node.sequentialpipelinenode attribute)": [[103, "agentscope.web.workstation.workflow_node.SequentialPipelineNode.node_type", false]], "node_type (agentscope.web.workstation.workflow_node.switchpipelinenode attribute)": [[103, "agentscope.web.workstation.workflow_node.SwitchPipelineNode.node_type", false]], "node_type (agentscope.web.workstation.workflow_node.useragentnode attribute)": [[103, "agentscope.web.workstation.workflow_node.UserAgentNode.node_type", false]], "node_type (agentscope.web.workstation.workflow_node.whilelooppipelinenode attribute)": [[103, "agentscope.web.workstation.workflow_node.WhileLoopPipelineNode.node_type", false]], "node_type (agentscope.web.workstation.workflow_node.workflownode attribute)": [[103, "agentscope.web.workstation.workflow_node.WorkflowNode.node_type", false]], "node_type (agentscope.web.workstation.workflow_node.writetextservicenode attribute)": [[103, "agentscope.web.workstation.workflow_node.WriteTextServiceNode.node_type", false]], "node_value (agentscope.service.browser.web_browser.webelementinfo attribute)": [[56, "agentscope.service.browser.web_browser.WebElementInfo.node_value", false]], "node_value (agentscope.service.webelementinfo attribute)": [[54, "agentscope.service.WebElementInfo.node_value", false]], "nodes_not_in_graph (agentscope.web.workstation.workflow_dag.asdigraph attribute)": [[102, "agentscope.web.workstation.workflow_dag.ASDiGraph.nodes_not_in_graph", false]], "none (agentscope.constants.responseformat attribute)": [[10, "agentscope.constants.ResponseFormat.NONE", false]], "notebookexecutor (class in agentscope.service)": [[54, "agentscope.service.NoteBookExecutor", false]], "notebookexecutor (class in agentscope.service.execute_code.exec_notebook)": [[58, "agentscope.service.execute_code.exec_notebook.NoteBookExecutor", false]], "num_tokens_from_content() (in module agentscope.utils.token_utils)": [[94, "agentscope.utils.token_utils.num_tokens_from_content", false]], "observe() (agentscope.agents.agent.agentbase method)": [[2, "agentscope.agents.agent.AgentBase.observe", false]], "observe() (agentscope.agents.agentbase method)": [[1, "agentscope.agents.AgentBase.observe", false]], "observe() (agentscope.agents.rpc_agent.rpcagent method)": [[8, "agentscope.agents.rpc_agent.RpcAgent.observe", false]], "observe() (agentscope.agents.rpcagent method)": [[1, "agentscope.agents.RpcAgent.observe", false]], "ollamachatwrapper (class in agentscope.models)": [[20, "agentscope.models.OllamaChatWrapper", false]], "ollamachatwrapper (class in agentscope.models.ollama_model)": [[25, "agentscope.models.ollama_model.OllamaChatWrapper", false]], "ollamaembeddingwrapper (class in agentscope.models)": [[20, "agentscope.models.OllamaEmbeddingWrapper", false]], "ollamaembeddingwrapper (class in agentscope.models.ollama_model)": [[25, "agentscope.models.ollama_model.OllamaEmbeddingWrapper", false]], "ollamagenerationwrapper (class in agentscope.models)": [[20, "agentscope.models.OllamaGenerationWrapper", false]], "ollamagenerationwrapper (class in agentscope.models.ollama_model)": [[25, "agentscope.models.ollama_model.OllamaGenerationWrapper", false]], "ollamawrapperbase (class in agentscope.models.ollama_model)": [[25, "agentscope.models.ollama_model.OllamaWrapperBase", false]], "openai_audio_to_text() (in module agentscope.service)": [[54, "agentscope.service.openai_audio_to_text", false]], "openai_audio_to_text() (in module agentscope.service.multi_modality.openai_services)": [[67, "agentscope.service.multi_modality.openai_services.openai_audio_to_text", false]], "openai_create_image_variation() (in module agentscope.service)": [[54, "agentscope.service.openai_create_image_variation", false]], "openai_create_image_variation() (in module agentscope.service.multi_modality.openai_services)": [[67, "agentscope.service.multi_modality.openai_services.openai_create_image_variation", false]], "openai_edit_image() (in module agentscope.service)": [[54, "agentscope.service.openai_edit_image", false]], "openai_edit_image() (in module agentscope.service.multi_modality.openai_services)": [[67, "agentscope.service.multi_modality.openai_services.openai_edit_image", false]], "openai_image_to_text() (in module agentscope.service)": [[54, "agentscope.service.openai_image_to_text", false]], "openai_image_to_text() (in module agentscope.service.multi_modality.openai_services)": [[67, "agentscope.service.multi_modality.openai_services.openai_image_to_text", false]], "openai_text_to_audio() (in module agentscope.service)": [[54, "agentscope.service.openai_text_to_audio", false]], "openai_text_to_audio() (in module agentscope.service.multi_modality.openai_services)": [[67, "agentscope.service.multi_modality.openai_services.openai_text_to_audio", false]], "openai_text_to_image() (in module agentscope.service)": [[54, "agentscope.service.openai_text_to_image", false]], "openai_text_to_image() (in module agentscope.service.multi_modality.openai_services)": [[67, "agentscope.service.multi_modality.openai_services.openai_text_to_image", false]], "openaichatwrapper (class in agentscope.models)": [[20, "agentscope.models.OpenAIChatWrapper", false]], "openaichatwrapper (class in agentscope.models.openai_model)": [[26, "agentscope.models.openai_model.OpenAIChatWrapper", false]], "openaidallewrapper (class in agentscope.models)": [[20, "agentscope.models.OpenAIDALLEWrapper", false]], "openaidallewrapper (class in agentscope.models.openai_model)": [[26, "agentscope.models.openai_model.OpenAIDALLEWrapper", false]], "openaiembeddingwrapper (class in agentscope.models)": [[20, "agentscope.models.OpenAIEmbeddingWrapper", false]], "openaiembeddingwrapper (class in agentscope.models.openai_model)": [[26, "agentscope.models.openai_model.OpenAIEmbeddingWrapper", false]], "openaiwrapperbase (class in agentscope.models)": [[20, "agentscope.models.OpenAIWrapperBase", false]], "openaiwrapperbase (class in agentscope.models.openai_model)": [[26, "agentscope.models.openai_model.OpenAIWrapperBase", false]], "operator (class in agentscope.agents)": [[1, "agentscope.agents.Operator", false]], "operator (class in agentscope.agents.operator)": [[5, "agentscope.agents.operator.Operator", false]], "options (agentscope.models.ollama_model.ollamachatwrapper attribute)": [[25, "agentscope.models.ollama_model.OllamaChatWrapper.options", false]], "options (agentscope.models.ollama_model.ollamaembeddingwrapper attribute)": [[25, "agentscope.models.ollama_model.OllamaEmbeddingWrapper.options", false]], "options (agentscope.models.ollama_model.ollamagenerationwrapper attribute)": [[25, "agentscope.models.ollama_model.OllamaGenerationWrapper.options", false]], "options (agentscope.models.ollama_model.ollamawrapperbase attribute)": [[25, "agentscope.models.ollama_model.OllamaWrapperBase.options", false]], "origin_x (agentscope.service.browser.web_browser.webelementinfo attribute)": [[56, "agentscope.service.browser.web_browser.WebElementInfo.origin_x", false]], "origin_x (agentscope.service.webelementinfo attribute)": [[54, "agentscope.service.WebElementInfo.origin_x", false]], "origin_y (agentscope.service.browser.web_browser.webelementinfo attribute)": [[56, "agentscope.service.browser.web_browser.WebElementInfo.origin_y", false]], "origin_y (agentscope.service.webelementinfo attribute)": [[54, "agentscope.service.WebElementInfo.origin_y", false]], "original_func (agentscope.service.service_toolkit.servicefunction attribute)": [[73, "agentscope.service.service_toolkit.ServiceFunction.original_func", false]], "page_html (agentscope.service.browser.web_browser.webbrowser property)": [[56, "agentscope.service.browser.web_browser.WebBrowser.page_html", false]], "page_html (agentscope.service.webbrowser property)": [[54, "agentscope.service.WebBrowser.page_html", false]], "page_markdown (agentscope.service.browser.web_browser.webbrowser property)": [[56, "agentscope.service.browser.web_browser.WebBrowser.page_markdown", false]], "page_markdown (agentscope.service.webbrowser property)": [[54, "agentscope.service.WebBrowser.page_markdown", false]], "page_screenshot (agentscope.service.browser.web_browser.webbrowser property)": [[56, "agentscope.service.browser.web_browser.WebBrowser.page_screenshot", false]], "page_screenshot (agentscope.service.webbrowser property)": [[54, "agentscope.service.WebBrowser.page_screenshot", false]], "page_title (agentscope.service.browser.web_browser.webbrowser property)": [[56, "agentscope.service.browser.web_browser.WebBrowser.page_title", false]], "page_title (agentscope.service.webbrowser property)": [[54, "agentscope.service.WebBrowser.page_title", false]], "parse() (agentscope.parsers.code_block_parser.markdowncodeblockparser method)": [[33, "agentscope.parsers.code_block_parser.MarkdownCodeBlockParser.parse", false]], "parse() (agentscope.parsers.json_object_parser.markdownjsondictparser method)": [[34, "agentscope.parsers.json_object_parser.MarkdownJsonDictParser.parse", false]], "parse() (agentscope.parsers.json_object_parser.markdownjsonobjectparser method)": [[34, "agentscope.parsers.json_object_parser.MarkdownJsonObjectParser.parse", false]], "parse() (agentscope.parsers.markdowncodeblockparser method)": [[32, "agentscope.parsers.MarkdownCodeBlockParser.parse", false]], "parse() (agentscope.parsers.markdownjsondictparser method)": [[32, "agentscope.parsers.MarkdownJsonDictParser.parse", false]], "parse() (agentscope.parsers.markdownjsonobjectparser method)": [[32, "agentscope.parsers.MarkdownJsonObjectParser.parse", false]], "parse() (agentscope.parsers.multitaggedcontentparser method)": [[32, "agentscope.parsers.MultiTaggedContentParser.parse", false]], "parse() (agentscope.parsers.parser_base.parserbase method)": [[35, "agentscope.parsers.parser_base.ParserBase.parse", false]], "parse() (agentscope.parsers.parserbase method)": [[32, "agentscope.parsers.ParserBase.parse", false]], "parse() (agentscope.parsers.regex_tagged_content_parser.regextaggedcontentparser method)": [[36, "agentscope.parsers.regex_tagged_content_parser.RegexTaggedContentParser.parse", false]], "parse() (agentscope.parsers.regextaggedcontentparser method)": [[32, "agentscope.parsers.RegexTaggedContentParser.parse", false]], "parse() (agentscope.parsers.tagged_content_parser.multitaggedcontentparser method)": [[37, "agentscope.parsers.tagged_content_parser.MultiTaggedContentParser.parse", false]], "parse_and_call_func() (agentscope.service.service_toolkit.servicetoolkit method)": [[73, "agentscope.service.service_toolkit.ServiceToolkit.parse_and_call_func", false]], "parse_and_call_func() (agentscope.service.servicetoolkit method)": [[54, "agentscope.service.ServiceToolkit.parse_and_call_func", false]], "parse_html_to_text() (in module agentscope.service)": [[54, "agentscope.service.parse_html_to_text", false]], "parse_html_to_text() (in module agentscope.service.web.web_digest)": [[86, "agentscope.service.web.web_digest.parse_html_to_text", false]], "parse_json (agentscope.parsers.tagged_content_parser.taggedcontent attribute)": [[37, "agentscope.parsers.tagged_content_parser.TaggedContent.parse_json", false]], "parse_json (agentscope.parsers.taggedcontent attribute)": [[32, "agentscope.parsers.TaggedContent.parse_json", false]], "parserbase (class in agentscope.parsers)": [[32, "agentscope.parsers.ParserBase", false]], "parserbase (class in agentscope.parsers.parser_base)": [[35, "agentscope.parsers.parser_base.ParserBase", false]], "path_db (agentscope.manager.monitormanager property)": [[13, "agentscope.manager.MonitorManager.path_db", false]], "pipeline (agentscope.web.workstation.workflow_node.workflownodetype attribute)": [[103, "agentscope.web.workstation.workflow_node.WorkflowNodeType.PIPELINE", false]], "pipelinebase (class in agentscope.pipelines)": [[38, "agentscope.pipelines.PipelineBase", false]], "pipelinebase (class in agentscope.pipelines.pipeline)": [[40, "agentscope.pipelines.pipeline.PipelineBase", false]], "placeholder() (in module agentscope.pipelines.functional)": [[39, "agentscope.pipelines.functional.placeholder", false]], "placeholdermessage (class in agentscope.message)": [[17, "agentscope.message.PlaceholderMessage", false]], "placeholdermessage (class in agentscope.message.placeholder)": [[19, "agentscope.message.placeholder.PlaceholderMessage", false]], "placeholdernode (class in agentscope.web.workstation.workflow_node)": [[103, "agentscope.web.workstation.workflow_node.PlaceHolderNode", false]], "port (agentscope.exception.agentservererror attribute)": [[11, "agentscope.exception.AgentServerError.port", false]], "post_processing() (agentscope.rag.knowledge method)": [[42, "agentscope.rag.Knowledge.post_processing", false]], "post_processing() (agentscope.rag.knowledge.knowledge method)": [[43, "agentscope.rag.knowledge.Knowledge.post_processing", false]], "postapichatwrapper (class in agentscope.models)": [[20, "agentscope.models.PostAPIChatWrapper", false]], "postapichatwrapper (class in agentscope.models.post_model)": [[27, "agentscope.models.post_model.PostAPIChatWrapper", false]], "postapidallewrapper (class in agentscope.models.post_model)": [[27, "agentscope.models.post_model.PostAPIDALLEWrapper", false]], "postapiembeddingwrapper (class in agentscope.models.post_model)": [[27, "agentscope.models.post_model.PostAPIEmbeddingWrapper", false]], "postapimodelwrapperbase (class in agentscope.models)": [[20, "agentscope.models.PostAPIModelWrapperBase", false]], "postapimodelwrapperbase (class in agentscope.models.post_model)": [[27, "agentscope.models.post_model.PostAPIModelWrapperBase", false]], "print_llm_usage() (agentscope.manager.monitormanager method)": [[13, "agentscope.manager.MonitorManager.print_llm_usage", false]], "print_llm_usage() (in module agentscope)": [[0, "agentscope.print_llm_usage", false]], "processed_func (agentscope.service.service_toolkit.servicefunction attribute)": [[73, "agentscope.service.service_toolkit.ServiceFunction.processed_func", false]], "pythonservicenode (class in agentscope.web.workstation.workflow_node)": [[103, "agentscope.web.workstation.workflow_node.PythonServiceNode", false]], "query_mongodb() (in module agentscope.service)": [[54, "agentscope.service.query_mongodb", false]], "query_mongodb() (in module agentscope.service.sql_query.mongodb)": [[75, "agentscope.service.sql_query.mongodb.query_mongodb", false]], "query_mysql() (in module agentscope.service)": [[54, "agentscope.service.query_mysql", false]], "query_mysql() (in module agentscope.service.sql_query.mysql)": [[76, "agentscope.service.sql_query.mysql.query_mysql", false]], "query_sqlite() (in module agentscope.service)": [[54, "agentscope.service.query_sqlite", false]], "query_sqlite() (in module agentscope.service.sql_query.sqlite)": [[77, "agentscope.service.sql_query.sqlite.query_sqlite", false]], "quotaexceedederror": [[11, "agentscope.exception.QuotaExceededError", false]], "raw_response (agentscope.exception.responseparsingerror attribute)": [[11, "agentscope.exception.ResponseParsingError.raw_response", false]], "reactagent (class in agentscope.agents)": [[1, "agentscope.agents.ReActAgent", false]], "reactagent (class in agentscope.agents.react_agent)": [[7, "agentscope.agents.react_agent.ReActAgent", false]], "reactagentnode (class in agentscope.web.workstation.workflow_node)": [[103, "agentscope.web.workstation.workflow_node.ReActAgentNode", false]], "read_json_file() (in module agentscope.service)": [[54, "agentscope.service.read_json_file", false]], "read_json_file() (in module agentscope.service.file.json)": [[63, "agentscope.service.file.json.read_json_file", false]], "read_text_file() (in module agentscope.service)": [[54, "agentscope.service.read_text_file", false]], "read_text_file() (in module agentscope.service.file.text)": [[64, "agentscope.service.file.text.read_text_file", false]], "readtextservicenode (class in agentscope.web.workstation.workflow_node)": [[103, "agentscope.web.workstation.workflow_node.ReadTextServiceNode", false]], "refresh_index() (agentscope.rag.llama_index_knowledge.llamaindexknowledge method)": [[45, "agentscope.rag.llama_index_knowledge.LlamaIndexKnowledge.refresh_index", false]], "regextaggedcontentparser (class in agentscope.parsers)": [[32, "agentscope.parsers.RegexTaggedContentParser", false]], "regextaggedcontentparser (class in agentscope.parsers.regex_tagged_content_parser)": [[36, "agentscope.parsers.regex_tagged_content_parser.RegexTaggedContentParser", false]], "register_agent_class() (agentscope.agents.agent.agentbase class method)": [[2, "agentscope.agents.agent.AgentBase.register_agent_class", false]], "register_agent_class() (agentscope.agents.agentbase class method)": [[1, "agentscope.agents.AgentBase.register_agent_class", false]], "remove_duplicates_from_end() (in module agentscope.web.workstation.workflow_dag)": [[102, "agentscope.web.workstation.workflow_dag.remove_duplicates_from_end", false]], "remove_interactive_marks() (agentscope.service.browser.web_browser.webbrowser method)": [[56, "agentscope.service.browser.web_browser.WebBrowser.remove_interactive_marks", false]], "remove_interactive_marks() (agentscope.service.webbrowser method)": [[54, "agentscope.service.WebBrowser.remove_interactive_marks", false]], "reply() (agentscope.agents.agent.agentbase method)": [[2, "agentscope.agents.agent.AgentBase.reply", false]], "reply() (agentscope.agents.agentbase method)": [[1, "agentscope.agents.AgentBase.reply", false]], "reply() (agentscope.agents.dialog_agent.dialogagent method)": [[3, "agentscope.agents.dialog_agent.DialogAgent.reply", false]], "reply() (agentscope.agents.dialogagent method)": [[1, "agentscope.agents.DialogAgent.reply", false]], "reply() (agentscope.agents.dict_dialog_agent.dictdialogagent method)": [[4, "agentscope.agents.dict_dialog_agent.DictDialogAgent.reply", false]], "reply() (agentscope.agents.dictdialogagent method)": [[1, "agentscope.agents.DictDialogAgent.reply", false]], "reply() (agentscope.agents.llamaindexagent method)": [[1, "agentscope.agents.LlamaIndexAgent.reply", false]], "reply() (agentscope.agents.rag_agent.llamaindexagent method)": [[6, "agentscope.agents.rag_agent.LlamaIndexAgent.reply", false]], "reply() (agentscope.agents.react_agent.reactagent method)": [[7, "agentscope.agents.react_agent.ReActAgent.reply", false]], "reply() (agentscope.agents.reactagent method)": [[1, "agentscope.agents.ReActAgent.reply", false]], "reply() (agentscope.agents.rpc_agent.rpcagent method)": [[8, "agentscope.agents.rpc_agent.RpcAgent.reply", false]], "reply() (agentscope.agents.rpcagent method)": [[1, "agentscope.agents.RpcAgent.reply", false]], "reply() (agentscope.agents.user_agent.useragent method)": [[9, "agentscope.agents.user_agent.UserAgent.reply", false]], "reply() (agentscope.agents.useragent method)": [[1, "agentscope.agents.UserAgent.reply", false]], "require_args (agentscope.service.service_toolkit.servicefunction attribute)": [[73, "agentscope.service.service_toolkit.ServiceFunction.require_args", false]], "required_keys (agentscope.parsers.json_object_parser.markdownjsondictparser attribute)": [[34, "agentscope.parsers.json_object_parser.MarkdownJsonDictParser.required_keys", false]], "required_keys (agentscope.parsers.markdownjsondictparser attribute)": [[32, "agentscope.parsers.MarkdownJsonDictParser.required_keys", false]], "requiredfieldnotfounderror": [[11, "agentscope.exception.RequiredFieldNotFoundError", false]], "reset_audience() (agentscope.agents.agent.agentbase method)": [[2, "agentscope.agents.agent.AgentBase.reset_audience", false]], "reset_audience() (agentscope.agents.agentbase method)": [[1, "agentscope.agents.AgentBase.reset_audience", false]], "reset_glb_var() (in module agentscope.web.gradio.studio)": [[98, "agentscope.web.gradio.studio.reset_glb_var", false]], "reset_notebook() (agentscope.service.execute_code.exec_notebook.notebookexecutor method)": [[58, "agentscope.service.execute_code.exec_notebook.NoteBookExecutor.reset_notebook", false]], "reset_notebook() (agentscope.service.notebookexecutor method)": [[54, "agentscope.service.NoteBookExecutor.reset_notebook", false]], "resetexception": [[99, "agentscope.web.gradio.utils.ResetException", false]], "responseformat (class in agentscope.constants)": [[10, "agentscope.constants.ResponseFormat", false]], "responseparsingerror": [[11, "agentscope.exception.ResponseParsingError", false]], "responsestub (class in agentscope.rpc)": [[46, "agentscope.rpc.ResponseStub", false]], "responsestub (class in agentscope.rpc.rpc_agent_client)": [[47, "agentscope.rpc.rpc_agent_client.ResponseStub", false]], "retrieve() (agentscope.rag.knowledge method)": [[42, "agentscope.rag.Knowledge.retrieve", false]], "retrieve() (agentscope.rag.knowledge.knowledge method)": [[43, "agentscope.rag.knowledge.Knowledge.retrieve", false]], "retrieve() (agentscope.rag.llama_index_knowledge.llamaindexknowledge method)": [[45, "agentscope.rag.llama_index_knowledge.LlamaIndexKnowledge.retrieve", false]], "retrieve_by_embedding() (agentscope.memory.temporary_memory.temporarymemory method)": [[16, "agentscope.memory.temporary_memory.TemporaryMemory.retrieve_by_embedding", false]], "retrieve_by_embedding() (agentscope.memory.temporarymemory method)": [[14, "agentscope.memory.TemporaryMemory.retrieve_by_embedding", false]], "retrieve_from_list() (in module agentscope.service)": [[54, "agentscope.service.retrieve_from_list", false]], "retrieve_from_list() (in module agentscope.service.retrieval.retrieval_from_list)": [[69, "agentscope.service.retrieval.retrieval_from_list.retrieve_from_list", false]], "rm_audience() (agentscope.agents.agent.agentbase method)": [[2, "agentscope.agents.agent.AgentBase.rm_audience", false]], "rm_audience() (agentscope.agents.agentbase method)": [[1, "agentscope.agents.AgentBase.rm_audience", false]], "rm_database() (agentscope.manager.monitormanager method)": [[13, "agentscope.manager.MonitorManager.rm_database", false]], "role (agentscope.message.msg property)": [[17, "agentscope.message.Msg.role", false]], "role (agentscope.message.msg.msg property)": [[18, "agentscope.message.msg.Msg.role", false]], "role (agentscope.message.placeholder.placeholdermessage property)": [[19, "agentscope.message.placeholder.PlaceholderMessage.role", false]], "role (agentscope.message.placeholdermessage property)": [[17, "agentscope.message.PlaceholderMessage.role", false]], "rpcagent (class in agentscope.agents)": [[1, "agentscope.agents.RpcAgent", false]], "rpcagent (class in agentscope.agents.rpc_agent)": [[8, "agentscope.agents.rpc_agent.RpcAgent", false]], "rpcagent (class in agentscope.rpc.rpc_agent_pb2_grpc)": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgent", false]], "rpcagentclient (class in agentscope.rpc)": [[46, "agentscope.rpc.RpcAgentClient", false]], "rpcagentclient (class in agentscope.rpc.rpc_agent_client)": [[47, "agentscope.rpc.rpc_agent_client.RpcAgentClient", false]], "rpcagentserverlauncher (class in agentscope.server)": [[51, "agentscope.server.RpcAgentServerLauncher", false]], "rpcagentserverlauncher (class in agentscope.server.launcher)": [[52, "agentscope.server.launcher.RpcAgentServerLauncher", false]], "rpcagentservicer (class in agentscope.rpc)": [[46, "agentscope.rpc.RpcAgentServicer", false]], "rpcagentservicer (class in agentscope.rpc.rpc_agent_pb2_grpc)": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgentServicer", false]], "rpcagentstub (class in agentscope.rpc)": [[46, "agentscope.rpc.RpcAgentStub", false]], "rpcagentstub (class in agentscope.rpc.rpc_agent_pb2_grpc)": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgentStub", false]], "rpcmsg (class in agentscope.rpc)": [[46, "agentscope.rpc.RpcMsg", false]], "run() (agentscope.web.workstation.workflow_dag.asdigraph method)": [[102, "agentscope.web.workstation.workflow_dag.ASDiGraph.run", false]], "run_app() (in module agentscope.web.gradio.studio)": [[98, "agentscope.web.gradio.studio.run_app", false]], "run_code_on_notebook() (agentscope.service.execute_code.exec_notebook.notebookexecutor method)": [[58, "agentscope.service.execute_code.exec_notebook.NoteBookExecutor.run_code_on_notebook", false]], "run_code_on_notebook() (agentscope.service.notebookexecutor method)": [[54, "agentscope.service.NoteBookExecutor.run_code_on_notebook", false]], "sanitize_node_data() (in module agentscope.web.workstation.workflow_dag)": [[102, "agentscope.web.workstation.workflow_dag.sanitize_node_data", false]], "save_api_invocation() (agentscope.manager.filemanager method)": [[13, "agentscope.manager.FileManager.save_api_invocation", false]], "save_file() (agentscope.manager.filemanager method)": [[13, "agentscope.manager.FileManager.save_file", false]], "save_image() (agentscope.manager.filemanager method)": [[13, "agentscope.manager.FileManager.save_image", false]], "save_python_code() (agentscope.manager.filemanager method)": [[13, "agentscope.manager.FileManager.save_python_code", false]], "save_runtime_information() (agentscope.manager.filemanager method)": [[13, "agentscope.manager.FileManager.save_runtime_information", false]], "send_audio() (in module agentscope.web.gradio.studio)": [[98, "agentscope.web.gradio.studio.send_audio", false]], "send_image() (in module agentscope.web.gradio.studio)": [[98, "agentscope.web.gradio.studio.send_image", false]], "send_message() (in module agentscope.web.gradio.studio)": [[98, "agentscope.web.gradio.studio.send_message", false]], "send_msg() (in module agentscope.web.gradio.utils)": [[99, "agentscope.web.gradio.utils.send_msg", false]], "send_player_input() (in module agentscope.web.gradio.utils)": [[99, "agentscope.web.gradio.utils.send_player_input", false]], "send_reset_msg() (in module agentscope.web.gradio.utils)": [[99, "agentscope.web.gradio.utils.send_reset_msg", false]], "sequentialpipeline (class in agentscope.pipelines)": [[38, "agentscope.pipelines.SequentialPipeline", false]], "sequentialpipeline (class in agentscope.pipelines.pipeline)": [[40, "agentscope.pipelines.pipeline.SequentialPipeline", false]], "sequentialpipeline() (in module agentscope.pipelines)": [[38, "agentscope.pipelines.sequentialpipeline", false]], "sequentialpipeline() (in module agentscope.pipelines.functional)": [[39, "agentscope.pipelines.functional.sequentialpipeline", false]], "sequentialpipelinenode (class in agentscope.web.workstation.workflow_node)": [[103, "agentscope.web.workstation.workflow_node.SequentialPipelineNode", false]], "serialize() (in module agentscope.serialize)": [[50, "agentscope.serialize.serialize", false]], "service (agentscope.web.workstation.workflow_node.workflownodetype attribute)": [[103, "agentscope.web.workstation.workflow_node.WorkflowNodeType.SERVICE", false]], "service_funcs (agentscope.service.service_toolkit.servicetoolkit attribute)": [[73, "agentscope.service.service_toolkit.ServiceToolkit.service_funcs", false]], "service_funcs (agentscope.service.servicetoolkit attribute)": [[54, "agentscope.service.ServiceToolkit.service_funcs", false]], "serviceexecstatus (class in agentscope.service)": [[54, "agentscope.service.ServiceExecStatus", false]], "serviceexecstatus (class in agentscope.service.service_status)": [[72, "agentscope.service.service_status.ServiceExecStatus", false]], "servicefactory (class in agentscope.service)": [[54, "agentscope.service.ServiceFactory", false]], "servicefactory (class in agentscope.service.service_toolkit)": [[73, "agentscope.service.service_toolkit.ServiceFactory", false]], "servicefunction (class in agentscope.service.service_toolkit)": [[73, "agentscope.service.service_toolkit.ServiceFunction", false]], "serviceresponse (class in agentscope.service)": [[54, "agentscope.service.ServiceResponse", false]], "serviceresponse (class in agentscope.service.service_response)": [[71, "agentscope.service.service_response.ServiceResponse", false]], "servicetoolkit (class in agentscope.service)": [[54, "agentscope.service.ServiceToolkit", false]], "servicetoolkit (class in agentscope.service.service_toolkit)": [[73, "agentscope.service.service_toolkit.ServiceToolkit", false]], "set_interactive_marks() (agentscope.service.browser.web_browser.webbrowser method)": [[56, "agentscope.service.browser.web_browser.WebBrowser.set_interactive_marks", false]], "set_interactive_marks() (agentscope.service.webbrowser method)": [[54, "agentscope.service.WebBrowser.set_interactive_marks", false]], "set_model_configs() (agentscope.rpc.rpc_agent_client.rpcagentclient method)": [[47, "agentscope.rpc.rpc_agent_client.RpcAgentClient.set_model_configs", false]], "set_model_configs() (agentscope.rpc.rpc_agent_pb2_grpc.rpcagent static method)": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgent.set_model_configs", false]], "set_model_configs() (agentscope.rpc.rpc_agent_pb2_grpc.rpcagentservicer method)": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgentServicer.set_model_configs", false]], "set_model_configs() (agentscope.rpc.rpcagentclient method)": [[46, "agentscope.rpc.RpcAgentClient.set_model_configs", false]], "set_model_configs() (agentscope.rpc.rpcagentservicer method)": [[46, "agentscope.rpc.RpcAgentServicer.set_model_configs", false]], "set_model_configs() (agentscope.server.agentserverservicer method)": [[51, "agentscope.server.AgentServerServicer.set_model_configs", false]], "set_model_configs() (agentscope.server.servicer.agentserverservicer method)": [[53, "agentscope.server.servicer.AgentServerServicer.set_model_configs", false]], "set_parser() (agentscope.agents.dict_dialog_agent.dictdialogagent method)": [[4, "agentscope.agents.dict_dialog_agent.DictDialogAgent.set_parser", false]], "set_parser() (agentscope.agents.dictdialogagent method)": [[1, "agentscope.agents.DictDialogAgent.set_parser", false]], "set_response() (agentscope.rpc.responsestub method)": [[46, "agentscope.rpc.ResponseStub.set_response", false]], "set_response() (agentscope.rpc.rpc_agent_client.responsestub method)": [[47, "agentscope.rpc.rpc_agent_client.ResponseStub.set_response", false]], "setup_logger() (in module agentscope.logging)": [[12, "agentscope.logging.setup_logger", false]], "show_image_tokens() (agentscope.manager.monitormanager method)": [[13, "agentscope.manager.MonitorManager.show_image_tokens", false]], "show_text_and_embedding_tokens() (agentscope.manager.monitormanager method)": [[13, "agentscope.manager.MonitorManager.show_text_and_embedding_tokens", false]], "shrinkpolicy (class in agentscope.constants)": [[10, "agentscope.constants.ShrinkPolicy", false]], "shutdown() (agentscope.server.launcher.rpcagentserverlauncher method)": [[52, "agentscope.server.launcher.RpcAgentServerLauncher.shutdown", false]], "shutdown() (agentscope.server.rpcagentserverlauncher method)": [[51, "agentscope.server.RpcAgentServerLauncher.shutdown", false]], "size() (agentscope.memory.memory.memorybase method)": [[15, "agentscope.memory.memory.MemoryBase.size", false]], "size() (agentscope.memory.memorybase method)": [[14, "agentscope.memory.MemoryBase.size", false]], "size() (agentscope.memory.temporary_memory.temporarymemory method)": [[16, "agentscope.memory.temporary_memory.TemporaryMemory.size", false]], "size() (agentscope.memory.temporarymemory method)": [[14, "agentscope.memory.TemporaryMemory.size", false]], "speak() (agentscope.agents.agent.agentbase method)": [[2, "agentscope.agents.agent.AgentBase.speak", false]], "speak() (agentscope.agents.agentbase method)": [[1, "agentscope.agents.AgentBase.speak", false]], "speak() (agentscope.agents.user_agent.useragent method)": [[9, "agentscope.agents.user_agent.UserAgent.speak", false]], "speak() (agentscope.agents.useragent method)": [[1, "agentscope.agents.UserAgent.speak", false]], "start_workflow() (in module agentscope.web.workstation.workflow)": [[101, "agentscope.web.workstation.workflow.start_workflow", false]], "state_dict() (agentscope.manager.asmanager method)": [[13, "agentscope.manager.ASManager.state_dict", false]], "state_dict() (agentscope.manager.filemanager method)": [[13, "agentscope.manager.FileManager.state_dict", false]], "state_dict() (agentscope.manager.modelmanager method)": [[13, "agentscope.manager.ModelManager.state_dict", false]], "state_dict() (agentscope.manager.monitormanager method)": [[13, "agentscope.manager.MonitorManager.state_dict", false]], "state_dict() (in module agentscope)": [[0, "agentscope.state_dict", false]], "static_format() (agentscope.models.openai_model.openaichatwrapper static method)": [[26, "agentscope.models.openai_model.OpenAIChatWrapper.static_format", false]], "static_format() (agentscope.models.openaichatwrapper static method)": [[20, "agentscope.models.OpenAIChatWrapper.static_format", false]], "stop() (agentscope.agents.rpc_agent.rpcagent method)": [[8, "agentscope.agents.rpc_agent.RpcAgent.stop", false]], "stop() (agentscope.agents.rpcagent method)": [[1, "agentscope.agents.RpcAgent.stop", false]], "stop() (agentscope.rpc.rpc_agent_client.rpcagentclient method)": [[47, "agentscope.rpc.rpc_agent_client.RpcAgentClient.stop", false]], "stop() (agentscope.rpc.rpc_agent_pb2_grpc.rpcagent static method)": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgent.stop", false]], "stop() (agentscope.rpc.rpc_agent_pb2_grpc.rpcagentservicer method)": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgentServicer.stop", false]], "stop() (agentscope.rpc.rpcagentclient method)": [[46, "agentscope.rpc.RpcAgentClient.stop", false]], "stop() (agentscope.rpc.rpcagentservicer method)": [[46, "agentscope.rpc.RpcAgentServicer.stop", false]], "stop() (agentscope.server.agentserverservicer method)": [[51, "agentscope.server.AgentServerServicer.stop", false]], "stop() (agentscope.server.servicer.agentserverservicer method)": [[53, "agentscope.server.servicer.AgentServerServicer.stop", false]], "stream (agentscope.models.modelresponse property)": [[20, "agentscope.models.ModelResponse.stream", false]], "stream (agentscope.models.response.modelresponse property)": [[28, "agentscope.models.response.ModelResponse.stream", false]], "studioerror": [[11, "agentscope.exception.StudioError", false]], "studioregistererror": [[11, "agentscope.exception.StudioRegisterError", false]], "substrings_in_vision_models_names (agentscope.models.openai_model.openaichatwrapper attribute)": [[26, "agentscope.models.openai_model.OpenAIChatWrapper.substrings_in_vision_models_names", false]], "substrings_in_vision_models_names (agentscope.models.openaichatwrapper attribute)": [[20, "agentscope.models.OpenAIChatWrapper.substrings_in_vision_models_names", false]], "success (agentscope.service.service_status.serviceexecstatus attribute)": [[72, "agentscope.service.service_status.ServiceExecStatus.SUCCESS", false]], "success (agentscope.service.serviceexecstatus attribute)": [[54, "agentscope.service.ServiceExecStatus.SUCCESS", false]], "summarization() (in module agentscope.service)": [[54, "agentscope.service.summarization", false]], "summarization() (in module agentscope.service.text_processing.summarization)": [[79, "agentscope.service.text_processing.summarization.summarization", false]], "summarize (agentscope.constants.shrinkpolicy attribute)": [[10, "agentscope.constants.ShrinkPolicy.SUMMARIZE", false]], "switchpipeline (class in agentscope.pipelines)": [[38, "agentscope.pipelines.SwitchPipeline", false]], "switchpipeline (class in agentscope.pipelines.pipeline)": [[40, "agentscope.pipelines.pipeline.SwitchPipeline", false]], "switchpipeline() (in module agentscope.pipelines)": [[38, "agentscope.pipelines.switchpipeline", false]], "switchpipeline() (in module agentscope.pipelines.functional)": [[39, "agentscope.pipelines.functional.switchpipeline", false]], "switchpipelinenode (class in agentscope.web.workstation.workflow_node)": [[103, "agentscope.web.workstation.workflow_node.SwitchPipelineNode", false]], "sys_python_guard() (in module agentscope.service.execute_code.exec_python)": [[59, "agentscope.service.execute_code.exec_python.sys_python_guard", false]], "systempromptcomparer (class in agentscope.prompt)": [[41, "agentscope.prompt.SystemPromptComparer", false]], "systempromptgeneratorbase (class in agentscope.prompt)": [[41, "agentscope.prompt.SystemPromptGeneratorBase", false]], "systempromptoptimizer (class in agentscope.prompt)": [[41, "agentscope.prompt.SystemPromptOptimizer", false]], "tag_begin (agentscope.parsers.code_block_parser.markdowncodeblockparser attribute)": [[33, "agentscope.parsers.code_block_parser.MarkdownCodeBlockParser.tag_begin", false]], "tag_begin (agentscope.parsers.json_object_parser.markdownjsondictparser attribute)": [[34, "agentscope.parsers.json_object_parser.MarkdownJsonDictParser.tag_begin", false]], "tag_begin (agentscope.parsers.json_object_parser.markdownjsonobjectparser attribute)": [[34, "agentscope.parsers.json_object_parser.MarkdownJsonObjectParser.tag_begin", false]], "tag_begin (agentscope.parsers.markdowncodeblockparser attribute)": [[32, "agentscope.parsers.MarkdownCodeBlockParser.tag_begin", false]], "tag_begin (agentscope.parsers.markdownjsondictparser attribute)": [[32, "agentscope.parsers.MarkdownJsonDictParser.tag_begin", false]], "tag_begin (agentscope.parsers.markdownjsonobjectparser attribute)": [[32, "agentscope.parsers.MarkdownJsonObjectParser.tag_begin", false]], "tag_begin (agentscope.parsers.tagged_content_parser.taggedcontent attribute)": [[37, "agentscope.parsers.tagged_content_parser.TaggedContent.tag_begin", false]], "tag_begin (agentscope.parsers.taggedcontent attribute)": [[32, "agentscope.parsers.TaggedContent.tag_begin", false]], "tag_end (agentscope.parsers.code_block_parser.markdowncodeblockparser attribute)": [[33, "agentscope.parsers.code_block_parser.MarkdownCodeBlockParser.tag_end", false]], "tag_end (agentscope.parsers.json_object_parser.markdownjsondictparser attribute)": [[34, "agentscope.parsers.json_object_parser.MarkdownJsonDictParser.tag_end", false]], "tag_end (agentscope.parsers.json_object_parser.markdownjsonobjectparser attribute)": [[34, "agentscope.parsers.json_object_parser.MarkdownJsonObjectParser.tag_end", false]], "tag_end (agentscope.parsers.markdowncodeblockparser attribute)": [[32, "agentscope.parsers.MarkdownCodeBlockParser.tag_end", false]], "tag_end (agentscope.parsers.markdownjsondictparser attribute)": [[32, "agentscope.parsers.MarkdownJsonDictParser.tag_end", false]], "tag_end (agentscope.parsers.markdownjsonobjectparser attribute)": [[32, "agentscope.parsers.MarkdownJsonObjectParser.tag_end", false]], "tag_end (agentscope.parsers.tagged_content_parser.taggedcontent attribute)": [[37, "agentscope.parsers.tagged_content_parser.TaggedContent.tag_end", false]], "tag_end (agentscope.parsers.taggedcontent attribute)": [[32, "agentscope.parsers.TaggedContent.tag_end", false]], "tag_name (agentscope.service.browser.web_browser.webelementinfo attribute)": [[56, "agentscope.service.browser.web_browser.WebElementInfo.tag_name", false]], "tag_name (agentscope.service.webelementinfo attribute)": [[54, "agentscope.service.WebElementInfo.tag_name", false]], "taggedcontent (class in agentscope.parsers)": [[32, "agentscope.parsers.TaggedContent", false]], "taggedcontent (class in agentscope.parsers.tagged_content_parser)": [[37, "agentscope.parsers.tagged_content_parser.TaggedContent", false]], "tagnotfounderror": [[11, "agentscope.exception.TagNotFoundError", false]], "temporarymemory (class in agentscope.memory)": [[14, "agentscope.memory.TemporaryMemory", false]], "temporarymemory (class in agentscope.memory.temporary_memory)": [[16, "agentscope.memory.temporary_memory.TemporaryMemory", false]], "text (agentscope.models.modelresponse property)": [[20, "agentscope.models.ModelResponse.text", false]], "text (agentscope.models.response.modelresponse property)": [[28, "agentscope.models.response.ModelResponse.text", false]], "timer() (in module agentscope.utils.common)": [[93, "agentscope.utils.common.timer", false]], "timestamp (agentscope.message.msg property)": [[17, "agentscope.message.Msg.timestamp", false]], "timestamp (agentscope.message.msg.msg property)": [[18, "agentscope.message.msg.Msg.timestamp", false]], "timestamp (agentscope.message.placeholder.placeholdermessage property)": [[19, "agentscope.message.placeholder.PlaceholderMessage.timestamp", false]], "timestamp (agentscope.message.placeholdermessage property)": [[17, "agentscope.message.PlaceholderMessage.timestamp", false]], "to_content() (agentscope.parsers.parser_base.dictfiltermixin method)": [[35, "agentscope.parsers.parser_base.DictFilterMixin.to_content", false]], "to_dict() (agentscope.message.msg method)": [[17, "agentscope.message.Msg.to_dict", false]], "to_dict() (agentscope.message.msg.msg method)": [[18, "agentscope.message.msg.Msg.to_dict", false]], "to_dict() (agentscope.message.placeholder.placeholdermessage method)": [[19, "agentscope.message.placeholder.PlaceholderMessage.to_dict", false]], "to_dict() (agentscope.message.placeholdermessage method)": [[17, "agentscope.message.PlaceholderMessage.to_dict", false]], "to_dist() (agentscope.agents.agent.agentbase method)": [[2, "agentscope.agents.agent.AgentBase.to_dist", false]], "to_dist() (agentscope.agents.agentbase method)": [[1, "agentscope.agents.AgentBase.to_dist", false]], "to_memory() (agentscope.parsers.parser_base.dictfiltermixin method)": [[35, "agentscope.parsers.parser_base.DictFilterMixin.to_memory", false]], "to_metadata() (agentscope.parsers.parser_base.dictfiltermixin method)": [[35, "agentscope.parsers.parser_base.DictFilterMixin.to_metadata", false]], "to_openai_dict() (in module agentscope.utils.common)": [[93, "agentscope.utils.common.to_openai_dict", false]], "tools_calling_format (agentscope.service.service_toolkit.servicetoolkit property)": [[73, "agentscope.service.service_toolkit.ServiceToolkit.tools_calling_format", false]], "tools_calling_format (agentscope.service.servicetoolkit property)": [[54, "agentscope.service.ServiceToolkit.tools_calling_format", false]], "tools_instruction (agentscope.service.service_toolkit.servicetoolkit property)": [[73, "agentscope.service.service_toolkit.ServiceToolkit.tools_instruction", false]], "tools_instruction (agentscope.service.servicetoolkit property)": [[54, "agentscope.service.ServiceToolkit.tools_instruction", false]], "tripadvisor_search() (in module agentscope.service)": [[54, "agentscope.service.tripadvisor_search", false]], "tripadvisor_search() (in module agentscope.service.web.tripadvisor)": [[85, "agentscope.service.web.tripadvisor.tripadvisor_search", false]], "tripadvisor_search_location_details() (in module agentscope.service)": [[54, "agentscope.service.tripadvisor_search_location_details", false]], "tripadvisor_search_location_details() (in module agentscope.service.web.tripadvisor)": [[85, "agentscope.service.web.tripadvisor.tripadvisor_search_location_details", false]], "tripadvisor_search_location_photos() (in module agentscope.service)": [[54, "agentscope.service.tripadvisor_search_location_photos", false]], "tripadvisor_search_location_photos() (in module agentscope.service.web.tripadvisor)": [[85, "agentscope.service.web.tripadvisor.tripadvisor_search_location_photos", false]], "truncate (agentscope.constants.shrinkpolicy attribute)": [[10, "agentscope.constants.ShrinkPolicy.TRUNCATE", false]], "type (agentscope.service.browser.web_browser.webelementinfo attribute)": [[56, "agentscope.service.browser.web_browser.WebElementInfo.type", false]], "type (agentscope.service.webelementinfo attribute)": [[54, "agentscope.service.WebElementInfo.type", false]], "update_image_tokens() (agentscope.manager.monitormanager method)": [[13, "agentscope.manager.MonitorManager.update_image_tokens", false]], "update_placeholder() (agentscope.rpc.rpc_agent_client.rpcagentclient method)": [[47, "agentscope.rpc.rpc_agent_client.RpcAgentClient.update_placeholder", false]], "update_placeholder() (agentscope.rpc.rpc_agent_pb2_grpc.rpcagent static method)": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgent.update_placeholder", false]], "update_placeholder() (agentscope.rpc.rpc_agent_pb2_grpc.rpcagentservicer method)": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgentServicer.update_placeholder", false]], "update_placeholder() (agentscope.rpc.rpcagentclient method)": [[46, "agentscope.rpc.RpcAgentClient.update_placeholder", false]], "update_placeholder() (agentscope.rpc.rpcagentservicer method)": [[46, "agentscope.rpc.RpcAgentServicer.update_placeholder", false]], "update_placeholder() (agentscope.server.agentserverservicer method)": [[51, "agentscope.server.AgentServerServicer.update_placeholder", false]], "update_placeholder() (agentscope.server.servicer.agentserverservicer method)": [[53, "agentscope.server.servicer.AgentServerServicer.update_placeholder", false]], "update_text_and_embedding_tokens() (agentscope.manager.monitormanager method)": [[13, "agentscope.manager.MonitorManager.update_text_and_embedding_tokens", false]], "update_value() (agentscope.message.placeholder.placeholdermessage method)": [[19, "agentscope.message.placeholder.PlaceholderMessage.update_value", false]], "update_value() (agentscope.message.placeholdermessage method)": [[17, "agentscope.message.PlaceholderMessage.update_value", false]], "url (agentscope.message.msg property)": [[17, "agentscope.message.Msg.url", false]], "url (agentscope.message.msg.msg property)": [[18, "agentscope.message.msg.Msg.url", false]], "url (agentscope.message.placeholder.placeholdermessage property)": [[19, "agentscope.message.placeholder.PlaceholderMessage.url", false]], "url (agentscope.message.placeholdermessage property)": [[17, "agentscope.message.PlaceholderMessage.url", false]], "url (agentscope.service.browser.web_browser.webbrowser property)": [[56, "agentscope.service.browser.web_browser.WebBrowser.url", false]], "url (agentscope.service.webbrowser property)": [[54, "agentscope.service.WebBrowser.url", false]], "user_input() (in module agentscope.web.gradio.utils)": [[99, "agentscope.web.gradio.utils.user_input", false]], "useragent (class in agentscope.agents)": [[1, "agentscope.agents.UserAgent", false]], "useragent (class in agentscope.agents.user_agent)": [[9, "agentscope.agents.user_agent.UserAgent", false]], "useragentnode (class in agentscope.web.workstation.workflow_node)": [[103, "agentscope.web.workstation.workflow_node.UserAgentNode", false]], "wait_until_terminate() (agentscope.server.launcher.rpcagentserverlauncher method)": [[52, "agentscope.server.launcher.RpcAgentServerLauncher.wait_until_terminate", false]], "wait_until_terminate() (agentscope.server.rpcagentserverlauncher method)": [[51, "agentscope.server.RpcAgentServerLauncher.wait_until_terminate", false]], "webbrowser (class in agentscope.service)": [[54, "agentscope.service.WebBrowser", false]], "webbrowser (class in agentscope.service.browser.web_browser)": [[56, "agentscope.service.browser.web_browser.WebBrowser", false]], "webelementinfo (class in agentscope.service)": [[54, "agentscope.service.WebElementInfo", false]], "webelementinfo (class in agentscope.service.browser.web_browser)": [[56, "agentscope.service.browser.web_browser.WebElementInfo", false]], "whilelooppipeline (class in agentscope.pipelines)": [[38, "agentscope.pipelines.WhileLoopPipeline", false]], "whilelooppipeline (class in agentscope.pipelines.pipeline)": [[40, "agentscope.pipelines.pipeline.WhileLoopPipeline", false]], "whilelooppipeline() (in module agentscope.pipelines)": [[38, "agentscope.pipelines.whilelooppipeline", false]], "whilelooppipeline() (in module agentscope.pipelines.functional)": [[39, "agentscope.pipelines.functional.whilelooppipeline", false]], "whilelooppipelinenode (class in agentscope.web.workstation.workflow_node)": [[103, "agentscope.web.workstation.workflow_node.WhileLoopPipelineNode", false]], "width (agentscope.service.browser.web_browser.webelementinfo attribute)": [[56, "agentscope.service.browser.web_browser.WebElementInfo.width", false]], "width (agentscope.service.webelementinfo attribute)": [[54, "agentscope.service.WebElementInfo.width", false]], "wikipedia_search() (in module agentscope.service)": [[54, "agentscope.service.wikipedia_search", false]], "wikipedia_search() (in module agentscope.service.web.wikipedia)": [[87, "agentscope.service.web.wikipedia.wikipedia_search", false]], "wikipedia_search_categories() (in module agentscope.service)": [[54, "agentscope.service.wikipedia_search_categories", false]], "wikipedia_search_categories() (in module agentscope.service.web.wikipedia)": [[87, "agentscope.service.web.wikipedia.wikipedia_search_categories", false]], "workflownode (class in agentscope.web.workstation.workflow_node)": [[103, "agentscope.web.workstation.workflow_node.WorkflowNode", false]], "workflownodetype (class in agentscope.web.workstation.workflow_node)": [[103, "agentscope.web.workstation.workflow_node.WorkflowNodeType", false]], "write_json_file() (in module agentscope.service)": [[54, "agentscope.service.write_json_file", false]], "write_json_file() (in module agentscope.service.file.json)": [[63, "agentscope.service.file.json.write_json_file", false]], "write_text_file() (in module agentscope.service)": [[54, "agentscope.service.write_text_file", false]], "write_text_file() (in module agentscope.service.file.text)": [[64, "agentscope.service.file.text.write_text_file", false]], "writetextservicenode (class in agentscope.web.workstation.workflow_node)": [[103, "agentscope.web.workstation.workflow_node.WriteTextServiceNode", false]], "yichatwrapper (class in agentscope.models)": [[20, "agentscope.models.YiChatWrapper", false]], "yichatwrapper (class in agentscope.models.yi_model)": [[29, "agentscope.models.yi_model.YiChatWrapper", false]], "zhipuaichatwrapper (class in agentscope.models)": [[20, "agentscope.models.ZhipuAIChatWrapper", false]], "zhipuaichatwrapper (class in agentscope.models.zhipu_model)": [[30, "agentscope.models.zhipu_model.ZhipuAIChatWrapper", false]], "zhipuaiembeddingwrapper (class in agentscope.models)": [[20, "agentscope.models.ZhipuAIEmbeddingWrapper", false]], "zhipuaiembeddingwrapper (class in agentscope.models.zhipu_model)": [[30, "agentscope.models.zhipu_model.ZhipuAIEmbeddingWrapper", false]], "zhipuaiwrapperbase (class in agentscope.models.zhipu_model)": [[30, "agentscope.models.zhipu_model.ZhipuAIWrapperBase", false]]}, "objects": {"": [[0, 0, 0, "-", "agentscope"]], "agentscope": [[1, 0, 0, "-", "agents"], [10, 0, 0, "-", "constants"], [11, 0, 0, "-", "exception"], [0, 6, 1, "", "init"], [12, 0, 0, "-", "logging"], [13, 0, 0, "-", "manager"], [14, 0, 0, "-", "memory"], [17, 0, 0, "-", "message"], [20, 0, 0, "-", "models"], [31, 0, 0, "-", "msghub"], [32, 0, 0, "-", "parsers"], [38, 0, 0, "-", "pipelines"], [0, 6, 1, "", "print_llm_usage"], [41, 0, 0, "-", "prompt"], [42, 0, 0, "-", "rag"], [46, 0, 0, "-", "rpc"], [50, 0, 0, "-", "serialize"], [51, 0, 0, "-", "server"], [54, 0, 0, "-", "service"], [0, 6, 1, "", "state_dict"], [88, 0, 0, "-", "strategy"], [90, 0, 0, "-", "studio"], [92, 0, 0, "-", "utils"], [95, 0, 0, "-", "web"]], "agentscope.agents": [[1, 1, 1, "", "AgentBase"], [1, 1, 1, "", "DialogAgent"], [1, 1, 1, "", "DictDialogAgent"], [1, 1, 1, "", "DistConf"], [1, 1, 1, "", "LlamaIndexAgent"], [1, 1, 1, "", "Operator"], [1, 1, 1, "", "ReActAgent"], [1, 1, 1, "", "RpcAgent"], [1, 1, 1, "", "UserAgent"], [2, 0, 0, "-", "agent"], [3, 0, 0, "-", "dialog_agent"], [4, 0, 0, "-", "dict_dialog_agent"], [5, 0, 0, "-", "operator"], [6, 0, 0, "-", "rag_agent"], [7, 0, 0, "-", "react_agent"], [8, 0, 0, "-", "rpc_agent"], [9, 0, 0, "-", "user_agent"]], "agentscope.agents.AgentBase": [[1, 2, 1, "", "__init__"], [1, 3, 1, "", "agent_id"], [1, 2, 1, "", "clear_audience"], [1, 2, 1, "", "generate_agent_id"], [1, 2, 1, "", "get_agent_class"], [1, 2, 1, "", "observe"], [1, 2, 1, "", "register_agent_class"], [1, 2, 1, "", "reply"], [1, 2, 1, "", "reset_audience"], [1, 2, 1, "", "rm_audience"], [1, 2, 1, "", "speak"], [1, 2, 1, "", "to_dist"]], "agentscope.agents.DialogAgent": [[1, 2, 1, "", "__init__"], [1, 2, 1, "", "reply"]], "agentscope.agents.DictDialogAgent": [[1, 2, 1, "", "__init__"], [1, 2, 1, "", "reply"], [1, 2, 1, "", "set_parser"]], "agentscope.agents.DistConf": [[1, 2, 1, "", "__init__"]], "agentscope.agents.LlamaIndexAgent": [[1, 2, 1, "", "__init__"], [1, 2, 1, "", "reply"]], "agentscope.agents.ReActAgent": [[1, 2, 1, "", "__init__"], [1, 2, 1, "", "finish"], [1, 2, 1, "", "reply"]], "agentscope.agents.RpcAgent": [[1, 2, 1, "", "__init__"], [1, 2, 1, "", "clone_instances"], [1, 2, 1, "", "observe"], [1, 2, 1, "", "reply"], [1, 2, 1, "", "stop"]], "agentscope.agents.UserAgent": [[1, 2, 1, "", "__init__"], [1, 2, 1, "", "reply"], [1, 2, 1, "", "speak"]], "agentscope.agents.agent": [[2, 1, 1, "", "AgentBase"], [2, 1, 1, "", "DistConf"]], "agentscope.agents.agent.AgentBase": [[2, 2, 1, "", "__init__"], [2, 3, 1, "", "agent_id"], [2, 2, 1, "", "clear_audience"], [2, 2, 1, "", "generate_agent_id"], [2, 2, 1, "", "get_agent_class"], [2, 2, 1, "", "observe"], [2, 2, 1, "", "register_agent_class"], [2, 2, 1, "", "reply"], [2, 2, 1, "", "reset_audience"], [2, 2, 1, "", "rm_audience"], [2, 2, 1, "", "speak"], [2, 2, 1, "", "to_dist"]], "agentscope.agents.agent.DistConf": [[2, 2, 1, "", "__init__"]], "agentscope.agents.dialog_agent": [[3, 1, 1, "", "DialogAgent"]], "agentscope.agents.dialog_agent.DialogAgent": [[3, 2, 1, "", "__init__"], [3, 2, 1, "", "reply"]], "agentscope.agents.dict_dialog_agent": [[4, 1, 1, "", "DictDialogAgent"]], "agentscope.agents.dict_dialog_agent.DictDialogAgent": [[4, 2, 1, "", "__init__"], [4, 2, 1, "", "reply"], [4, 2, 1, "", "set_parser"]], "agentscope.agents.operator": [[5, 1, 1, "", "Operator"]], "agentscope.agents.rag_agent": [[6, 1, 1, "", "LlamaIndexAgent"]], "agentscope.agents.rag_agent.LlamaIndexAgent": [[6, 2, 1, "", "__init__"], [6, 2, 1, "", "reply"]], "agentscope.agents.react_agent": [[7, 1, 1, "", "ReActAgent"]], "agentscope.agents.react_agent.ReActAgent": [[7, 2, 1, "", "__init__"], [7, 2, 1, "", "finish"], [7, 2, 1, "", "reply"]], "agentscope.agents.rpc_agent": [[8, 1, 1, "", "RpcAgent"]], "agentscope.agents.rpc_agent.RpcAgent": [[8, 2, 1, "", "__init__"], [8, 2, 1, "", "clone_instances"], [8, 2, 1, "", "observe"], [8, 2, 1, "", "reply"], [8, 2, 1, "", "stop"]], "agentscope.agents.user_agent": [[9, 1, 1, "", "UserAgent"]], "agentscope.agents.user_agent.UserAgent": [[9, 2, 1, "", "__init__"], [9, 2, 1, "", "reply"], [9, 2, 1, "", "speak"]], "agentscope.constants": [[10, 1, 1, "", "ResponseFormat"], [10, 1, 1, "", "ShrinkPolicy"]], "agentscope.constants.ResponseFormat": [[10, 4, 1, "", "JSON"], [10, 4, 1, "", "NONE"]], "agentscope.constants.ShrinkPolicy": [[10, 4, 1, "", "SUMMARIZE"], [10, 4, 1, "", "TRUNCATE"]], "agentscope.exception": [[11, 5, 1, "", "AgentCallError"], [11, 5, 1, "", "AgentCreationError"], [11, 5, 1, "", "AgentServerError"], [11, 5, 1, "", "AgentServerNotAliveError"], [11, 5, 1, "", "ArgumentNotFoundError"], [11, 5, 1, "", "ArgumentTypeError"], [11, 5, 1, "", "FunctionCallError"], [11, 5, 1, "", "FunctionCallFormatError"], [11, 5, 1, "", "FunctionNotFoundError"], [11, 5, 1, "", "JsonDictValidationError"], [11, 5, 1, "", "JsonParsingError"], [11, 5, 1, "", "JsonTypeError"], [11, 5, 1, "", "QuotaExceededError"], [11, 5, 1, "", "RequiredFieldNotFoundError"], [11, 5, 1, "", "ResponseParsingError"], [11, 5, 1, "", "StudioError"], [11, 5, 1, "", "StudioRegisterError"], [11, 5, 1, "", "TagNotFoundError"]], "agentscope.exception.AgentServerError": [[11, 2, 1, "", "__init__"], [11, 4, 1, "", "host"], [11, 4, 1, "", "message"], [11, 4, 1, "", "port"]], "agentscope.exception.FunctionCallError": [[11, 2, 1, "", "__init__"]], "agentscope.exception.QuotaExceededError": [[11, 2, 1, "", "__init__"]], "agentscope.exception.ResponseParsingError": [[11, 2, 1, "", "__init__"], [11, 4, 1, "", "raw_response"]], "agentscope.exception.StudioError": [[11, 2, 1, "", "__init__"]], "agentscope.exception.TagNotFoundError": [[11, 2, 1, "", "__init__"], [11, 4, 1, "", "missing_begin_tag"], [11, 4, 1, "", "missing_end_tag"]], "agentscope.logging": [[12, 6, 1, "", "log_gradio"], [12, 6, 1, "", "log_msg"], [12, 6, 1, "", "log_stream_msg"], [12, 6, 1, "", "setup_logger"]], "agentscope.manager": [[13, 1, 1, "", "ASManager"], [13, 1, 1, "", "FileManager"], [13, 1, 1, "", "ModelManager"], [13, 1, 1, "", "MonitorManager"]], "agentscope.manager.ASManager": [[13, 2, 1, "", "__init__"], [13, 2, 1, "", "flush"], [13, 2, 1, "", "get_instance"], [13, 2, 1, "", "initialize"], [13, 2, 1, "", "load_dict"], [13, 2, 1, "", "state_dict"]], "agentscope.manager.FileManager": [[13, 2, 1, "", "__init__"], [13, 2, 1, "", "cache_text_embedding"], [13, 3, 1, "", "code_dir"], [13, 3, 1, "", "embedding_cache_dir"], [13, 2, 1, "", "fetch_cached_text_embedding"], [13, 3, 1, "", "file_dir"], [13, 2, 1, "", "flush"], [13, 2, 1, "", "get_instance"], [13, 2, 1, "", "initialize"], [13, 3, 1, "", "invoke_dir"], [13, 2, 1, "", "is_initialized"], [13, 2, 1, "", "load_dict"], [13, 2, 1, "", "save_api_invocation"], [13, 2, 1, "", "save_file"], [13, 2, 1, "", "save_image"], [13, 2, 1, "", "save_python_code"], [13, 2, 1, "", "save_runtime_information"], [13, 2, 1, "", "state_dict"]], "agentscope.manager.ModelManager": [[13, 2, 1, "", "__init__"], [13, 2, 1, "", "clear_model_configs"], [13, 2, 1, "", "flush"], [13, 2, 1, "", "get_config_by_name"], [13, 2, 1, "", "get_instance"], [13, 2, 1, "", "get_model_by_config_name"], [13, 2, 1, "", "initialize"], [13, 2, 1, "", "load_dict"], [13, 2, 1, "", "load_model_configs"], [13, 4, 1, "", "model_configs"], [13, 2, 1, "", "state_dict"]], "agentscope.manager.MonitorManager": [[13, 2, 1, "", "__init__"], [13, 2, 1, "", "flush"], [13, 2, 1, "", "get_instance"], [13, 2, 1, "", "initialize"], [13, 2, 1, "", "load_dict"], [13, 3, 1, "", "path_db"], [13, 2, 1, "", "print_llm_usage"], [13, 2, 1, "", "rm_database"], [13, 2, 1, "", "show_image_tokens"], [13, 2, 1, "", "show_text_and_embedding_tokens"], [13, 2, 1, "", "state_dict"], [13, 2, 1, "", "update_image_tokens"], [13, 2, 1, "", "update_text_and_embedding_tokens"]], "agentscope.memory": [[14, 1, 1, "", "MemoryBase"], [14, 1, 1, "", "TemporaryMemory"], [15, 0, 0, "-", "memory"], [16, 0, 0, "-", "temporary_memory"]], "agentscope.memory.MemoryBase": [[14, 2, 1, "", "add"], [14, 2, 1, "", "clear"], [14, 2, 1, "", "delete"], [14, 2, 1, "", "export"], [14, 2, 1, "", "get_memory"], [14, 2, 1, "", "load"], [14, 2, 1, "", "size"]], "agentscope.memory.TemporaryMemory": [[14, 2, 1, "", "__init__"], [14, 2, 1, "", "add"], [14, 2, 1, "", "clear"], [14, 2, 1, "", "delete"], [14, 2, 1, "", "export"], [14, 2, 1, "", "get_embeddings"], [14, 2, 1, "", "get_memory"], [14, 2, 1, "", "load"], [14, 2, 1, "", "retrieve_by_embedding"], [14, 2, 1, "", "size"]], "agentscope.memory.memory": [[15, 1, 1, "", "MemoryBase"]], "agentscope.memory.memory.MemoryBase": [[15, 2, 1, "", "add"], [15, 2, 1, "", "clear"], [15, 2, 1, "", "delete"], [15, 2, 1, "", "export"], [15, 2, 1, "", "get_memory"], [15, 2, 1, "", "load"], [15, 2, 1, "", "size"]], "agentscope.memory.temporary_memory": [[16, 1, 1, "", "TemporaryMemory"]], "agentscope.memory.temporary_memory.TemporaryMemory": [[16, 2, 1, "", "__init__"], [16, 2, 1, "", "add"], [16, 2, 1, "", "clear"], [16, 2, 1, "", "delete"], [16, 2, 1, "", "export"], [16, 2, 1, "", "get_embeddings"], [16, 2, 1, "", "get_memory"], [16, 2, 1, "", "load"], [16, 2, 1, "", "retrieve_by_embedding"], [16, 2, 1, "", "size"]], "agentscope.message": [[17, 1, 1, "", "Msg"], [17, 1, 1, "", "PlaceholderMessage"], [18, 0, 0, "-", "msg"], [19, 0, 0, "-", "placeholder"]], "agentscope.message.Msg": [[17, 2, 1, "", "__init__"], [17, 3, 1, "", "content"], [17, 2, 1, "", "formatted_str"], [17, 2, 1, "", "from_dict"], [17, 3, 1, "", "id"], [17, 3, 1, "", "metadata"], [17, 3, 1, "", "name"], [17, 3, 1, "", "role"], [17, 3, 1, "", "timestamp"], [17, 2, 1, "", "to_dict"], [17, 3, 1, "", "url"]], "agentscope.message.PlaceholderMessage": [[17, 2, 1, "", "__init__"], [17, 3, 1, "", "content"], [17, 2, 1, "", "from_dict"], [17, 3, 1, "", "id"], [17, 3, 1, "", "metadata"], [17, 3, 1, "", "name"], [17, 3, 1, "", "role"], [17, 3, 1, "", "timestamp"], [17, 2, 1, "", "to_dict"], [17, 2, 1, "", "update_value"], [17, 3, 1, "", "url"]], "agentscope.message.msg": [[18, 1, 1, "", "Msg"]], "agentscope.message.msg.Msg": [[18, 2, 1, "", "__init__"], [18, 3, 1, "", "content"], [18, 2, 1, "", "formatted_str"], [18, 2, 1, "", "from_dict"], [18, 3, 1, "", "id"], [18, 3, 1, "", "metadata"], [18, 3, 1, "", "name"], [18, 3, 1, "", "role"], [18, 3, 1, "", "timestamp"], [18, 2, 1, "", "to_dict"], [18, 3, 1, "", "url"]], "agentscope.message.placeholder": [[19, 1, 1, "", "PlaceholderMessage"]], "agentscope.message.placeholder.PlaceholderMessage": [[19, 2, 1, "", "__init__"], [19, 3, 1, "", "content"], [19, 2, 1, "", "from_dict"], [19, 3, 1, "", "id"], [19, 3, 1, "", "metadata"], [19, 3, 1, "", "name"], [19, 3, 1, "", "role"], [19, 3, 1, "", "timestamp"], [19, 2, 1, "", "to_dict"], [19, 2, 1, "", "update_value"], [19, 3, 1, "", "url"]], "agentscope.models": [[20, 1, 1, "", "DashScopeChatWrapper"], [20, 1, 1, "", "DashScopeImageSynthesisWrapper"], [20, 1, 1, "", "DashScopeMultiModalWrapper"], [20, 1, 1, "", "DashScopeTextEmbeddingWrapper"], [20, 1, 1, "", "GeminiChatWrapper"], [20, 1, 1, "", "GeminiEmbeddingWrapper"], [20, 1, 1, "", "LiteLLMChatWrapper"], [20, 1, 1, "", "ModelResponse"], [20, 1, 1, "", "ModelWrapperBase"], [20, 1, 1, "", "OllamaChatWrapper"], [20, 1, 1, "", "OllamaEmbeddingWrapper"], [20, 1, 1, "", "OllamaGenerationWrapper"], [20, 1, 1, "", "OpenAIChatWrapper"], [20, 1, 1, "", "OpenAIDALLEWrapper"], [20, 1, 1, "", "OpenAIEmbeddingWrapper"], [20, 1, 1, "", "OpenAIWrapperBase"], [20, 1, 1, "", "PostAPIChatWrapper"], [20, 1, 1, "", "PostAPIModelWrapperBase"], [20, 1, 1, "", "YiChatWrapper"], [20, 1, 1, "", "ZhipuAIChatWrapper"], [20, 1, 1, "", "ZhipuAIEmbeddingWrapper"], [21, 0, 0, "-", "dashscope_model"], [22, 0, 0, "-", "gemini_model"], [23, 0, 0, "-", "litellm_model"], [24, 0, 0, "-", "model"], [25, 0, 0, "-", "ollama_model"], [26, 0, 0, "-", "openai_model"], [27, 0, 0, "-", "post_model"], [28, 0, 0, "-", "response"], [29, 0, 0, "-", "yi_model"], [30, 0, 0, "-", "zhipu_model"]], "agentscope.models.DashScopeChatWrapper": [[20, 2, 1, "", "__init__"], [20, 4, 1, "", "deprecated_model_type"], [20, 2, 1, "", "format"], [20, 4, 1, "", "model_type"]], "agentscope.models.DashScopeImageSynthesisWrapper": [[20, 4, 1, "", "model_type"]], "agentscope.models.DashScopeMultiModalWrapper": [[20, 2, 1, "", "convert_url"], [20, 2, 1, "", "format"], [20, 4, 1, "", "model_type"]], "agentscope.models.DashScopeTextEmbeddingWrapper": [[20, 4, 1, "", "model_type"]], "agentscope.models.GeminiChatWrapper": [[20, 2, 1, "", "__init__"], [20, 2, 1, "", "format"], [20, 4, 1, "", "generation_method"], [20, 4, 1, "", "model_type"]], "agentscope.models.GeminiEmbeddingWrapper": [[20, 4, 1, "", "model_type"]], "agentscope.models.LiteLLMChatWrapper": [[20, 2, 1, "", "__init__"], [20, 2, 1, "", "format"], [20, 4, 1, "", "model_type"]], "agentscope.models.ModelResponse": [[20, 2, 1, "", "__init__"], [20, 3, 1, "", "is_stream_exhausted"], [20, 3, 1, "", "stream"], [20, 3, 1, "", "text"]], "agentscope.models.ModelWrapperBase": [[20, 2, 1, "", "__init__"], [20, 4, 1, "", "config_name"], [20, 2, 1, "", "format"], [20, 2, 1, "", "format_for_common_chat_models"], [20, 2, 1, "", "get_wrapper"], [20, 4, 1, "", "model_name"], [20, 4, 1, "", "model_type"]], "agentscope.models.OllamaChatWrapper": [[20, 2, 1, "", "__init__"], [20, 2, 1, "", "format"], [20, 4, 1, "", "model_type"]], "agentscope.models.OllamaEmbeddingWrapper": [[20, 2, 1, "", "format"], [20, 4, 1, "", "model_type"]], "agentscope.models.OllamaGenerationWrapper": [[20, 2, 1, "", "format"], [20, 4, 1, "", "model_type"]], "agentscope.models.OpenAIChatWrapper": [[20, 2, 1, "", "__init__"], [20, 4, 1, "", "deprecated_model_type"], [20, 2, 1, "", "format"], [20, 4, 1, "", "model_type"], [20, 2, 1, "", "static_format"], [20, 4, 1, "", "substrings_in_vision_models_names"]], "agentscope.models.OpenAIDALLEWrapper": [[20, 4, 1, "", "model_type"]], "agentscope.models.OpenAIEmbeddingWrapper": [[20, 4, 1, "", "model_type"]], "agentscope.models.OpenAIWrapperBase": [[20, 2, 1, "", "__init__"], [20, 2, 1, "", "format"]], "agentscope.models.PostAPIChatWrapper": [[20, 2, 1, "", "format"], [20, 4, 1, "", "model_type"]], "agentscope.models.PostAPIModelWrapperBase": [[20, 2, 1, "", "__init__"], [20, 4, 1, "", "model_type"]], "agentscope.models.YiChatWrapper": [[20, 2, 1, "", "__init__"], [20, 2, 1, "", "format"], [20, 4, 1, "", "model_type"]], "agentscope.models.ZhipuAIChatWrapper": [[20, 2, 1, "", "__init__"], [20, 2, 1, "", "format"], [20, 4, 1, "", "model_type"]], "agentscope.models.ZhipuAIEmbeddingWrapper": [[20, 4, 1, "", "model_type"]], "agentscope.models.dashscope_model": [[21, 1, 1, "", "DashScopeChatWrapper"], [21, 1, 1, "", "DashScopeImageSynthesisWrapper"], [21, 1, 1, "", "DashScopeMultiModalWrapper"], [21, 1, 1, "", "DashScopeTextEmbeddingWrapper"], [21, 1, 1, "", "DashScopeWrapperBase"]], "agentscope.models.dashscope_model.DashScopeChatWrapper": [[21, 2, 1, "", "__init__"], [21, 4, 1, "", "config_name"], [21, 4, 1, "", "deprecated_model_type"], [21, 2, 1, "", "format"], [21, 4, 1, "", "model_name"], [21, 4, 1, "", "model_type"]], "agentscope.models.dashscope_model.DashScopeImageSynthesisWrapper": [[21, 4, 1, "", "config_name"], [21, 4, 1, "", "model_name"], [21, 4, 1, "", "model_type"]], "agentscope.models.dashscope_model.DashScopeMultiModalWrapper": [[21, 4, 1, "", "config_name"], [21, 2, 1, "", "convert_url"], [21, 2, 1, "", "format"], [21, 4, 1, "", "model_name"], [21, 4, 1, "", "model_type"]], "agentscope.models.dashscope_model.DashScopeTextEmbeddingWrapper": [[21, 4, 1, "", "config_name"], [21, 4, 1, "", "model_name"], [21, 4, 1, "", "model_type"]], "agentscope.models.dashscope_model.DashScopeWrapperBase": [[21, 2, 1, "", "__init__"], [21, 2, 1, "", "format"]], "agentscope.models.gemini_model": [[22, 1, 1, "", "GeminiChatWrapper"], [22, 1, 1, "", "GeminiEmbeddingWrapper"], [22, 1, 1, "", "GeminiWrapperBase"]], "agentscope.models.gemini_model.GeminiChatWrapper": [[22, 2, 1, "", "__init__"], [22, 4, 1, "", "config_name"], [22, 2, 1, "", "format"], [22, 4, 1, "", "generation_method"], [22, 4, 1, "", "model_name"], [22, 4, 1, "", "model_type"]], "agentscope.models.gemini_model.GeminiEmbeddingWrapper": [[22, 4, 1, "", "config_name"], [22, 4, 1, "", "model_name"], [22, 4, 1, "", "model_type"]], "agentscope.models.gemini_model.GeminiWrapperBase": [[22, 2, 1, "", "__init__"], [22, 2, 1, "", "list_models"]], "agentscope.models.litellm_model": [[23, 1, 1, "", "LiteLLMChatWrapper"], [23, 1, 1, "", "LiteLLMWrapperBase"]], "agentscope.models.litellm_model.LiteLLMChatWrapper": [[23, 2, 1, "", "__init__"], [23, 4, 1, "", "config_name"], [23, 2, 1, "", "format"], [23, 4, 1, "", "model_name"], [23, 4, 1, "", "model_type"]], "agentscope.models.litellm_model.LiteLLMWrapperBase": [[23, 2, 1, "", "__init__"], [23, 2, 1, "", "format"]], "agentscope.models.model": [[24, 1, 1, "", "ModelWrapperBase"]], "agentscope.models.model.ModelWrapperBase": [[24, 2, 1, "", "__init__"], [24, 4, 1, "", "config_name"], [24, 2, 1, "", "format"], [24, 2, 1, "", "format_for_common_chat_models"], [24, 2, 1, "", "get_wrapper"], [24, 4, 1, "", "model_name"], [24, 4, 1, "", "model_type"]], "agentscope.models.ollama_model": [[25, 1, 1, "", "OllamaChatWrapper"], [25, 1, 1, "", "OllamaEmbeddingWrapper"], [25, 1, 1, "", "OllamaGenerationWrapper"], [25, 1, 1, "", "OllamaWrapperBase"]], "agentscope.models.ollama_model.OllamaChatWrapper": [[25, 2, 1, "", "__init__"], [25, 4, 1, "", "config_name"], [25, 2, 1, "", "format"], [25, 4, 1, "", "keep_alive"], [25, 4, 1, "", "model_name"], [25, 4, 1, "", "model_type"], [25, 4, 1, "", "options"]], "agentscope.models.ollama_model.OllamaEmbeddingWrapper": [[25, 4, 1, "", "config_name"], [25, 2, 1, "", "format"], [25, 4, 1, "", "keep_alive"], [25, 4, 1, "", "model_name"], [25, 4, 1, "", "model_type"], [25, 4, 1, "", "options"]], "agentscope.models.ollama_model.OllamaGenerationWrapper": [[25, 4, 1, "", "config_name"], [25, 2, 1, "", "format"], [25, 4, 1, "", "keep_alive"], [25, 4, 1, "", "model_name"], [25, 4, 1, "", "model_type"], [25, 4, 1, "", "options"]], "agentscope.models.ollama_model.OllamaWrapperBase": [[25, 2, 1, "", "__init__"], [25, 4, 1, "", "keep_alive"], [25, 4, 1, "", "model_name"], [25, 4, 1, "", "model_type"], [25, 4, 1, "", "options"]], "agentscope.models.openai_model": [[26, 1, 1, "", "OpenAIChatWrapper"], [26, 1, 1, "", "OpenAIDALLEWrapper"], [26, 1, 1, "", "OpenAIEmbeddingWrapper"], [26, 1, 1, "", "OpenAIWrapperBase"]], "agentscope.models.openai_model.OpenAIChatWrapper": [[26, 2, 1, "", "__init__"], [26, 4, 1, "", "config_name"], [26, 4, 1, "", "deprecated_model_type"], [26, 2, 1, "", "format"], [26, 4, 1, "", "model_name"], [26, 4, 1, "", "model_type"], [26, 2, 1, "", "static_format"], [26, 4, 1, "", "substrings_in_vision_models_names"]], "agentscope.models.openai_model.OpenAIDALLEWrapper": [[26, 4, 1, "", "config_name"], [26, 4, 1, "", "model_name"], [26, 4, 1, "", "model_type"]], "agentscope.models.openai_model.OpenAIEmbeddingWrapper": [[26, 4, 1, "", "config_name"], [26, 4, 1, "", "model_name"], [26, 4, 1, "", "model_type"]], "agentscope.models.openai_model.OpenAIWrapperBase": [[26, 2, 1, "", "__init__"], [26, 2, 1, "", "format"]], "agentscope.models.post_model": [[27, 1, 1, "", "PostAPIChatWrapper"], [27, 1, 1, "", "PostAPIDALLEWrapper"], [27, 1, 1, "", "PostAPIEmbeddingWrapper"], [27, 1, 1, "", "PostAPIModelWrapperBase"]], "agentscope.models.post_model.PostAPIChatWrapper": [[27, 4, 1, "", "config_name"], [27, 2, 1, "", "format"], [27, 4, 1, "", "model_name"], [27, 4, 1, "", "model_type"]], "agentscope.models.post_model.PostAPIDALLEWrapper": [[27, 4, 1, "", "deprecated_model_type"], [27, 2, 1, "", "format"], [27, 4, 1, "", "model_type"]], "agentscope.models.post_model.PostAPIEmbeddingWrapper": [[27, 2, 1, "", "format"], [27, 4, 1, "", "model_type"]], "agentscope.models.post_model.PostAPIModelWrapperBase": [[27, 2, 1, "", "__init__"], [27, 4, 1, "", "config_name"], [27, 4, 1, "", "model_name"], [27, 4, 1, "", "model_type"]], "agentscope.models.response": [[28, 1, 1, "", "ModelResponse"]], "agentscope.models.response.ModelResponse": [[28, 2, 1, "", "__init__"], [28, 3, 1, "", "is_stream_exhausted"], [28, 3, 1, "", "stream"], [28, 3, 1, "", "text"]], "agentscope.models.yi_model": [[29, 1, 1, "", "YiChatWrapper"]], "agentscope.models.yi_model.YiChatWrapper": [[29, 2, 1, "", "__init__"], [29, 4, 1, "", "config_name"], [29, 2, 1, "", "format"], [29, 4, 1, "", "model_name"], [29, 4, 1, "", "model_type"]], "agentscope.models.zhipu_model": [[30, 1, 1, "", "ZhipuAIChatWrapper"], [30, 1, 1, "", "ZhipuAIEmbeddingWrapper"], [30, 1, 1, "", "ZhipuAIWrapperBase"]], "agentscope.models.zhipu_model.ZhipuAIChatWrapper": [[30, 2, 1, "", "__init__"], [30, 4, 1, "", "config_name"], [30, 2, 1, "", "format"], [30, 4, 1, "", "model_name"], [30, 4, 1, "", "model_type"]], "agentscope.models.zhipu_model.ZhipuAIEmbeddingWrapper": [[30, 4, 1, "", "config_name"], [30, 4, 1, "", "model_name"], [30, 4, 1, "", "model_type"]], "agentscope.models.zhipu_model.ZhipuAIWrapperBase": [[30, 2, 1, "", "__init__"], [30, 2, 1, "", "format"]], "agentscope.msghub": [[31, 1, 1, "", "MsgHubManager"], [31, 6, 1, "", "msghub"]], "agentscope.msghub.MsgHubManager": [[31, 2, 1, "", "__init__"], [31, 2, 1, "", "add"], [31, 2, 1, "", "broadcast"], [31, 2, 1, "", "delete"]], "agentscope.parsers": [[32, 1, 1, "", "MarkdownCodeBlockParser"], [32, 1, 1, "", "MarkdownJsonDictParser"], [32, 1, 1, "", "MarkdownJsonObjectParser"], [32, 1, 1, "", "MultiTaggedContentParser"], [32, 1, 1, "", "ParserBase"], [32, 1, 1, "", "RegexTaggedContentParser"], [32, 1, 1, "", "TaggedContent"], [33, 0, 0, "-", "code_block_parser"], [34, 0, 0, "-", "json_object_parser"], [35, 0, 0, "-", "parser_base"], [36, 0, 0, "-", "regex_tagged_content_parser"], [37, 0, 0, "-", "tagged_content_parser"]], "agentscope.parsers.MarkdownCodeBlockParser": [[32, 2, 1, "", "__init__"], [32, 4, 1, "", "content_hint"], [32, 4, 1, "", "format_instruction"], [32, 4, 1, "", "name"], [32, 2, 1, "", "parse"], [32, 4, 1, "", "tag_begin"], [32, 4, 1, "", "tag_end"]], "agentscope.parsers.MarkdownJsonDictParser": [[32, 2, 1, "", "__init__"], [32, 4, 1, "", "content_hint"], [32, 3, 1, "", "format_instruction"], [32, 4, 1, "", "name"], [32, 2, 1, "", "parse"], [32, 4, 1, "", "required_keys"], [32, 4, 1, "", "tag_begin"], [32, 4, 1, "", "tag_end"]], "agentscope.parsers.MarkdownJsonObjectParser": [[32, 2, 1, "", "__init__"], [32, 4, 1, "", "content_hint"], [32, 3, 1, "", "format_instruction"], [32, 4, 1, "", "name"], [32, 2, 1, "", "parse"], [32, 4, 1, "", "tag_begin"], [32, 4, 1, "", "tag_end"]], "agentscope.parsers.MultiTaggedContentParser": [[32, 2, 1, "", "__init__"], [32, 4, 1, "", "format_instruction"], [32, 4, 1, "", "json_required_hint"], [32, 2, 1, "", "parse"]], "agentscope.parsers.ParserBase": [[32, 2, 1, "", "parse"]], "agentscope.parsers.RegexTaggedContentParser": [[32, 2, 1, "", "__init__"], [32, 3, 1, "", "format_instruction"], [32, 2, 1, "", "parse"]], "agentscope.parsers.TaggedContent": [[32, 2, 1, "", "__init__"], [32, 4, 1, "", "content_hint"], [32, 4, 1, "", "name"], [32, 4, 1, "", "parse_json"], [32, 4, 1, "", "tag_begin"], [32, 4, 1, "", "tag_end"]], "agentscope.parsers.code_block_parser": [[33, 1, 1, "", "MarkdownCodeBlockParser"]], "agentscope.parsers.code_block_parser.MarkdownCodeBlockParser": [[33, 2, 1, "", "__init__"], [33, 4, 1, "", "content_hint"], [33, 4, 1, "", "format_instruction"], [33, 4, 1, "", "name"], [33, 2, 1, "", "parse"], [33, 4, 1, "", "tag_begin"], [33, 4, 1, "", "tag_end"]], "agentscope.parsers.json_object_parser": [[34, 1, 1, "", "MarkdownJsonDictParser"], [34, 1, 1, "", "MarkdownJsonObjectParser"]], "agentscope.parsers.json_object_parser.MarkdownJsonDictParser": [[34, 2, 1, "", "__init__"], [34, 4, 1, "", "content_hint"], [34, 3, 1, "", "format_instruction"], [34, 4, 1, "", "name"], [34, 2, 1, "", "parse"], [34, 4, 1, "", "required_keys"], [34, 4, 1, "", "tag_begin"], [34, 4, 1, "", "tag_end"]], "agentscope.parsers.json_object_parser.MarkdownJsonObjectParser": [[34, 2, 1, "", "__init__"], [34, 4, 1, "", "content_hint"], [34, 3, 1, "", "format_instruction"], [34, 4, 1, "", "name"], [34, 2, 1, "", "parse"], [34, 4, 1, "", "tag_begin"], [34, 4, 1, "", "tag_end"]], "agentscope.parsers.parser_base": [[35, 1, 1, "", "DictFilterMixin"], [35, 1, 1, "", "ParserBase"]], "agentscope.parsers.parser_base.DictFilterMixin": [[35, 2, 1, "", "__init__"], [35, 2, 1, "", "to_content"], [35, 2, 1, "", "to_memory"], [35, 2, 1, "", "to_metadata"]], "agentscope.parsers.parser_base.ParserBase": [[35, 2, 1, "", "parse"]], "agentscope.parsers.regex_tagged_content_parser": [[36, 1, 1, "", "RegexTaggedContentParser"]], "agentscope.parsers.regex_tagged_content_parser.RegexTaggedContentParser": [[36, 2, 1, "", "__init__"], [36, 3, 1, "", "format_instruction"], [36, 2, 1, "", "parse"]], "agentscope.parsers.tagged_content_parser": [[37, 1, 1, "", "MultiTaggedContentParser"], [37, 1, 1, "", "TaggedContent"]], "agentscope.parsers.tagged_content_parser.MultiTaggedContentParser": [[37, 2, 1, "", "__init__"], [37, 4, 1, "", "format_instruction"], [37, 4, 1, "", "json_required_hint"], [37, 2, 1, "", "parse"]], "agentscope.parsers.tagged_content_parser.TaggedContent": [[37, 2, 1, "", "__init__"], [37, 4, 1, "", "content_hint"], [37, 4, 1, "", "name"], [37, 4, 1, "", "parse_json"], [37, 4, 1, "", "tag_begin"], [37, 4, 1, "", "tag_end"]], "agentscope.pipelines": [[38, 1, 1, "", "ForLoopPipeline"], [38, 1, 1, "", "IfElsePipeline"], [38, 1, 1, "", "PipelineBase"], [38, 1, 1, "", "SequentialPipeline"], [38, 1, 1, "", "SwitchPipeline"], [38, 1, 1, "", "WhileLoopPipeline"], [38, 6, 1, "", "forlooppipeline"], [39, 0, 0, "-", "functional"], [38, 6, 1, "", "ifelsepipeline"], [40, 0, 0, "-", "pipeline"], [38, 6, 1, "", "sequentialpipeline"], [38, 6, 1, "", "switchpipeline"], [38, 6, 1, "", "whilelooppipeline"]], "agentscope.pipelines.ForLoopPipeline": [[38, 2, 1, "", "__init__"]], "agentscope.pipelines.IfElsePipeline": [[38, 2, 1, "", "__init__"]], "agentscope.pipelines.PipelineBase": [[38, 2, 1, "", "__init__"]], "agentscope.pipelines.SequentialPipeline": [[38, 2, 1, "", "__init__"]], "agentscope.pipelines.SwitchPipeline": [[38, 2, 1, "", "__init__"]], "agentscope.pipelines.WhileLoopPipeline": [[38, 2, 1, "", "__init__"]], "agentscope.pipelines.functional": [[39, 6, 1, "", "forlooppipeline"], [39, 6, 1, "", "ifelsepipeline"], [39, 6, 1, "", "placeholder"], [39, 6, 1, "", "sequentialpipeline"], [39, 6, 1, "", "switchpipeline"], [39, 6, 1, "", "whilelooppipeline"]], "agentscope.pipelines.pipeline": [[40, 1, 1, "", "ForLoopPipeline"], [40, 1, 1, "", "IfElsePipeline"], [40, 1, 1, "", "PipelineBase"], [40, 1, 1, "", "SequentialPipeline"], [40, 1, 1, "", "SwitchPipeline"], [40, 1, 1, "", "WhileLoopPipeline"]], "agentscope.pipelines.pipeline.ForLoopPipeline": [[40, 2, 1, "", "__init__"]], "agentscope.pipelines.pipeline.IfElsePipeline": [[40, 2, 1, "", "__init__"]], "agentscope.pipelines.pipeline.PipelineBase": [[40, 2, 1, "", "__init__"]], "agentscope.pipelines.pipeline.SequentialPipeline": [[40, 2, 1, "", "__init__"]], "agentscope.pipelines.pipeline.SwitchPipeline": [[40, 2, 1, "", "__init__"]], "agentscope.pipelines.pipeline.WhileLoopPipeline": [[40, 2, 1, "", "__init__"]], "agentscope.prompt": [[41, 1, 1, "", "ChineseSystemPromptGenerator"], [41, 1, 1, "", "EnglishSystemPromptGenerator"], [41, 1, 1, "", "SystemPromptComparer"], [41, 1, 1, "", "SystemPromptGeneratorBase"], [41, 1, 1, "", "SystemPromptOptimizer"]], "agentscope.prompt.ChineseSystemPromptGenerator": [[41, 2, 1, "", "__init__"]], "agentscope.prompt.EnglishSystemPromptGenerator": [[41, 2, 1, "", "__init__"]], "agentscope.prompt.SystemPromptComparer": [[41, 2, 1, "", "__init__"], [41, 2, 1, "", "compare_in_dialog"], [41, 2, 1, "", "compare_with_queries"]], "agentscope.prompt.SystemPromptGeneratorBase": [[41, 2, 1, "", "__init__"], [41, 2, 1, "", "generate"]], "agentscope.prompt.SystemPromptOptimizer": [[41, 2, 1, "", "__init__"], [41, 2, 1, "", "generate_notes"]], "agentscope.rag": [[42, 1, 1, "", "Knowledge"], [42, 1, 1, "", "KnowledgeBank"], [43, 0, 0, "-", "knowledge"], [44, 0, 0, "-", "knowledge_bank"], [45, 0, 0, "-", "llama_index_knowledge"]], "agentscope.rag.Knowledge": [[42, 2, 1, "", "__init__"], [42, 2, 1, "", "post_processing"], [42, 2, 1, "", "retrieve"]], "agentscope.rag.KnowledgeBank": [[42, 2, 1, "", "__init__"], [42, 2, 1, "", "add_data_as_knowledge"], [42, 2, 1, "", "equip"], [42, 2, 1, "", "get_knowledge"]], "agentscope.rag.knowledge": [[43, 1, 1, "", "Knowledge"]], "agentscope.rag.knowledge.Knowledge": [[43, 2, 1, "", "__init__"], [43, 2, 1, "", "post_processing"], [43, 2, 1, "", "retrieve"]], "agentscope.rag.knowledge_bank": [[44, 1, 1, "", "KnowledgeBank"]], "agentscope.rag.knowledge_bank.KnowledgeBank": [[44, 2, 1, "", "__init__"], [44, 2, 1, "", "add_data_as_knowledge"], [44, 2, 1, "", "equip"], [44, 2, 1, "", "get_knowledge"]], "agentscope.rag.llama_index_knowledge": [[45, 1, 1, "", "LlamaIndexKnowledge"]], "agentscope.rag.llama_index_knowledge.LlamaIndexKnowledge": [[45, 2, 1, "", "__init__"], [45, 2, 1, "", "refresh_index"], [45, 2, 1, "", "retrieve"]], "agentscope.rpc": [[46, 1, 1, "", "ResponseStub"], [46, 1, 1, "", "RpcAgentClient"], [46, 1, 1, "", "RpcAgentServicer"], [46, 1, 1, "", "RpcAgentStub"], [46, 1, 1, "", "RpcMsg"], [46, 6, 1, "", "add_RpcAgentServicer_to_server"], [46, 6, 1, "", "call_in_thread"], [47, 0, 0, "-", "rpc_agent_client"], [48, 0, 0, "-", "rpc_agent_pb2"], [49, 0, 0, "-", "rpc_agent_pb2_grpc"]], "agentscope.rpc.ResponseStub": [[46, 2, 1, "", "__init__"], [46, 2, 1, "", "get_response"], [46, 2, 1, "", "set_response"]], "agentscope.rpc.RpcAgentClient": [[46, 2, 1, "", "__init__"], [46, 2, 1, "", "call_agent_func"], [46, 2, 1, "", "clone_agent"], [46, 2, 1, "", "create_agent"], [46, 2, 1, "", "delete_agent"], [46, 2, 1, "", "delete_all_agent"], [46, 2, 1, "", "download_file"], [46, 2, 1, "", "get_agent_list"], [46, 2, 1, "", "get_agent_memory"], [46, 2, 1, "", "get_server_info"], [46, 2, 1, "", "is_alive"], [46, 2, 1, "", "set_model_configs"], [46, 2, 1, "", "stop"], [46, 2, 1, "", "update_placeholder"]], "agentscope.rpc.RpcAgentServicer": [[46, 2, 1, "", "call_agent_func"], [46, 2, 1, "", "clone_agent"], [46, 2, 1, "", "create_agent"], [46, 2, 1, "", "delete_agent"], [46, 2, 1, "", "delete_all_agents"], [46, 2, 1, "", "download_file"], [46, 2, 1, "", "get_agent_list"], [46, 2, 1, "", "get_agent_memory"], [46, 2, 1, "", "get_server_info"], [46, 2, 1, "", "is_alive"], [46, 2, 1, "", "set_model_configs"], [46, 2, 1, "", "stop"], [46, 2, 1, "", "update_placeholder"]], "agentscope.rpc.RpcAgentStub": [[46, 2, 1, "", "__init__"]], "agentscope.rpc.RpcMsg": [[46, 4, 1, "", "DESCRIPTOR"]], "agentscope.rpc.rpc_agent_client": [[47, 1, 1, "", "ResponseStub"], [47, 1, 1, "", "RpcAgentClient"], [47, 6, 1, "", "call_in_thread"]], "agentscope.rpc.rpc_agent_client.ResponseStub": [[47, 2, 1, "", "__init__"], [47, 2, 1, "", "get_response"], [47, 2, 1, "", "set_response"]], "agentscope.rpc.rpc_agent_client.RpcAgentClient": [[47, 2, 1, "", "__init__"], [47, 2, 1, "", "call_agent_func"], [47, 2, 1, "", "clone_agent"], [47, 2, 1, "", "create_agent"], [47, 2, 1, "", "delete_agent"], [47, 2, 1, "", "delete_all_agent"], [47, 2, 1, "", "download_file"], [47, 2, 1, "", "get_agent_list"], [47, 2, 1, "", "get_agent_memory"], [47, 2, 1, "", "get_server_info"], [47, 2, 1, "", "is_alive"], [47, 2, 1, "", "set_model_configs"], [47, 2, 1, "", "stop"], [47, 2, 1, "", "update_placeholder"]], "agentscope.rpc.rpc_agent_pb2_grpc": [[49, 1, 1, "", "RpcAgent"], [49, 1, 1, "", "RpcAgentServicer"], [49, 1, 1, "", "RpcAgentStub"], [49, 6, 1, "", "add_RpcAgentServicer_to_server"]], "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgent": [[49, 2, 1, "", "call_agent_func"], [49, 2, 1, "", "clone_agent"], [49, 2, 1, "", "create_agent"], [49, 2, 1, "", "delete_agent"], [49, 2, 1, "", "delete_all_agents"], [49, 2, 1, "", "download_file"], [49, 2, 1, "", "get_agent_list"], [49, 2, 1, "", "get_agent_memory"], [49, 2, 1, "", "get_server_info"], [49, 2, 1, "", "is_alive"], [49, 2, 1, "", "set_model_configs"], [49, 2, 1, "", "stop"], [49, 2, 1, "", "update_placeholder"]], "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgentServicer": [[49, 2, 1, "", "call_agent_func"], [49, 2, 1, "", "clone_agent"], [49, 2, 1, "", "create_agent"], [49, 2, 1, "", "delete_agent"], [49, 2, 1, "", "delete_all_agents"], [49, 2, 1, "", "download_file"], [49, 2, 1, "", "get_agent_list"], [49, 2, 1, "", "get_agent_memory"], [49, 2, 1, "", "get_server_info"], [49, 2, 1, "", "is_alive"], [49, 2, 1, "", "set_model_configs"], [49, 2, 1, "", "stop"], [49, 2, 1, "", "update_placeholder"]], "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgentStub": [[49, 2, 1, "", "__init__"]], "agentscope.serialize": [[50, 6, 1, "", "deserialize"], [50, 6, 1, "", "is_serializable"], [50, 6, 1, "", "serialize"]], "agentscope.server": [[51, 1, 1, "", "AgentServerServicer"], [51, 1, 1, "", "RpcAgentServerLauncher"], [51, 6, 1, "", "as_server"], [52, 0, 0, "-", "launcher"], [53, 0, 0, "-", "servicer"]], "agentscope.server.AgentServerServicer": [[51, 2, 1, "", "__init__"], [51, 2, 1, "", "agent_exists"], [51, 2, 1, "", "call_agent_func"], [51, 2, 1, "", "clone_agent"], [51, 2, 1, "", "create_agent"], [51, 2, 1, "", "delete_agent"], [51, 2, 1, "", "delete_all_agents"], [51, 2, 1, "", "download_file"], [51, 2, 1, "", "get_agent"], [51, 2, 1, "", "get_agent_list"], [51, 2, 1, "", "get_agent_memory"], [51, 2, 1, "", "get_server_info"], [51, 2, 1, "", "get_task_id"], [51, 2, 1, "", "is_alive"], [51, 2, 1, "", "set_model_configs"], [51, 2, 1, "", "stop"], [51, 2, 1, "", "update_placeholder"]], "agentscope.server.RpcAgentServerLauncher": [[51, 2, 1, "", "__init__"], [51, 2, 1, "", "generate_server_id"], [51, 2, 1, "", "launch"], [51, 2, 1, "", "shutdown"], [51, 2, 1, "", "wait_until_terminate"]], "agentscope.server.launcher": [[52, 1, 1, "", "RpcAgentServerLauncher"], [52, 6, 1, "", "as_server"], [52, 6, 1, "", "load_agents_from_dir"], [52, 6, 1, "", "load_agents_from_file"]], "agentscope.server.launcher.RpcAgentServerLauncher": [[52, 2, 1, "", "__init__"], [52, 2, 1, "", "generate_server_id"], [52, 2, 1, "", "launch"], [52, 2, 1, "", "shutdown"], [52, 2, 1, "", "wait_until_terminate"]], "agentscope.server.servicer": [[53, 1, 1, "", "AgentServerServicer"]], "agentscope.server.servicer.AgentServerServicer": [[53, 2, 1, "", "__init__"], [53, 2, 1, "", "agent_exists"], [53, 2, 1, "", "call_agent_func"], [53, 2, 1, "", "clone_agent"], [53, 2, 1, "", "create_agent"], [53, 2, 1, "", "delete_agent"], [53, 2, 1, "", "delete_all_agents"], [53, 2, 1, "", "download_file"], [53, 2, 1, "", "get_agent"], [53, 2, 1, "", "get_agent_list"], [53, 2, 1, "", "get_agent_memory"], [53, 2, 1, "", "get_server_info"], [53, 2, 1, "", "get_task_id"], [53, 2, 1, "", "is_alive"], [53, 2, 1, "", "set_model_configs"], [53, 2, 1, "", "stop"], [53, 2, 1, "", "update_placeholder"]], "agentscope.service": [[54, 1, 1, "", "NoteBookExecutor"], [54, 1, 1, "", "ServiceExecStatus"], [54, 1, 1, "", "ServiceFactory"], [54, 1, 1, "", "ServiceResponse"], [54, 1, 1, "", "ServiceToolkit"], [54, 1, 1, "", "WebBrowser"], [54, 1, 1, "", "WebElementInfo"], [54, 6, 1, "", "arxiv_search"], [54, 6, 1, "", "bing_search"], [55, 0, 0, "-", "browser"], [54, 6, 1, "", "cos_sim"], [54, 6, 1, "", "create_directory"], [54, 6, 1, "", "create_file"], [54, 6, 1, "", "dashscope_image_to_text"], [54, 6, 1, "", "dashscope_text_to_audio"], [54, 6, 1, "", "dashscope_text_to_image"], [54, 6, 1, "", "dblp_search_authors"], [54, 6, 1, "", "dblp_search_publications"], [54, 6, 1, "", "dblp_search_venues"], [54, 6, 1, "", "delete_directory"], [54, 6, 1, "", "delete_file"], [54, 6, 1, "", "digest_webpage"], [54, 6, 1, "", "download_from_url"], [57, 0, 0, "-", "execute_code"], [54, 6, 1, "", "execute_python_code"], [54, 6, 1, "", "execute_shell_command"], [61, 0, 0, "-", "file"], [54, 6, 1, "", "get_current_directory"], [54, 6, 1, "", "get_help"], [54, 6, 1, "", "google_search"], [54, 6, 1, "", "list_directory_content"], [54, 6, 1, "", "load_web"], [54, 6, 1, "", "move_directory"], [54, 6, 1, "", "move_file"], [65, 0, 0, "-", "multi_modality"], [54, 6, 1, "", "openai_audio_to_text"], [54, 6, 1, "", "openai_create_image_variation"], [54, 6, 1, "", "openai_edit_image"], [54, 6, 1, "", "openai_image_to_text"], [54, 6, 1, "", "openai_text_to_audio"], [54, 6, 1, "", "openai_text_to_image"], [54, 6, 1, "", "parse_html_to_text"], [54, 6, 1, "", "query_mongodb"], [54, 6, 1, "", "query_mysql"], [54, 6, 1, "", "query_sqlite"], [54, 6, 1, "", "read_json_file"], [54, 6, 1, "", "read_text_file"], [68, 0, 0, "-", "retrieval"], [54, 6, 1, "", "retrieve_from_list"], [71, 0, 0, "-", "service_response"], [72, 0, 0, "-", "service_status"], [73, 0, 0, "-", "service_toolkit"], [74, 0, 0, "-", "sql_query"], [54, 6, 1, "", "summarization"], [78, 0, 0, "-", "text_processing"], [54, 6, 1, "", "tripadvisor_search"], [54, 6, 1, "", "tripadvisor_search_location_details"], [54, 6, 1, "", "tripadvisor_search_location_photos"], [80, 0, 0, "-", "web"], [54, 6, 1, "", "wikipedia_search"], [54, 6, 1, "", "wikipedia_search_categories"], [54, 6, 1, "", "write_json_file"], [54, 6, 1, "", "write_text_file"]], "agentscope.service.NoteBookExecutor": [[54, 2, 1, "", "__init__"], [54, 2, 1, "", "async_run_code_on_notebook"], [54, 3, 1, "", "cells_length"], [54, 2, 1, "", "reset_notebook"], [54, 2, 1, "", "run_code_on_notebook"]], "agentscope.service.ServiceExecStatus": [[54, 4, 1, "", "ERROR"], [54, 4, 1, "", "SUCCESS"]], "agentscope.service.ServiceFactory": [[54, 2, 1, "", "get"]], "agentscope.service.ServiceResponse": [[54, 2, 1, "", "__init__"]], "agentscope.service.ServiceToolkit": [[54, 2, 1, "", "__init__"], [54, 2, 1, "", "add"], [54, 2, 1, "", "get"], [54, 3, 1, "", "json_schemas"], [54, 2, 1, "", "parse_and_call_func"], [54, 4, 1, "", "service_funcs"], [54, 3, 1, "", "tools_calling_format"], [54, 3, 1, "", "tools_instruction"]], "agentscope.service.WebBrowser": [[54, 2, 1, "", "__init__"], [54, 2, 1, "", "action_click"], [54, 2, 1, "", "action_press_key"], [54, 2, 1, "", "action_scroll_down"], [54, 2, 1, "", "action_scroll_up"], [54, 2, 1, "", "action_type"], [54, 2, 1, "", "action_visit_url"], [54, 2, 1, "", "close"], [54, 2, 1, "", "get_action_functions"], [54, 3, 1, "", "page_html"], [54, 3, 1, "", "page_markdown"], [54, 3, 1, "", "page_screenshot"], [54, 3, 1, "", "page_title"], [54, 2, 1, "", "remove_interactive_marks"], [54, 2, 1, "", "set_interactive_marks"], [54, 3, 1, "", "url"]], "agentscope.service.WebElementInfo": [[54, 4, 1, "", "aria_label"], [54, 4, 1, "", "height"], [54, 4, 1, "", "html"], [54, 4, 1, "", "inner_text"], [54, 4, 1, "", "is_clickable"], [54, 4, 1, "", "meta_data"], [54, 4, 1, "", "model_computed_fields"], [54, 4, 1, "", "model_config"], [54, 4, 1, "", "model_fields"], [54, 4, 1, "", "node_name"], [54, 4, 1, "", "node_value"], [54, 4, 1, "", "origin_x"], [54, 4, 1, "", "origin_y"], [54, 4, 1, "", "tag_name"], [54, 4, 1, "", "type"], [54, 4, 1, "", "width"]], "agentscope.service.browser": [[56, 0, 0, "-", "web_browser"]], "agentscope.service.browser.web_browser": [[56, 1, 1, "", "WebBrowser"], [56, 1, 1, "", "WebElementInfo"]], "agentscope.service.browser.web_browser.WebBrowser": [[56, 2, 1, "", "__init__"], [56, 2, 1, "", "action_click"], [56, 2, 1, "", "action_press_key"], [56, 2, 1, "", "action_scroll_down"], [56, 2, 1, "", "action_scroll_up"], [56, 2, 1, "", "action_type"], [56, 2, 1, "", "action_visit_url"], [56, 2, 1, "", "close"], [56, 2, 1, "", "get_action_functions"], [56, 3, 1, "", "page_html"], [56, 3, 1, "", "page_markdown"], [56, 3, 1, "", "page_screenshot"], [56, 3, 1, "", "page_title"], [56, 2, 1, "", "remove_interactive_marks"], [56, 2, 1, "", "set_interactive_marks"], [56, 3, 1, "", "url"]], "agentscope.service.browser.web_browser.WebElementInfo": [[56, 4, 1, "", "aria_label"], [56, 4, 1, "", "height"], [56, 4, 1, "", "html"], [56, 4, 1, "", "inner_text"], [56, 4, 1, "", "is_clickable"], [56, 4, 1, "", "meta_data"], [56, 4, 1, "", "model_computed_fields"], [56, 4, 1, "", "model_config"], [56, 4, 1, "", "model_fields"], [56, 4, 1, "", "node_name"], [56, 4, 1, "", "node_value"], [56, 4, 1, "", "origin_x"], [56, 4, 1, "", "origin_y"], [56, 4, 1, "", "tag_name"], [56, 4, 1, "", "type"], [56, 4, 1, "", "width"]], "agentscope.service.execute_code": [[58, 0, 0, "-", "exec_notebook"], [59, 0, 0, "-", "exec_python"], [60, 0, 0, "-", "exec_shell"]], "agentscope.service.execute_code.exec_notebook": [[58, 1, 1, "", "NoteBookExecutor"]], "agentscope.service.execute_code.exec_notebook.NoteBookExecutor": [[58, 2, 1, "", "__init__"], [58, 2, 1, "", "async_run_code_on_notebook"], [58, 3, 1, "", "cells_length"], [58, 2, 1, "", "reset_notebook"], [58, 2, 1, "", "run_code_on_notebook"]], "agentscope.service.execute_code.exec_python": [[59, 6, 1, "", "execute_python_code"], [59, 6, 1, "", "sys_python_guard"]], "agentscope.service.execute_code.exec_shell": [[60, 6, 1, "", "execute_shell_command"]], "agentscope.service.file": [[62, 0, 0, "-", "common"], [63, 0, 0, "-", "json"], [64, 0, 0, "-", "text"]], "agentscope.service.file.common": [[62, 6, 1, "", "create_directory"], [62, 6, 1, "", "create_file"], [62, 6, 1, "", "delete_directory"], [62, 6, 1, "", "delete_file"], [62, 6, 1, "", "get_current_directory"], [62, 6, 1, "", "list_directory_content"], [62, 6, 1, "", "move_directory"], [62, 6, 1, "", "move_file"]], "agentscope.service.file.json": [[63, 6, 1, "", "read_json_file"], [63, 6, 1, "", "write_json_file"]], "agentscope.service.file.text": [[64, 6, 1, "", "read_text_file"], [64, 6, 1, "", "write_text_file"]], "agentscope.service.multi_modality": [[66, 0, 0, "-", "dashscope_services"], [67, 0, 0, "-", "openai_services"]], "agentscope.service.multi_modality.dashscope_services": [[66, 6, 1, "", "dashscope_image_to_text"], [66, 6, 1, "", "dashscope_text_to_audio"], [66, 6, 1, "", "dashscope_text_to_image"]], "agentscope.service.multi_modality.openai_services": [[67, 6, 1, "", "openai_audio_to_text"], [67, 6, 1, "", "openai_create_image_variation"], [67, 6, 1, "", "openai_edit_image"], [67, 6, 1, "", "openai_image_to_text"], [67, 6, 1, "", "openai_text_to_audio"], [67, 6, 1, "", "openai_text_to_image"]], "agentscope.service.retrieval": [[69, 0, 0, "-", "retrieval_from_list"], [70, 0, 0, "-", "similarity"]], "agentscope.service.retrieval.retrieval_from_list": [[69, 6, 1, "", "retrieve_from_list"]], "agentscope.service.retrieval.similarity": [[70, 6, 1, "", "cos_sim"]], "agentscope.service.service_response": [[71, 1, 1, "", "ServiceResponse"]], "agentscope.service.service_response.ServiceResponse": [[71, 2, 1, "", "__init__"]], "agentscope.service.service_status": [[72, 1, 1, "", "ServiceExecStatus"]], "agentscope.service.service_status.ServiceExecStatus": [[72, 4, 1, "", "ERROR"], [72, 4, 1, "", "SUCCESS"]], "agentscope.service.service_toolkit": [[73, 1, 1, "", "ServiceFactory"], [73, 1, 1, "", "ServiceFunction"], [73, 1, 1, "", "ServiceToolkit"]], "agentscope.service.service_toolkit.ServiceFactory": [[73, 2, 1, "", "get"]], "agentscope.service.service_toolkit.ServiceFunction": [[73, 2, 1, "", "__init__"], [73, 4, 1, "", "json_schema"], [73, 4, 1, "", "name"], [73, 4, 1, "", "original_func"], [73, 4, 1, "", "processed_func"], [73, 4, 1, "", "require_args"]], "agentscope.service.service_toolkit.ServiceToolkit": [[73, 2, 1, "", "__init__"], [73, 2, 1, "", "add"], [73, 2, 1, "", "get"], [73, 3, 1, "", "json_schemas"], [73, 2, 1, "", "parse_and_call_func"], [73, 4, 1, "", "service_funcs"], [73, 3, 1, "", "tools_calling_format"], [73, 3, 1, "", "tools_instruction"]], "agentscope.service.sql_query": [[75, 0, 0, "-", "mongodb"], [76, 0, 0, "-", "mysql"], [77, 0, 0, "-", "sqlite"]], "agentscope.service.sql_query.mongodb": [[75, 6, 1, "", "query_mongodb"]], "agentscope.service.sql_query.mysql": [[76, 6, 1, "", "query_mysql"]], "agentscope.service.sql_query.sqlite": [[77, 6, 1, "", "query_sqlite"]], "agentscope.service.text_processing": [[79, 0, 0, "-", "summarization"]], "agentscope.service.text_processing.summarization": [[79, 6, 1, "", "summarization"]], "agentscope.service.web": [[81, 0, 0, "-", "arxiv"], [82, 0, 0, "-", "dblp"], [83, 0, 0, "-", "download"], [84, 0, 0, "-", "search"], [85, 0, 0, "-", "tripadvisor"], [86, 0, 0, "-", "web_digest"], [87, 0, 0, "-", "wikipedia"]], "agentscope.service.web.arxiv": [[81, 6, 1, "", "arxiv_search"]], "agentscope.service.web.dblp": [[82, 6, 1, "", "dblp_search_authors"], [82, 6, 1, "", "dblp_search_publications"], [82, 6, 1, "", "dblp_search_venues"]], "agentscope.service.web.download": [[83, 6, 1, "", "download_from_url"]], "agentscope.service.web.search": [[84, 6, 1, "", "bing_search"], [84, 6, 1, "", "google_search"]], "agentscope.service.web.tripadvisor": [[85, 6, 1, "", "tripadvisor_search"], [85, 6, 1, "", "tripadvisor_search_location_details"], [85, 6, 1, "", "tripadvisor_search_location_photos"]], "agentscope.service.web.web_digest": [[86, 6, 1, "", "digest_webpage"], [86, 6, 1, "", "is_valid_url"], [86, 6, 1, "", "load_web"], [86, 6, 1, "", "parse_html_to_text"]], "agentscope.service.web.wikipedia": [[87, 6, 1, "", "wikipedia_search"], [87, 6, 1, "", "wikipedia_search_categories"]], "agentscope.strategy": [[88, 1, 1, "", "MixtureOfAgents"], [89, 0, 0, "-", "mixture_of_agent"]], "agentscope.strategy.MixtureOfAgents": [[88, 2, 1, "", "__init__"]], "agentscope.strategy.mixture_of_agent": [[89, 1, 1, "", "MixtureOfAgents"]], "agentscope.strategy.mixture_of_agent.MixtureOfAgents": [[89, 2, 1, "", "__init__"]], "agentscope.studio": [[90, 6, 1, "", "init"], [91, 0, 0, "-", "utils"]], "agentscope.studio.utils": [[91, 6, 1, "", "decode_jwt"], [91, 6, 1, "", "generate_jwt"]], "agentscope.utils": [[93, 0, 0, "-", "common"], [94, 0, 0, "-", "token_utils"]], "agentscope.utils.common": [[93, 1, 1, "", "ImportErrorReporter"], [93, 6, 1, "", "create_tempdir"], [93, 6, 1, "", "timer"], [93, 6, 1, "", "to_openai_dict"]], "agentscope.utils.common.ImportErrorReporter": [[93, 2, 1, "", "__init__"]], "agentscope.utils.token_utils": [[94, 6, 1, "", "count_openai_token"], [94, 6, 1, "", "get_openai_max_length"], [94, 6, 1, "", "num_tokens_from_content"]], "agentscope.web": [[96, 0, 0, "-", "gradio"], [100, 0, 0, "-", "workstation"]], "agentscope.web.gradio": [[97, 0, 0, "-", "constants"], [98, 0, 0, "-", "studio"], [99, 0, 0, "-", "utils"]], "agentscope.web.gradio.studio": [[98, 6, 1, "", "fn_choice"], [98, 6, 1, "", "get_chat"], [98, 6, 1, "", "import_function_from_path"], [98, 6, 1, "", "init_uid_list"], [98, 6, 1, "", "reset_glb_var"], [98, 6, 1, "", "run_app"], [98, 6, 1, "", "send_audio"], [98, 6, 1, "", "send_image"], [98, 6, 1, "", "send_message"]], "agentscope.web.gradio.utils": [[99, 5, 1, "", "ResetException"], [99, 6, 1, "", "audio2text"], [99, 6, 1, "", "check_uuid"], [99, 6, 1, "", "cycle_dots"], [99, 6, 1, "", "generate_image_from_name"], [99, 6, 1, "", "get_chat_msg"], [99, 6, 1, "", "get_player_input"], [99, 6, 1, "", "get_reset_msg"], [99, 6, 1, "", "init_uid_queues"], [99, 6, 1, "", "send_msg"], [99, 6, 1, "", "send_player_input"], [99, 6, 1, "", "send_reset_msg"], [99, 6, 1, "", "user_input"]], "agentscope.web.workstation": [[101, 0, 0, "-", "workflow"], [102, 0, 0, "-", "workflow_dag"], [103, 0, 0, "-", "workflow_node"], [104, 0, 0, "-", "workflow_utils"]], "agentscope.web.workstation.workflow": [[101, 6, 1, "", "compile_workflow"], [101, 6, 1, "", "load_config"], [101, 6, 1, "", "main"], [101, 6, 1, "", "start_workflow"]], "agentscope.web.workstation.workflow_dag": [[102, 1, 1, "", "ASDiGraph"], [102, 6, 1, "", "build_dag"], [102, 6, 1, "", "remove_duplicates_from_end"], [102, 6, 1, "", "sanitize_node_data"]], "agentscope.web.workstation.workflow_dag.ASDiGraph": [[102, 2, 1, "", "__init__"], [102, 2, 1, "", "add_as_node"], [102, 2, 1, "", "compile"], [102, 2, 1, "", "exec_node"], [102, 4, 1, "", "nodes_not_in_graph"], [102, 2, 1, "", "run"]], "agentscope.web.workstation.workflow_node": [[103, 1, 1, "", "BingSearchServiceNode"], [103, 1, 1, "", "CopyNode"], [103, 1, 1, "", "DialogAgentNode"], [103, 1, 1, "", "DictDialogAgentNode"], [103, 1, 1, "", "ForLoopPipelineNode"], [103, 1, 1, "", "GoogleSearchServiceNode"], [103, 1, 1, "", "IfElsePipelineNode"], [103, 1, 1, "", "ModelNode"], [103, 1, 1, "", "MsgHubNode"], [103, 1, 1, "", "MsgNode"], [103, 1, 1, "", "PlaceHolderNode"], [103, 1, 1, "", "PythonServiceNode"], [103, 1, 1, "", "ReActAgentNode"], [103, 1, 1, "", "ReadTextServiceNode"], [103, 1, 1, "", "SequentialPipelineNode"], [103, 1, 1, "", "SwitchPipelineNode"], [103, 1, 1, "", "UserAgentNode"], [103, 1, 1, "", "WhileLoopPipelineNode"], [103, 1, 1, "", "WorkflowNode"], [103, 1, 1, "", "WorkflowNodeType"], [103, 1, 1, "", "WriteTextServiceNode"], [103, 6, 1, "", "get_all_agents"]], "agentscope.web.workstation.workflow_node.BingSearchServiceNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_node.CopyNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_node.DialogAgentNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_node.DictDialogAgentNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_node.ForLoopPipelineNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_node.GoogleSearchServiceNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_node.IfElsePipelineNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_node.ModelNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_node.MsgHubNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_node.MsgNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_node.PlaceHolderNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_node.PythonServiceNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_node.ReActAgentNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_node.ReadTextServiceNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_node.SequentialPipelineNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_node.SwitchPipelineNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_node.UserAgentNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_node.WhileLoopPipelineNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_node.WorkflowNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_node.WorkflowNodeType": [[103, 4, 1, "", "AGENT"], [103, 4, 1, "", "COPY"], [103, 4, 1, "", "MESSAGE"], [103, 4, 1, "", "MODEL"], [103, 4, 1, "", "PIPELINE"], [103, 4, 1, "", "SERVICE"]], "agentscope.web.workstation.workflow_node.WriteTextServiceNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_utils": [[104, 6, 1, "", "deps_converter"], [104, 6, 1, "", "dict_converter"], [104, 6, 1, "", "is_callable_expression"], [104, 6, 1, "", "kwarg_converter"]]}, "objnames": {"0": ["py", "module", "Python module"], "1": ["py", "class", "Python class"], "2": ["py", "method", "Python method"], "3": ["py", "property", "Python property"], "4": ["py", "attribute", "Python attribute"], "5": ["py", "exception", "Python exception"], "6": ["py", "function", "Python function"]}, "objtypes": {"0": "py:module", "1": "py:class", "2": "py:method", "3": "py:property", "4": "py:attribute", "5": "py:exception", "6": "py:function"}, "terms": {"": [0, 1, 2, 3, 4, 6, 8, 9, 17, 18, 20, 21, 23, 24, 25, 26, 29, 30, 31, 32, 34, 35, 36, 37, 41, 50, 54, 59, 66, 67, 82, 84, 87, 89, 91, 102, 103, 104, 107, 108, 109, 110, 111, 112, 113, 114, 115, 118, 119, 121, 122, 123, 124, 126, 127], "0": [10, 13, 20, 21, 23, 24, 25, 26, 29, 30, 38, 40, 41, 54, 67, 81, 82, 85, 87, 88, 89, 90, 103, 110, 114, 121, 122, 123, 124], "0001": [54, 82], "0002": [54, 82], "001": [20, 22, 114], "0017594862": [20, 25], "002": [20, 26, 109, 114], "0023064255": [20, 26], "0028842222": [20, 26], "005519774276763201": [20, 30], "008599704": [20, 25], "009327292": [20, 26], "010071029": [20, 25], "014949671924114227": [20, 30], "019060475751757622": [20, 30], "025878139": [20, 25], "02675454691052437": [20, 30], "03": [20, 22, 119], "034d": [20, 21], "03629": [1, 7], "04": 119, "04692972": [20, 25], "04t19": [20, 25], "04t20": [54, 85], "05": [54, 82, 120], "05007221": [20, 25], "06": 41, "07": 120, "08": [20, 25, 120], "09": [54, 85], "0x16e516fb0": 124, "1": [1, 4, 6, 7, 10, 14, 16, 20, 21, 22, 25, 27, 29, 32, 36, 38, 40, 41, 42, 44, 45, 54, 56, 58, 60, 66, 67, 72, 73, 79, 82, 84, 85, 87, 88, 89, 90, 103, 109, 114, 115, 117, 120, 122, 123, 124], "10": [1, 7, 41, 54, 73, 82, 84, 85, 87, 117, 120], "100": [54, 75, 76, 124], "1000": [41, 54, 87], "1009": [20, 29], "102": [20, 21], "1024": [20, 30, 54, 66, 120], "1024x1024": [54, 67], "1024x1792": [54, 67], "104527_7def6u": 120, "105441414": [20, 25], "1080": [54, 56], "10\u5e74\u5185\u53ef\u80fd\u7684\u804c\u4e1a\u53d1\u5c55\u8d8b\u52bf": 41, "11": [54, 85], "1109": [54, 82], "111": [54, 85], "11186623": [20, 21], "113": [20, 29], "11434": [20, 25], "117": 120, "12": [20, 25, 26, 54, 85], "120": [54, 83], "12001": 121, "12002": 121, "123": [20, 25, 26, 114], "12345": [51, 52], "123456": [54, 85], "1247": [20, 21], "127": [20, 25, 90, 120, 121, 122, 124], "1277": [20, 21], "1280": [54, 56, 66], "129": 120, "12958129": [20, 25], "12t14": [20, 25], "13": [20, 25, 41], "14": [54, 85], "15": [41, 120], "150": [54, 85], "1536": [20, 26], "1589478378": [20, 26], "1677652288": [20, 26], "1703487403": [20, 30], "172": 120, "1792x1024": [54, 67], "17\u5c81": 41, "18": 123, "188": [54, 85], "1920": [54, 85], "1_code": [54, 67], "2": [1, 4, 6, 7, 20, 21, 22, 23, 25, 29, 30, 41, 42, 44, 45, 54, 56, 60, 67, 73, 82, 84, 85, 103, 114, 115, 120, 122, 123, 124], "20": 120, "200": [20, 21], "2016": [54, 85], "2021": [54, 82], "2023": [20, 25, 54, 82], "2024": [20, 22, 41, 119, 120], "203": [1, 4], "2048": [20, 27], "20th": [54, 85], "21": [20, 22, 26, 120], "211862": [54, 82], "215321638": [54, 85], "2154458": [20, 25], "217": [20, 30], "22": [20, 25, 54, 85, 119], "2210": [1, 7], "233488": [54, 87], "23\u5c81": 41, "24727": 120, "248": [20, 30], "24\u5c81": 41, "25": [20, 21], "250": [54, 85], "25395815": [54, 85], "2560": [54, 85], "256x256": [54, 67], "25\u5c81": 41, "26": [20, 25], "27": 120, "27\u5c81": 41, "284z": [54, 85], "28\u5c81": 41, "290": [20, 25], "294014": [54, 85], "298": [20, 25], "298087": [54, 85], "2ee7": [20, 21], "3": [1, 4, 6, 20, 21, 23, 24, 25, 27, 29, 41, 45, 54, 56, 67, 73, 82, 83, 85, 99, 103, 108, 109, 112, 114, 115, 117, 119, 120, 123, 124], "30": [20, 27, 54, 56, 82], "300": [46, 47, 54, 58, 59], "301": 120, "30\u5c81": 41, "31": [20, 30, 120], "32": 41, "3233": [54, 82], "325953000": [20, 25], "32\u5c81": 41, "3306": [54, 76], "34": [41, 120], "342": [54, 85], "35": 120, "35\u5c81": 41, "37": 123, "37db858ae738": [20, 21], "383809000": [20, 25], "38\u5c81": 41, "3\u5e74\u7684\u804c\u4e1a\u53d1\u5c55\u8def\u5f84\u56fe": 41, "4": [20, 26, 30, 54, 67, 82, 85, 103, 109, 114, 115, 119, 120, 123, 124], "40": [54, 85], "401": 91, "403": 91, "4096": 124, "40\u5c81": 41, "413": [54, 85], "416799z": [20, 25], "4217": [54, 85], "42\u5c81": 41, "43": [20, 25, 120], "43f7": [20, 21], "45": [20, 25, 41, 120], "455": [54, 82], "459b": [20, 21], "45\u5c81": 41, "46342": [54, 85], "466": [54, 82], "4709213000": [20, 25], "4799921000": [20, 25], "48000": [54, 66], "499127z": [20, 25], "4o": [20, 26, 54, 67, 119, 120], "5": [20, 23, 24, 41, 54, 56, 85, 86, 103, 109, 112, 114, 115, 119, 124], "50": [54, 85], "5000": [90, 121, 122], "5025959": [20, 25], "5043500667": [20, 25], "512x512": [54, 67, 114], "5191566416": [20, 25], "53": [54, 85], "54": 120, "550": [54, 85], "574818": [54, 85], "5785971": [20, 29], "59": [54, 85], "5m": [20, 25, 114], "6": 110, "60": [41, 54, 56], "60\u79d2": 41, "62": [54, 85], "6212": [20, 21], "6300": [54, 82], "639": [54, 67], "67911196": [54, 87], "7": [54, 85, 120], "7108fa70op6eqf": [20, 21], "720": [54, 66], "7200": [1, 2, 8, 51, 52, 53], "77": [20, 21, 120], "7b": 124, "7def6u": 120, "7e346eb5rvirbw": [20, 21], "7fde1f5atqsaln": [20, 21], "8": [20, 26], "8000": 124, "808c": [20, 21], "81": [20, 21], "8192": [1, 2, 8, 51, 52, 53], "82374": [54, 85], "8239375684858666781": [20, 30], "8450357913970947": [20, 21], "889": 120, "890": 120, "891": 120, "891b": [20, 21], "896": [20, 29], "8b": 114, "9": [20, 21, 26, 29, 108], "93e0": [20, 21], "9477984": [54, 82], "957d": [20, 21], "9595": [20, 21], "9667": [20, 21], "996523eb": [20, 21], "9dac": [20, 21], "A": [0, 1, 3, 5, 6, 7, 8, 13, 14, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 46, 47, 49, 51, 52, 53, 54, 56, 59, 64, 66, 67, 69, 70, 73, 75, 76, 77, 81, 82, 83, 84, 85, 87, 91, 93, 101, 102, 103, 109, 110, 115, 117, 118, 121, 122, 123, 127], "AND": [54, 81], "AS": 97, "And": [112, 119, 121], "As": [41, 110, 112, 115, 118, 121, 122, 123, 124], "At": 121, "But": 121, "By": [32, 36, 110, 115, 121, 122], "For": [1, 4, 20, 21, 23, 24, 25, 41, 45, 50, 51, 52, 54, 81, 82, 84, 86, 108, 109, 110, 112, 113, 114, 115, 116, 117, 118, 119, 121, 122, 123, 124, 125, 128], "If": [0, 1, 2, 4, 7, 8, 9, 11, 13, 14, 15, 16, 17, 18, 20, 21, 22, 26, 28, 30, 32, 34, 35, 36, 37, 41, 51, 52, 54, 56, 59, 66, 67, 69, 71, 79, 85, 86, 91, 101, 102, 108, 109, 110, 112, 114, 117, 118, 119, 121, 122, 123, 124, 126, 127], "In": [0, 14, 16, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 41, 45, 51, 52, 54, 56, 87, 107, 109, 110, 112, 113, 114, 115, 118, 119, 121, 122, 124, 125, 127], "It": [1, 9, 20, 21, 35, 41, 45, 54, 59, 82, 84, 87, 88, 89, 103, 105, 107, 110, 112, 113, 114, 115, 117, 118, 119, 121, 122, 123, 124, 125, 129], "Its": 115, "NOT": [54, 60], "No": [54, 82, 110], "Not": 123, "OR": [54, 81], "Of": [32, 36, 115, 122], "On": 108, "One": [0, 31, 123], "Or": [54, 85, 113, 114, 122, 123], "Such": 119, "That": [115, 117], "The": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 45, 46, 47, 50, 51, 52, 53, 54, 56, 58, 59, 60, 62, 63, 64, 66, 67, 69, 71, 73, 75, 76, 77, 79, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 93, 102, 103, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125], "Their": [122, 123], "Then": [112, 121, 122, 123], "There": [17, 18, 119], "These": [110, 113, 117, 118, 119, 122], "To": [1, 6, 20, 23, 25, 30, 41, 43, 54, 58, 108, 109, 110, 112, 113, 114, 115, 116, 117, 119, 120, 121, 122, 123, 125, 127], "With": [20, 21, 41, 107, 110, 121, 123, 127], "_": [38, 39, 40, 110], "__": [38, 39, 40], "__call__": [1, 5, 20, 22, 24, 112, 113, 114, 121], "__delattr__": 118, "__fields__": [54, 56], "__getattr__": [117, 118], "__getitem__": 117, "__init__": [0, 1, 2, 3, 4, 6, 7, 8, 9, 11, 13, 14, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 40, 41, 42, 43, 44, 45, 46, 47, 49, 51, 52, 53, 54, 55, 56, 57, 58, 71, 73, 88, 89, 92, 93, 100, 102, 103, 112, 114, 117, 118, 123, 124], "__main__": [54, 56, 124], "__module__": [17, 18], "__name__": [17, 18, 54, 56, 112, 117, 124], "__serialized_attr": [17, 18], "__setattr__": [117, 118], "__setitem__": 117, "__str__": 121, "__type": 118, "_agentmeta": [1, 2, 8, 46, 47], "_code": [32, 33], "_data_to_doc": 124, "_data_to_index": 124, "_default_meta_prompt_templ": 41, "_default_system_prompt": [54, 79], "_default_token_limit_prompt": [54, 79], "_docs_to_nod": 124, "_get_timestamp": 118, "_load_index": 124, "_messag": 46, "_monitor": 120, "_parse_respons": 114, "_print_tabl": 120, "_require_auth": 91, "_upb": 46, "_welco": [54, 67], "a0dc436c": [20, 21], "a2c4g": [20, 21], "a75a1b22": [20, 21], "a_json_dictionari": 115, "aaai": [54, 82], "aaaif": [54, 82], "aac": [54, 67], "ab": [1, 7, 54, 81], "abc": [1, 5, 14, 15, 20, 21, 22, 23, 25, 26, 27, 30, 32, 35, 41, 42, 43, 103, 115, 118], "abdullah": [54, 82], "abil": [41, 110, 115, 123], "abl": [107, 123], "abort": 91, "about": [1, 4, 20, 21, 22, 41, 54, 56, 85, 102, 105, 109, 110, 112, 114, 121, 123, 126, 129], "abov": [20, 21, 22, 41, 109, 110, 115, 117, 119, 121, 123, 125], "absolut": 123, "abstract": [1, 5, 14, 15, 32, 35, 42, 43, 103, 107, 112, 118], "abstractmethod": [113, 115], "abtest": 41, "ac88": [20, 21], "academ": 41, "accept": [118, 119, 124], "access": [41, 91, 116, 118, 121, 122, 124], "access_token": 91, "accident": [54, 76, 77], "accommod": [1, 2, 8, 41, 42, 43, 44, 51, 52, 53, 107], "accompani": 41, "accomplish": 123, "accord": [32, 36, 41, 114, 115, 117, 119, 121, 123, 124, 127], "accordingli": [20, 28, 109, 117, 121, 124], "account": [54, 76], "accrodingli": 121, "accur": [41, 88, 89, 123], "accuraci": [41, 54, 67, 88, 89, 123], "achiev": [41, 110, 115, 119], "acquaint": 122, "acquir": 41, "acquisit": 41, "acronym": [54, 82], "across": [41, 113, 123], "act": [1, 7, 20, 28, 39, 54, 84, 103, 110, 112, 113, 119], "action": [1, 2, 8, 41, 54, 56, 58, 99, 102, 107, 110, 113, 125], "action_": 125, "action_click": [0, 54, 55, 56, 125], "action_press_kei": [0, 54, 55, 56], "action_scroll_down": [0, 54, 55, 56], "action_scroll_up": [0, 54, 55, 56], "action_typ": [0, 54, 55, 56], "action_visit_url": [0, 54, 55, 56, 125], "activ": [0, 12, 41, 108, 120, 122], "actor": [105, 107, 129], "actual": [0, 1, 7, 31, 38, 39, 40, 41, 109], "acycl": 102, "ad": [1, 3, 4, 6, 9, 14, 15, 16, 20, 21, 41, 102, 110, 112, 117, 118, 119, 127], "ada": [20, 26, 109, 114], "adapt": [41, 119, 123], "add": [0, 1, 6, 14, 15, 16, 31, 41, 54, 58, 67, 73, 102, 110, 111, 112, 113, 115, 116, 117, 118, 119, 123, 124, 127], "add_argu": 124, "add_as_nod": [100, 102], "add_data_as_knowledg": [0, 42, 44, 124], "add_rpcagentservicer_to_serv": [0, 46, 49], "added_not": 123, "addit": [1, 9, 17, 18, 19, 41, 54, 59, 79, 84, 91, 107, 108, 112, 115, 117, 121, 127], "addition": [109, 113, 118, 121], "address": [17, 19, 41, 54, 75, 76, 85, 112, 121, 122, 127], "address_obj": [54, 85], "address_str": [54, 85], "aden": [54, 85], "adept": [41, 123], "adher": [41, 88, 89, 117], "adjust": [41, 54, 87, 112], "adorn": 41, "adult": 41, "advanac": 124, "advanc": [20, 21, 32, 36, 41, 42, 44, 45, 107, 109, 110, 119, 124], "advantech": [54, 82], "adventur": 110, "adversari": [1, 2, 8], "advic": 41, "affect": [54, 67], "affili": [54, 82], "aforement": 124, "after": [1, 2, 24, 25, 41, 51, 52, 53, 54, 56, 79, 109, 110, 114, 115, 116, 121, 122, 124, 125], "ag": 41, "again": [41, 54, 87, 127], "against": 107, "agent": [0, 11, 17, 19, 20, 28, 31, 35, 38, 39, 40, 41, 42, 44, 46, 47, 49, 51, 52, 53, 54, 56, 73, 79, 84, 99, 100, 103, 105, 106, 108, 111, 113, 114, 116, 117, 118, 119, 123, 126, 129], "agent1": [0, 31, 110, 113], "agent1_info": 121, "agent2": [0, 31, 110, 113], "agent2_info": 121, "agent3": [0, 31, 110, 113], "agent4": [110, 113], "agent5": 113, "agent_class": [1, 2, 8], "agent_class_nam": [1, 2], "agent_config": [0, 1, 8, 46, 47, 110], "agent_dir": [51, 52], "agent_exist": [0, 51, 53], "agent_fil": 52, "agent_id": [0, 1, 2, 8, 46, 47, 49, 51, 53, 121], "agent_list": 121, "agent_memori": 121, "agenta": 121, "agentb": 121, "agentbas": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 31, 42, 44, 51, 52, 53, 110, 113, 116, 117, 121, 123], "agentcallerror": [0, 11, 106], "agentcreationerror": [0, 11, 106], "agentscop": [109, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 123, 125, 128], "agentscope_tutorial_rag": [42, 44, 124], "agentserv": [51, 52], "agentservererror": [0, 11, 106], "agentservernotaliveerror": [0, 11, 106], "agentserverservic": [0, 51, 53], "agent\u7684\u6280\u80fd\u70b9": 41, "aggreg": [88, 89], "aggregator_prompt": [88, 89], "agre": 115, "agreement": [107, 115], "ai": [20, 22, 23, 25, 45, 54, 79, 109, 112, 114], "aim": [41, 110], "akif": [54, 82], "al": 14, "album": [54, 85], "algorithm": [1, 7, 54, 82, 112, 115], "alic": [109, 119], "align": [20, 28, 41], "alik": 41, "aliv": [11, 46, 47, 49, 51, 53, 110], "aliyun": [20, 21, 54, 66], "all": [0, 1, 2, 9, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23, 24, 25, 29, 30, 31, 38, 40, 41, 42, 46, 47, 49, 51, 52, 53, 54, 62, 73, 79, 81, 88, 89, 103, 109, 110, 112, 113, 115, 117, 118, 119, 121, 122, 123, 124, 125], "allianc": 41, "alloc": 110, "alloi": [54, 67], "allow": [20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 32, 35, 36, 37, 54, 56, 59, 76, 77, 103, 107, 110, 112, 113, 114, 115, 116, 118, 121, 122, 123, 125, 126], "allow_change_data": [54, 76, 77], "allow_miss": 35, "along": 122, "alreadi": [1, 8, 20, 28, 54, 63, 64, 103, 108, 117, 123, 124, 127], "also": [1, 2, 3, 4, 6, 7, 8, 9, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 41, 110, 111, 113, 114, 115, 118, 120, 121, 122, 123, 124, 125, 126], "altern": [20, 21, 22, 108, 119, 122], "alwai": 41, "am": 123, "amin": [20, 30], "among": [0, 31, 38, 40, 41, 110, 112, 113, 114], "an": [1, 2, 4, 5, 6, 7, 8, 11, 17, 18, 19, 20, 21, 23, 24, 27, 29, 30, 38, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 51, 52, 54, 59, 60, 62, 63, 64, 67, 79, 82, 84, 93, 98, 99, 103, 105, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 126, 127, 129], "analog": 107, "analys": [54, 86], "analysi": 41, "analyst": 41, "analyz": 41, "ancestor": [54, 85], "andnot": [54, 81], "angel": [20, 29], "ani": [1, 2, 3, 4, 6, 8, 9, 12, 13, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 32, 34, 38, 39, 40, 41, 42, 43, 45, 50, 51, 53, 54, 60, 62, 63, 64, 69, 71, 73, 75, 76, 77, 84, 86, 91, 102, 103, 112, 113, 117, 118, 119, 121, 122, 123, 126, 127], "annot": [54, 56, 117], "announc": [0, 31, 103, 110, 113], "anoth": [1, 6, 54, 84, 103, 110, 112, 113, 117, 121, 122, 123], "answer": [41, 42, 43, 88, 89, 107, 123, 124], "anthropic_api_kei": [20, 23], "antidot": 115, "api": [0, 13, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 54, 66, 67, 73, 79, 81, 82, 84, 85, 93, 94, 107, 109, 112, 116, 117, 118, 119, 120, 121], "api_kei": [20, 21, 22, 24, 26, 29, 30, 54, 66, 67, 73, 84, 85, 109, 110, 114, 117, 119, 123], "api_token": 24, "api_url": [20, 24, 27, 114, 124], "app": 124, "appeal": [41, 123], "appear": 41, "append": [14, 15, 16, 17, 18], "appli": [118, 121], "applic": [35, 41, 42, 44, 91, 98, 99, 101, 105, 107, 108, 109, 111, 112, 113, 115, 119, 123, 126, 129], "approach": [41, 54, 82, 109, 113], "appropri": [41, 54, 56, 123], "ar": [1, 2, 7, 8, 14, 15, 16, 17, 18, 20, 21, 22, 23, 24, 25, 29, 30, 32, 36, 37, 38, 39, 40, 41, 51, 52, 54, 56, 59, 60, 73, 79, 85, 86, 93, 102, 107, 109, 110, 111, 112, 113, 114, 115, 117, 118, 119, 121, 122, 123, 124, 125, 126, 127], "arc": 41, "archaic": 41, "architectur": [107, 112], "area": [41, 122], "arg": [1, 2, 3, 4, 6, 7, 8, 9, 13, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 42, 43, 46, 47, 54, 73, 102, 110, 112, 113, 117, 118, 122, 124], "argpars": 124, "argument": [0, 1, 2, 7, 11, 13, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 51, 52, 54, 58, 59, 71, 73, 84, 101, 102, 117, 121, 122], "argument1": 117, "argument2": 117, "argumentnotfounderror": [0, 11, 106], "argumentpars": 124, "argumenttypeerror": [0, 11, 106], "aria": [54, 56], "aria_label": [0, 54, 55, 56], "arm": 41, "around": 41, "arrai": 13, "arrow": 121, "arrowdown": [54, 56], "arrowright": [54, 56], "arrowup": [54, 56], "art": 41, "arthur": 41, "articl": [54, 82], "articul": 41, "artifici": [54, 82, 123], "arxiv": [1, 7, 54, 80, 117], "arxiv_search": [0, 54, 80, 81, 117], "as_host": 122, "as_port": 122, "as_serv": [0, 51, 52, 121], "as_studio": 122, "as_workflow": 122, "asdigraph": [95, 100, 102], "asia": [54, 85], "ask": [32, 36, 37, 41, 115, 117, 126, 128], "aslan": [54, 82], "asmanag": [0, 13], "asp": [54, 84], "aspir": 41, "asr": 99, "assert": 121, "assign": [110, 111, 118, 121, 124], "assist": [1, 2, 7, 17, 18, 19, 20, 21, 23, 24, 25, 26, 29, 30, 109, 112, 115, 116, 118, 119, 123, 126], "associ": [54, 85, 91, 102, 110], "assum": [41, 54, 84, 110, 114], "astut": 41, "astyp": 124, "async": [54, 58], "async_run_code_on_notebook": [0, 54, 57, 58], "asynchron": [54, 56], "attach": [20, 21, 32, 36, 41, 109, 118, 123], "attempt": 110, "attent": 41, "attitud": 41, "attract": [41, 54, 85, 123], "attraction_review": [54, 85], "attribut": [14, 16, 17, 19, 54, 56, 82, 112, 115, 117, 118, 119, 122, 124], "attribute_nam": 118, "attributeerror": 118, "au": [54, 81], "audienc": [1, 2, 41, 113], "audio": [13, 20, 21, 54, 66, 67, 98, 99, 107, 109, 112, 114, 117, 118, 119], "audio2text": [95, 96, 99], "audio_fil": [54, 67], "audio_file_url": [54, 67], "audio_path": [54, 66, 67, 99], "audio_term": 98, "augment": [43, 105, 129], "authent": [54, 84, 91, 117], "author": [24, 54, 81, 82, 91, 114, 117], "authorit": 41, "auto": [51, 53, 124], "automat": [1, 2, 54, 73, 107, 110, 112, 114, 115, 116, 118, 121], "autonom": [107, 110], "auxiliari": 107, "avail": [20, 22, 28, 54, 59, 82, 93, 99, 109, 112, 113, 116, 117, 121, 126], "avatar": 99, "avoid": [13, 41, 54, 75, 76, 77, 103, 121, 123, 124], "awar": [115, 123], "award": [54, 85], "azur": [20, 23], "azure_api_bas": [20, 23], "azure_api_kei": [20, 23], "azure_api_vers": [20, 23], "b": [54, 70, 73, 117, 121, 127], "b340b95007a4": [20, 21], "b3771cba3788": [20, 21], "b54ffeb8": [20, 21], "b986": [20, 21], "back": [121, 122, 123, 124, 125], "background": [41, 121], "backquot": [54, 56], "backslash": [54, 56], "backspac": [54, 56], "balanc": 41, "band": 41, "bank": [1, 6, 42, 44], "bar": 122, "bard": 41, "base": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 51, 52, 53, 54, 56, 58, 66, 67, 71, 72, 73, 82, 88, 89, 93, 99, 101, 102, 103, 105, 107, 110, 112, 113, 114, 115, 117, 118, 119, 121, 123, 124, 125, 129], "base64": 119, "base_dir": 120, "base_url": [20, 30], "baseembed": 45, "basemodel": [54, 56, 115], "baseretriev": 45, "bash": [54, 60, 124], "basic": [20, 22, 41, 45, 109, 110, 118, 124, 125], "batch": 43, "battl": 41, "battlefield": 41, "bayesian": [54, 87], "bearer": [24, 114], "beauti": [54, 66], "becam": 41, "becaus": [13, 20, 25, 54, 56, 121], "becom": [114, 122, 126], "been": [1, 2, 13, 20, 28, 88, 89, 103, 116, 121, 127], "befit": 41, "befor": [13, 14, 15, 16, 41, 54, 73, 79, 99, 108, 110, 118, 121, 122], "begin": [0, 11, 20, 22, 31, 32, 33, 37, 41, 110, 119], "beginn": [119, 122], "behalf": [54, 84], "behavior": [1, 5, 110, 112, 118, 123], "behind": 41, "being": [41, 46, 47, 54, 59, 102, 110, 124], "believ": 41, "below": [1, 2, 32, 37, 110, 112, 113, 115, 117, 119, 123, 126], "besid": [110, 112, 115, 118, 125], "best": [119, 123], "beta": [6, 125], "better": [14, 16, 20, 22, 41, 88, 89, 109, 123, 125, 127], "between": [14, 16, 20, 21, 27, 28, 32, 33, 34, 37, 54, 70, 102, 107, 109, 110, 111, 113, 115, 117, 118, 119, 121, 123], "bias": [41, 88, 89], "bigmodel": [20, 30], "bin": 108, "binari": 13, "bing": [54, 56, 73, 84, 103, 117, 125], "bing_api_kei": [54, 84], "bing_search": [0, 54, 73, 80, 84, 117], "bingsearchservicenod": [95, 100, 103], "bingwebsearch": 41, "bite": 41, "blank": 41, "blob": [20, 25, 58, 59, 93], "block": [1, 6, 13, 32, 33, 34, 54, 58, 93, 110, 113, 115, 121, 124], "blue": [20, 25], "blueprint": [20, 30], "blunt": 41, "bob": [20, 21, 23, 24, 25, 29, 30, 109, 119], "bodi": [20, 22, 38, 39, 40], "bomb": 59, "book": [41, 123], "bool": [0, 1, 2, 3, 4, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23, 25, 26, 28, 29, 30, 32, 34, 35, 36, 37, 38, 39, 40, 42, 43, 44, 45, 46, 47, 50, 51, 52, 53, 54, 56, 59, 63, 64, 69, 73, 76, 77, 85, 86, 88, 89, 90, 99, 103, 104, 112, 115, 117, 118], "boolean": [14, 16, 54, 62, 63, 64, 81, 115, 116, 117], "boost": 41, "borrow": 93, "bot": 112, "both": [14, 15, 16, 41, 54, 59, 85, 88, 89, 107, 115, 116, 117, 121, 124, 127], "bound": 41, "box": [110, 125], "branch": [39, 113], "brave": 41, "braveri": 41, "break": [38, 39, 40, 109, 110, 113, 115], "break_condit": 113, "break_func": [38, 39, 40], "breviti": [112, 113, 117, 118], "bridg": [20, 28], "brief": [121, 127], "brilliant": 123, "bring": 41, "broadcast": [0, 31, 103, 110], "brought": 121, "brows": [54, 84, 125], "browser": [0, 54], "browser_height": [54, 56], "browser_vis": [54, 56], "browser_width": [54, 56], "budget": 41, "buffer": 48, "bug": [126, 128], "build": [1, 6, 20, 22, 41, 45, 102, 105, 107, 109, 112, 115, 119, 123, 124, 125, 129], "build_dag": [95, 100, 102], "built": [54, 79, 107, 110, 111, 112, 115, 121, 123], "bulk": [118, 122], "burgeon": 41, "busi": [41, 54, 84, 85, 123], "button": [122, 125], "bygon": 41, "byte": [13, 54, 56, 59], "c": [0, 54, 73, 117, 121], "c462009dec4d": [20, 21], "cach": [0, 1, 2, 13, 51, 52, 53, 120, 123], "cache_dir": [0, 13, 120], "cache_text_embed": [0, 13], "cacheagentscop": 0, "cai": [54, 82], "call": [1, 2, 8, 11, 13, 17, 18, 19, 20, 21, 22, 23, 24, 26, 27, 29, 30, 41, 46, 47, 49, 51, 53, 54, 56, 58, 67, 73, 93, 102, 103, 109, 110, 111, 112, 113, 114, 115, 117, 118, 120, 121, 123, 124, 125], "call_agent_func": [0, 46, 47, 49, 51, 53], "call_credenti": 49, "call_in_thread": [0, 46, 47], "callabl": [1, 5, 14, 15, 16, 38, 39, 40, 41, 54, 56, 69, 73, 86, 98, 102, 104, 118], "calm": 41, "campaign": 41, "can": [0, 1, 2, 3, 4, 6, 7, 8, 9, 14, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 29, 30, 32, 36, 37, 41, 42, 44, 45, 51, 52, 53, 54, 56, 59, 66, 73, 82, 85, 88, 89, 102, 103, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127], "candid": 41, "cannot": [1, 7, 42, 43, 115, 122, 124], "capabl": [41, 105, 107, 115, 117, 123, 129], "capac": [54, 84], "captain": 41, "caption": [54, 85], "captiv": 41, "captur": [41, 54, 59, 111, 123], "care": [54, 60], "career": 41, "carri": 41, "carrier": [107, 118], "case": [38, 40, 41, 51, 52, 103, 110, 112, 124], "case1": 113, "case2": 113, "case_oper": [38, 39, 40, 113], "castl": 41, "cat": [54, 60, 81, 119], "categor": [107, 113], "categori": [41, 54, 85, 87, 114], "caus": [20, 21, 41], "caution": 122, "cautiou": 41, "cautious": 122, "cd": [54, 60, 108, 110, 125, 127], "cdn": [54, 85], "cell": [54, 58], "cells_length": [0, 54, 57, 58], "central": [105, 107, 108, 121, 122, 129], "centric": 107, "certain": [11, 14, 15, 41, 102], "chain": [1, 7], "challeng": [41, 123], "chanc": 110, "chang": [1, 4, 41, 54, 56, 60, 76, 77, 93, 107, 122, 123], "channel": [46, 49, 107], "channel_credenti": 49, "chao": [54, 82], "charact": [32, 37, 41, 110, 115], "characterist": [41, 112], "chart": 121, "chat": [12, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 94, 98, 99, 109, 110, 113, 116, 117, 118, 119, 126], "chatbot": [41, 98, 119], "chatcmpl": [20, 26], "check": [13, 14, 15, 16, 32, 34, 46, 47, 49, 50, 51, 53, 54, 59, 73, 86, 91, 99, 101, 104, 110, 112, 121, 127], "check_uuid": [95, 96, 99], "check_win": 110, "checkout": 127, "chemic": [54, 84], "chengm": [54, 82], "child": 122, "children": 41, "chines": [41, 54, 82, 85], "chinesesystempromptgener": [0, 41, 123], "chivalr": 41, "chivalri": 41, "choic": [1, 6, 20, 21, 23, 26, 29, 30, 110, 114], "choos": [1, 6, 41, 107, 109, 110, 115, 121, 122, 123], "chosen": [17, 18, 19, 41, 54, 56, 110, 122], "chunk": [1, 2, 43, 124], "chunk_lin": 124, "chunk_overlap": 124, "chunk_siz": 124, "citi": [54, 67, 85], "claim": 123, "clarifi": 41, "clariti": 41, "class": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 40, 41, 42, 43, 44, 45, 46, 47, 49, 51, 52, 53, 54, 56, 58, 71, 72, 73, 88, 89, 93, 102, 103, 110, 112, 113, 114, 115, 116, 117, 119, 121, 122, 123, 124], "classic": 115, "classmethod": [1, 2, 13, 17, 18, 19, 20, 24, 51, 52, 54, 73], "classvar": [54, 56], "claud": [20, 23], "clean": [14, 15, 16, 102], "clear": [0, 13, 14, 15, 16, 41, 46, 49, 51, 53, 113, 118, 123, 127], "clear_audi": [0, 1, 2], "clear_exist": 13, "clear_model_config": [0, 13], "clearer": 111, "clearli": [41, 123], "click": [54, 56, 122, 125], "clickabl": [54, 56], "client": [1, 8, 17, 19, 20, 26, 30, 41, 46, 47, 49, 114, 121], "client_arg": [20, 24, 26, 30, 114], "climax": 41, "clone": [1, 8, 46, 47, 49, 51, 53, 108, 125], "clone_ag": [0, 46, 47, 49, 51, 53], "clone_inst": [0, 1, 8], "close": [0, 32, 34, 54, 55, 56, 122], "cloud": [20, 22], "clspipelin": 113, "clue": 41, "cmpl": [20, 29], "cn": [20, 22, 30], "co": [54, 81], "coach": 41, "code": [0, 1, 2, 3, 4, 13, 20, 21, 31, 32, 33, 34, 41, 48, 54, 56, 58, 59, 85, 86, 93, 101, 102, 103, 108, 110, 112, 113, 114, 115, 117, 118, 120, 121, 122, 124, 126], "code_block_pars": [0, 32], "code_dir": [0, 13], "codebas": 128, "codesplitt": 124, "coher": [88, 89, 112, 118], "collabor": [112, 113, 126], "colleagu": 41, "collect": [41, 54, 75, 88, 89, 103, 112, 117, 124], "color": [17, 18, 20, 25, 111], "column": 122, "com": [20, 21, 22, 25, 26, 29, 45, 54, 56, 58, 59, 66, 67, 81, 84, 85, 88, 89, 93, 108, 117, 118, 119, 124, 125, 127], "combat": 41, "combin": [20, 22, 41, 115, 119], "come": [112, 117, 122, 124], "command": [41, 51, 52, 54, 60, 99, 101, 108, 121, 122, 124], "comment": 41, "commit": 41, "common": [0, 5, 20, 21, 23, 24, 30, 54, 61, 92, 121, 124], "commun": [41, 105, 109, 110, 113, 121, 122, 123, 127, 128, 129], "compar": [32, 36, 41, 54, 69, 113, 115, 121, 127], "compare_in_dialog": [0, 41, 123], "compare_with_queri": [0, 41, 123], "compared_system_prompt": [41, 123], "comparison": [54, 82, 123], "compat": [20, 27, 107, 116, 119, 124], "compel": [41, 123], "compet": 41, "competit": 41, "competitor": 41, "compil": [100, 102, 103, 122], "compile_workflow": [95, 100, 101], "compiled_filenam": [101, 102], "complet": [20, 23, 25, 26, 29, 41, 42, 44, 54, 82, 115, 117, 120, 121], "completion_token": [13, 20, 23, 26, 29, 30, 120, 124], "complex": [41, 107, 109, 112, 113, 115, 121, 122, 123], "compli": [41, 101], "complic": [107, 124], "compon": [42, 43, 45, 105, 107, 122, 124, 129], "compos": [45, 112, 124], "comprehens": [41, 88, 89, 112], "compress": 49, "compris": [107, 109], "comput": [14, 16, 54, 56, 70, 82, 102, 107, 112, 117, 121, 122], "computedfieldinfo": [54, 56], "comrad": 41, "conan": 41, "concept": [45, 110, 113, 121, 124], "conceptu": 41, "concern": 41, "concis": [41, 127], "conclus": 41, "concret": 118, "condit": [38, 39, 40, 41, 103, 110, 113, 123], "condition_func": [38, 39, 40], "condition_oper": [38, 40], "conduct": 41, "conduit": 113, "conf": [54, 82], "confer": [54, 82], "confid": [54, 59], "confidenti": 41, "config": [0, 1, 2, 3, 4, 6, 7, 8, 13, 20, 21, 23, 24, 26, 30, 41, 42, 44, 46, 47, 49, 51, 52, 53, 54, 56, 88, 89, 101, 102, 109, 121, 122, 124], "config_nam": [0, 13, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 109, 110, 114, 116, 119, 121, 123, 124], "config_path": 101, "configdict": [54, 56], "configur": [1, 2, 3, 4, 7, 13, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 41, 42, 43, 44, 45, 54, 56, 90, 101, 102, 103, 109, 110, 112, 115, 122, 123], "conflict": 41, "conform": [54, 56], "connect": [1, 2, 17, 19, 46, 47, 102, 107, 122, 126], "connect_exist": [1, 8], "consid": [41, 124], "consider": [20, 22], "consist": [41, 110, 111, 112, 118, 119, 122], "constant": [0, 95, 96, 106], "constraint": [20, 22, 41, 119, 123], "construct": [32, 36, 41, 54, 58, 102, 110, 112, 113, 115, 117, 118], "constructor": [32, 36, 41, 46, 49, 54, 71, 114, 117], "consult": 41, "consum": [41, 121], "consumpt": 121, "contain": [0, 1, 7, 17, 18, 24, 25, 32, 36, 37, 38, 39, 40, 41, 51, 52, 54, 59, 60, 62, 63, 64, 66, 67, 75, 76, 77, 79, 82, 83, 87, 101, 102, 115, 117, 119, 121, 122, 124], "content": [2, 6, 7, 9, 11, 18, 19, 21, 23, 24, 25, 26, 29, 30, 33, 34, 35, 36, 37, 43, 45, 56, 62, 63, 64, 66, 67, 71, 79, 81, 82, 84, 85, 86, 87, 94, 106, 107, 109, 110, 111, 112, 114, 116, 117, 118, 119, 121, 122, 124], "content1": [32, 36], "content2": [32, 36], "content_hint": [0, 32, 33, 34, 37, 110, 115], "contentembed": [20, 22], "context": [20, 25, 41, 46, 49, 51, 53, 54, 56, 93, 112, 113, 118, 127], "contextmanag": 93, "contextu": 123, "continu": [38, 39, 40, 41, 107, 109, 110, 112, 113, 115, 119, 122], "contrast": 115, "contribut": [88, 89, 105, 122, 126, 128, 129], "control": [20, 25, 35, 38, 39, 40, 41, 105, 110, 113, 114, 115, 121, 129], "convei": 41, "conveni": [115, 123], "convers": [14, 16, 20, 21, 22, 23, 24, 25, 29, 30, 41, 54, 67, 73, 110, 111, 112, 114, 119, 121, 123], "conversation_with_rag_ag": [42, 44], "convert": [1, 2, 20, 21, 32, 34, 45, 54, 66, 67, 73, 93, 98, 99, 104, 115, 117, 119, 122], "convert_url": [0, 20, 21], "cook": 41, "cookbook": 118, "coordin": [54, 56], "copi": [42, 44, 100, 103, 124], "copynod": [95, 100, 103], "copyright": 41, "core": [41, 45, 107, 110, 112, 113, 124], "cornerston": 112, "correct": [41, 121, 122], "correctli": [54, 56, 121, 122], "correspond": [1, 6, 32, 34, 35, 36, 37, 38, 39, 40, 41, 49, 54, 56, 75, 107, 109, 110, 114, 115, 121, 122, 123], "cos_sim": [0, 54, 68, 70, 117], "cosin": [54, 70, 117], "cost": [41, 123], "could": [20, 23, 41, 54, 84, 119, 123], "counselor": 41, "count": [94, 120], "count_openai_token": [0, 92, 94], "counterpart": 39, "countri": [54, 85], "coupl": [54, 85], "cours": [32, 36, 115, 122], "court": 41, "courteou": 41, "cover": [0, 41], "cpu": [114, 121, 122, 123], "craft": [41, 112, 119, 123], "creat": [0, 1, 2, 9, 11, 17, 18, 19, 20, 23, 26, 29, 30, 31, 41, 46, 47, 49, 51, 53, 54, 62, 67, 93, 103, 110, 112, 115, 118, 119, 121, 122, 123], "create_ag": [0, 46, 47, 49, 51, 53], "create_directori": [0, 54, 61, 62, 117], "create_fil": [0, 54, 61, 62, 117], "create_object": 124, "create_tempdir": [0, 92, 93], "create_timestamp": 124, "createagentrequest": [51, 53], "created_at": [20, 25], "creation": [46, 47, 118, 122], "creativ": 41, "creator": 41, "crime": 41, "crimin": 41, "criteria": [117, 118], "critic": [0, 12, 13, 88, 89, 111, 118, 119], "crown": 41, "crucial": [41, 88, 89, 110, 111, 123], "crucibl": 41, "crusad": 41, "cse": [54, 84], "cse_id": [54, 84], "csv": 124, "cuisin": 41, "culinari": 41, "cultiv": 41, "cultur": 41, "cun": 41, "curat": 112, "currenc": [41, 54, 85], "current": [1, 2, 3, 4, 6, 14, 15, 16, 38, 39, 40, 41, 54, 56, 59, 60, 62, 79, 93, 114, 117, 118, 120, 121, 122, 123, 124, 125], "custom": [41, 42, 44, 51, 52, 54, 84, 99, 105, 107, 109, 110, 111, 114, 117, 118, 119, 121, 122, 123, 129], "custom_agent_class": [51, 52, 121], "cut": 41, "cycle_dot": [95, 96, 99], "d": [121, 124], "dag": [102, 107], "dai": 110, "daili": 41, "dall": [20, 26, 54, 67, 114, 120], "dall_": 27, "dashscop": [20, 21, 54, 66, 116, 117, 119], "dashscope_chat": [20, 21, 114, 116], "dashscope_image_synthesi": [20, 21, 114], "dashscope_image_to_text": [0, 54, 65, 66, 117], "dashscope_model": [0, 20], "dashscope_multimod": [20, 21, 114], "dashscope_servic": [54, 65], "dashscope_text_embed": [20, 21, 114], "dashscope_text_to_audio": [0, 54, 65, 66, 117], "dashscope_text_to_imag": [0, 54, 65, 66, 117], "dashscopechatwrapp": [0, 20, 21, 114, 116], "dashscopeimagesynthesiswrapp": [0, 20, 21, 114], "dashscopemultimodalwrapp": [0, 20, 21, 114], "dashscopetextembeddingwrapp": [0, 20, 21, 114], "dashscopewrapperbas": [0, 20, 21], "data": [1, 3, 4, 6, 13, 15, 20, 26, 28, 30, 41, 42, 43, 44, 45, 46, 47, 54, 56, 63, 69, 76, 77, 82, 85, 98, 102, 103, 107, 112, 113, 114, 115, 118, 119, 124], "data_dirs_and_typ": [42, 44, 124], "data_process": 124, "databas": [13, 41, 42, 43, 45, 54, 75, 76, 77, 82, 117], "dataset": 124, "date": [20, 21, 23, 24, 25, 29, 30, 41, 126], "datetim": 124, "daytim": [110, 115], "db": [54, 82, 120], "dblp": [54, 80, 117], "dblp_search_author": [0, 54, 80, 82, 117], "dblp_search_publ": [0, 54, 80, 82, 117], "dblp_search_venu": [0, 54, 80, 82, 117], "dead": 122, "dead_nam": 110, "dead_play": 110, "deal": 123, "death": 110, "debug": [0, 12, 13, 90, 110, 111, 115, 123], "decid": [14, 15, 20, 22, 110, 119, 123, 124], "decis": [20, 22, 41], "decod": [1, 4, 91], "decode_jwt": [0, 90, 91], "decor": 91, "decoupl": [109, 114, 115], "dedic": 41, "deduc": [41, 110], "deduct": 110, "deed": 41, "deep": [41, 54, 81, 123, 124], "deepcopi": [42, 44], "deepli": 41, "def": [54, 73, 110, 112, 113, 114, 115, 116, 117, 118, 123, 124], "default": [0, 1, 2, 3, 4, 6, 7, 8, 9, 11, 12, 13, 14, 16, 17, 18, 19, 20, 21, 22, 23, 25, 26, 27, 29, 30, 31, 32, 34, 36, 37, 38, 39, 40, 41, 42, 43, 45, 46, 47, 51, 52, 53, 54, 56, 58, 59, 64, 66, 67, 69, 73, 75, 76, 77, 79, 81, 82, 83, 84, 85, 88, 89, 90, 99, 102, 103, 107, 112, 115, 117, 118, 121, 122, 123, 124], "default_ag": 113, "default_oper": [38, 39, 40], "defend": 41, "defer": 112, "defin": [1, 2, 5, 8, 41, 42, 44, 49, 54, 56, 69, 73, 102, 109, 112, 113, 117, 118, 122, 124], "definit": [54, 84, 107, 118], "del": 118, "delet": [0, 1, 2, 14, 15, 16, 31, 46, 47, 49, 51, 52, 53, 54, 56, 62, 110, 117, 118, 121, 122], "delete_ag": [0, 46, 47, 49, 51, 53, 121], "delete_all_ag": [0, 46, 47, 49, 51, 53, 121], "delete_directori": [0, 54, 61, 62, 117], "delete_fil": [0, 54, 61, 62, 117], "demand": 112, "demeanor": 41, "demograph": 123, "demonstr": [110, 112, 123], "denot": 118, "dep_opt": 103, "dep_var": 104, "depart": [54, 82], "depend": [14, 15, 16, 54, 81, 84, 85, 102, 107, 108, 121], "deploi": [20, 27, 109, 121], "deploy": [107, 109, 114, 121], "deprec": [1, 2], "deprecated_model_typ": [0, 20, 21, 26, 27], "deps_convert": [95, 100, 104], "depth": [41, 112], "deriv": 112, "describ": [54, 66, 67, 73, 110, 113, 119, 121], "descript": [41, 54, 67, 73, 86, 112, 113, 115, 117, 123, 127], "descriptor": [0, 46], "deseri": [0, 14, 15, 16, 17, 18, 50, 106], "design": [1, 5, 6, 14, 15, 16, 31, 41, 45, 54, 56, 103, 105, 109, 110, 111, 112, 113, 115, 119, 121, 122, 123, 129], "desir": [41, 119], "despit": 41, "destin": [41, 54, 62], "destination_path": [54, 62], "destruct": 59, "detail": [1, 2, 7, 9, 20, 21, 23, 41, 54, 56, 66, 67, 82, 84, 85, 109, 110, 112, 115, 117, 118, 119, 120, 121, 123, 125, 127], "detect": 41, "determin": [38, 39, 40, 41, 54, 59, 110, 115, 118], "detriment": 41, "dev": [20, 22, 30, 127], "develop": [1, 4, 7, 20, 21, 23, 24, 25, 29, 30, 41, 54, 56, 73, 84, 105, 107, 108, 112, 114, 115, 117, 118, 119, 121, 122, 123, 126, 127, 129], "deviat": [41, 123], "devic": 124, "devot": 41, "di": 58, "diagnosi": [54, 82], "dialog": [1, 3, 4, 31, 41, 107, 109, 113, 118, 123], "dialog_ag": [0, 1, 109], "dialog_agent_config": 112, "dialog_histori": 41, "dialogag": [0, 1, 3, 103, 109], "dialogagentnod": [95, 100, 103], "dialogu": [1, 3, 4, 6, 41, 107, 111, 112, 113], "dict": [0, 1, 2, 3, 4, 6, 7, 8, 9, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 54, 56, 63, 66, 67, 69, 71, 73, 75, 84, 86, 91, 93, 99, 101, 102, 103, 104, 107, 109, 113, 114, 117, 118, 119, 124], "dict_convert": [95, 100, 104], "dict_dialog_ag": [0, 1], "dict_input": 117, "dictat": 110, "dictdialogag": [0, 1, 4, 103, 110, 112, 115], "dictdialogagentnod": [95, 100, 103], "dictfiltermixin": [0, 32, 34, 35, 36, 37, 115], "diction": 41, "dictionari": [4, 13, 17, 18, 19, 20, 21, 23, 26, 32, 34, 35, 36, 37, 38, 39, 40, 41, 42, 44, 54, 56, 66, 67, 73, 81, 82, 84, 85, 99, 101, 102, 104, 109, 114, 117, 118, 119, 123], "did": 127, "didn": 115, "diet": 41, "dietari": 41, "differ": [1, 7, 8, 12, 13, 20, 22, 23, 24, 28, 32, 36, 41, 43, 54, 70, 75, 88, 89, 103, 105, 107, 110, 111, 112, 113, 114, 115, 117, 118, 119, 121, 122, 123, 124, 129], "difficult": 119, "difficulti": [41, 115, 123], "digest": [54, 86, 117], "digest_prompt": [54, 86], "digest_webpag": [0, 54, 80, 86, 117], "digit0": [54, 56], "digit9": [54, 56], "digraph": 102, "dine": 41, "dingtalk": 128, "dinner": 41, "diplomaci": 41, "dir": [0, 45, 51, 52, 121], "direcotri": [54, 62], "direct": [41, 102, 103, 118, 123], "directli": [1, 6, 32, 34, 35, 37, 41, 42, 43, 54, 58, 59, 73, 108, 114, 115, 117, 118, 119, 121, 122, 123, 124], "director": 41, "directori": [0, 1, 9, 12, 13, 42, 44, 45, 51, 52, 54, 60, 62, 63, 64, 66, 67, 90, 93, 110, 114, 117, 121, 122, 124], "directory_path": [54, 62], "disabl": [0, 54, 59, 120], "disable_gradio": 12, "disable_sav": [0, 13, 120], "disciplin": 41, "disclos": 41, "discord": 128, "discours": 41, "discover": 41, "discuss": [20, 22, 41, 110, 115, 126, 127], "disguis": 110, "dish": 41, "disk": [14, 16], "displai": [32, 34, 41, 54, 59, 99, 115, 116, 121, 122], "disput": 41, "distconf": [0, 1, 2, 121], "distinct": [41, 103, 110, 112], "distinguish": [114, 118, 119, 121, 122], "distribut": [1, 2, 13, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 42, 44, 52, 53, 105, 107, 108, 112, 122, 129], "div": [54, 86], "divers": [88, 89, 107, 112, 115, 123, 127], "divid": [110, 114], "do": [38, 39, 40, 41, 54, 60, 84, 85, 108, 110, 111, 113, 121, 123], "do_someth": 121, "doc": [20, 22, 23, 25, 26, 29, 42, 44, 45, 67, 107, 114, 124], "docker": [54, 59, 117], "docstr": [54, 73, 117], "document": [41, 42, 43, 45, 66, 67, 107, 115, 117, 119, 121, 124, 127], "doe": [14, 15, 38, 39, 40, 41, 115, 118, 121], "doesn": [1, 2, 3, 4, 6, 8, 9, 13, 14, 16], "dog": 119, "doi": [54, 82], "domest": 41, "don": [13, 110, 118, 120, 121], "done": [20, 25], "dong": [54, 82], "dot": 99, "doubl": 115, "down": [54, 56], "download": [25, 46, 47, 51, 53, 54, 80, 117, 124], "download_fil": [0, 46, 47, 49, 51, 53], "download_from_url": [0, 54, 80, 83, 117], "drag": 122, "draggabl": 122, "draw": [20, 30], "dream": 41, "drive": 41, "drop": 122, "dry": 41, "due": [32, 37, 115, 123], "dump": [117, 118, 120], "duplic": [42, 44, 102, 103, 124], "durdu": [54, 82], "dure": [1, 7, 11, 35, 41, 110, 115, 117, 118], "duti": 41, "dynam": [32, 36, 41, 110, 112, 113], "e": [20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 41, 42, 44, 54, 56, 59, 60, 62, 67, 71, 73, 76, 107, 108, 109, 110, 114, 117, 118, 119, 120, 121, 123, 124, 125, 127], "e512": [20, 21], "ea89ae83": [20, 29], "each": [0, 1, 6, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 37, 41, 51, 53, 54, 58, 82, 84, 85, 88, 89, 102, 107, 109, 112, 113, 115, 117, 118, 119, 121, 122, 123, 124, 127], "earn": 41, "eas": [105, 107, 113, 119, 129], "easi": [0, 1, 6, 31, 41, 42, 44, 105, 122, 124, 129], "easier": 44, "easili": [41, 108, 110, 113, 115, 121], "echo": [17, 18, 54, 67, 118], "edg": 102, "edit": [54, 60, 67, 108, 117, 122], "edited_image_url1": [54, 67], "edited_image_url2": [54, 67], "educ": 41, "effect": [0, 1, 2, 31, 41, 54, 84, 123], "effici": [41, 107, 112, 123], "effort": [41, 107, 112], "eiffel": [54, 85], "either": [14, 15, 16, 20, 22, 54, 60, 84, 85, 109, 110, 118, 119], "eleg": [0, 31, 41], "element": [20, 30, 54, 56, 59, 69, 86, 102, 119, 122, 125], "element_id": [54, 56], "elementari": [41, 107], "elif": [113, 116], "elimin": [41, 110], "els": [38, 39, 40, 41, 103, 110, 113, 116, 117, 118], "else_body_oper": [38, 39, 40], "emb": [14, 16, 41, 54, 69, 124], "emb_model": [42, 43, 45], "emb_model_config_nam": 124, "emb_model_nam": [42, 44, 124], "embed": [13, 14, 16, 20, 21, 22, 25, 26, 27, 28, 30, 41, 42, 43, 44, 45, 54, 69, 70, 109, 114, 117, 118, 120, 123], "embed_model_config_nam": [41, 123], "embedding_cache_dir": [0, 13], "embedding_model": [13, 14, 16, 54, 69], "emblemat": 41, "embodi": 41, "emma": 41, "emot": 41, "empathet": 41, "empir": [88, 89], "emploi": 41, "empow": [105, 107, 115, 119, 122, 129], "empti": [20, 25, 51, 53, 54, 73, 86, 98, 102, 117, 119], "en": [1, 4, 42, 44, 45, 54, 67, 84, 85, 117, 124], "enabl": [20, 23, 25, 26, 30, 42, 44, 45, 90, 103, 105, 107, 112, 113, 118, 119, 129], "encapsul": [1, 9, 20, 28, 112, 113, 119, 121], "enclos": 41, "encod": [91, 124], "encoding_format": 114, "encount": [111, 126], "encourag": [1, 7, 20, 21, 23, 24, 25, 29, 30, 41, 88, 89, 123], "end": [1, 7, 11, 14, 15, 16, 20, 22, 32, 33, 34, 36, 37, 41, 54, 56, 58, 102, 110, 115, 116, 119, 123], "end_discuss": 115, "endow": [41, 110, 112], "engag": [41, 112, 123, 126], "engin": [1, 7, 20, 21, 23, 24, 25, 29, 30, 41, 54, 73, 82, 84, 102, 105, 107, 112, 114, 115, 123, 129], "english": 41, "englishsystempromptgener": [0, 41, 123], "enhanc": [41, 88, 89, 105, 111, 117, 129], "enjoi": 41, "enough": 123, "enrich": 112, "ensembl": 112, "ensur": [41, 54, 56, 88, 89, 107, 110, 112, 113, 115, 121, 122, 123], "enter": [54, 56, 115, 121, 122], "enthusiast": 123, "entir": 121, "entiti": [54, 87, 107], "entj": 41, "entj\u4eba\u683c\u7c7b\u578b": 41, "entri": [0, 54, 56, 85, 90, 98, 124], "enum": [10, 54, 72, 81, 82, 84, 85, 103], "environ": [1, 2, 8, 20, 22, 23, 26, 30, 54, 59, 107, 109, 110, 113, 114, 117, 121, 122, 123, 124], "environment": 113, "equal": [32, 37, 54, 56, 110, 123], "equip": [0, 1, 6, 41, 42, 44, 112, 123, 124], "equival": [115, 121], "era": 41, "error": [0, 11, 12, 13, 20, 21, 41, 54, 59, 60, 62, 63, 64, 71, 72, 75, 76, 77, 79, 81, 82, 83, 84, 85, 91, 93, 111, 115, 117, 122, 127], "escap": [32, 37, 54, 56, 115], "especi": [41, 54, 59, 119], "essenc": 41, "essenti": [54, 56, 109, 112, 118], "estim": 41, "estj": 41, "estj\u4eba\u683c\u7c7b\u578b": 41, "etc": [20, 29, 41, 54, 56, 59, 71, 84, 114, 115, 117, 124, 125], "ethic": 41, "europ": 41, "evafalleth": [54, 85], "eval": [59, 93], "eval_count": [20, 25], "eval_dur": [20, 25], "evalu": [88, 89, 102, 103, 113], "even": [41, 110, 115, 116, 124], "event": [51, 53, 98, 110], "eventdata": 98, "everi": [41, 110, 122], "everyon": 126, "evid": 41, "evok": 41, "exactli": 121, "exagger": 123, "exam": 41, "exampl": [0, 1, 2, 4, 6, 7, 20, 21, 23, 24, 25, 29, 30, 31, 32, 34, 36, 41, 42, 43, 44, 45, 54, 56, 58, 66, 67, 73, 79, 81, 82, 84, 85, 86, 87, 105, 107, 109, 113, 114, 115, 116, 118, 119, 120, 121, 123, 125, 127, 129], "example_dict": 115, "example_list": [41, 123], "example_num": [41, 123], "example_prompt_templ": 41, "example_selection_strategi": [41, 123], "exce": [1, 9, 11, 41, 54, 59, 79], "exceed": [1, 2, 51, 52, 53], "excel": 41, "except": [0, 20, 27, 32, 36, 41, 99, 105, 106, 107, 115, 117, 118], "exchang": [41, 107], "exec_nod": [100, 102], "exec_notebook": [54, 57], "exec_python": [54, 57], "exec_shel": [54, 57], "execut": [1, 5, 7, 38, 39, 40, 41, 54, 56, 58, 59, 60, 71, 72, 73, 75, 76, 77, 83, 84, 87, 93, 102, 103, 107, 109, 110, 113, 117, 121, 122], "execute_cod": [0, 54], "execute_nb_cod": 58, "execute_python_cod": [0, 54, 57, 59, 117], "execute_shell_command": [0, 54, 57, 60], "exercis": 41, "exert": [54, 84], "exeuct": [38, 39], "exist": [1, 2, 20, 21, 28, 32, 34, 51, 53, 54, 63, 64, 86, 112, 113, 118, 121, 124], "existing_ag": 113, "exit": [1, 2, 41, 109, 113, 121, 123], "expand": [112, 122], "expect": [1, 4, 41, 45, 54, 69, 111, 115, 123], "expedit": 112, "experi": [41, 122, 123, 126], "experienc": 41, "expert": [41, 123], "expertis": [41, 123], "expir": [1, 2, 51, 52, 53, 91], "explain": [41, 127], "explan": [41, 115], "explanatori": [54, 73, 117], "explicit": 41, "explicitli": [54, 84, 115], "exploit": 41, "export": [0, 14, 15, 16, 118, 124], "expos": 35, "express": [41, 102, 104, 115], "extend": [1, 8, 102, 113, 118, 123], "extens": [41, 42, 44, 107, 112, 124], "extern": 118, "extra": [20, 21, 23, 25, 26, 30, 93], "extract": [20, 24, 32, 33, 36, 37, 41, 54, 56, 73, 86, 103, 115, 117, 123], "extract_name_and_id": 110, "extras_requir": 93, "extrem": [41, 54, 82], "ey": 127, "f": [112, 117, 118, 121], "f1": [54, 56], "f12": [54, 56], "fabl": [41, 54, 67], "facilit": [113, 118, 121, 122, 125], "fact": 41, "factor": 41, "factori": [54, 73], "fail": [1, 4, 11, 20, 21, 27, 51, 53, 54, 82, 115, 121, 123], "failur": [41, 117], "fair": 41, "fall": [54, 82], "fals": [0, 1, 2, 7, 8, 9, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23, 25, 26, 29, 30, 32, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 49, 51, 52, 54, 56, 59, 63, 64, 73, 76, 77, 85, 86, 88, 89, 90, 99, 103, 110, 113, 115, 118, 120, 121, 123, 124], "falsehood": 41, "famili": [54, 85], "familiar": 41, "faq": 82, "fast": [42, 44], "fastchat": [20, 27, 110, 114], "fat": 41, "fatih": [54, 82], "fault": [54, 82, 105, 107, 115, 129], "favor": 41, "fd564688": [20, 21], "feasibl": [41, 115], "featur": [41, 105, 107, 111, 115, 120, 121, 122, 123, 126, 128, 129], "fed": [35, 114], "feed": [54, 79, 86], "feedback": [41, 122, 127], "feel": [41, 127], "fenc": [32, 33, 34, 115], "festiv": 41, "fetch": [13, 82, 121], "fetch_cached_text_embed": [0, 13], "few": 110, "field": [1, 2, 4, 7, 9, 11, 20, 21, 22, 25, 28, 32, 33, 34, 35, 36, 37, 51, 53, 54, 56, 86, 107, 109, 110, 112, 114, 115, 116, 117, 118, 119, 121, 122], "fieldinfo": [54, 56], "fierc": 41, "fig_path": [54, 66], "fight": 41, "figur": [20, 21], "figure1": [20, 21], "figure2": [20, 21], "figure3": [20, 21], "file": [0, 1, 6, 9, 12, 13, 14, 15, 16, 20, 21, 24, 42, 44, 46, 47, 49, 51, 52, 53, 54, 59, 60, 67, 83, 86, 99, 101, 107, 109, 110, 112, 114, 117, 118, 119, 120, 121, 124], "file_dir": [0, 13], "file_path": [14, 15, 16, 54, 62, 63, 64, 117, 118], "filemanag": [0, 13], "filenam": 13, "filenotfounderror": 101, "filepath": [54, 83], "filesystem": 59, "fill": [1, 2, 32, 34, 41, 54, 86, 115, 121, 122], "filter": [1, 4, 14, 15, 16, 32, 34, 35, 36, 37, 115, 118], "filter_func": [14, 15, 16, 118], "final": [32, 37, 45, 88, 89, 102, 112], "financi": 41, "find": [41, 54, 60, 75, 85, 114, 117, 122, 127], "fine": 111, "finish": [0, 1, 7, 115], "finish_discuss": [110, 115], "finish_reason": [20, 21, 23, 26, 29, 30], "firm": 41, "firmli": 41, "first": [14, 15, 16, 20, 21, 25, 31, 54, 58, 81, 82, 87, 102, 108, 110, 118, 119, 121, 122, 123, 124, 127], "firstli": 110, "fit": [1, 7, 41, 112, 119], "five": 117, "fix": [32, 36, 126, 127], "flac": [54, 67], "flag": 110, "flask": [114, 124], "flask_model": 124, "flavor": 41, "flexibl": [32, 36, 107, 109, 112, 115, 123], "flexibli": 115, "float": [13, 14, 16, 20, 26, 29, 54, 56, 59, 67, 69, 70, 93, 114, 124], "flow": [38, 39, 40, 103, 109, 110, 111, 113, 115, 122], "flush": [0, 13, 99], "fly": 45, "fn_choic": [95, 96, 98], "focu": [41, 121], "focus": [41, 127], "foe": 41, "follow": [0, 1, 7, 12, 20, 21, 22, 23, 24, 25, 27, 29, 30, 31, 32, 33, 36, 38, 40, 41, 43, 51, 52, 54, 56, 79, 82, 84, 85, 108, 109, 110, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125], "food": 41, "forc": [54, 84], "forecast": 41, "fork": 59, "forlooppipelin": [0, 38, 39, 40, 122], "forlooppipelinenod": [95, 100, 103], "form": [41, 118], "formal": 41, "format": [0, 1, 3, 4, 6, 9, 10, 11, 17, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 36, 37, 41, 42, 43, 54, 56, 59, 67, 73, 79, 94, 110, 111, 112, 117, 118, 119, 120, 121, 123, 125, 127], "format_": 124, "format_exampl": [32, 34], "format_for_common_chat_model": [0, 20, 24], "format_instruct": [0, 32, 33, 34, 36, 37, 115], "format_map": 110, "formatted_str": [0, 17, 18], "formerli": [51, 53], "forthright": 41, "forward": [20, 25, 41, 122], "fought": 41, "found": [7, 11, 20, 22, 54, 66, 101, 103, 110, 115, 121], "foundat": 112, "four": 43, "fp_44709d6fcb": [20, 26], "fragment": [14, 15, 16], "frame": 41, "framework": [41, 45], "free": [41, 127], "freedom": 115, "freeli": [115, 123], "frequent": 125, "friend": [41, 54, 85], "friendli": 122, "from": [1, 2, 3, 4, 6, 7, 11, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 29, 30, 31, 32, 36, 41, 42, 43, 44, 45, 46, 47, 49, 51, 52, 53, 54, 56, 58, 59, 60, 62, 67, 69, 73, 75, 81, 82, 83, 84, 85, 86, 87, 88, 89, 93, 98, 99, 102, 103, 107, 109, 110, 113, 115, 117, 118, 119, 121, 122, 123, 124, 125, 127], "from_dict": [0, 17, 18, 19], "fulfil": [41, 107], "full": [41, 54, 66, 116, 125], "func": [46, 49, 54, 73, 117], "func_nam": [46, 47], "funcpipelin": 113, "function": [0, 1, 2, 3, 4, 6, 7, 11, 13, 14, 15, 16, 17, 18, 20, 21, 22, 24, 32, 35, 36, 38, 40, 41, 42, 43, 45, 46, 47, 50, 51, 53, 54, 56, 58, 59, 69, 70, 73, 75, 79, 85, 86, 91, 93, 98, 101, 102, 107, 109, 110, 111, 112, 113, 114, 116, 118, 119, 120, 121, 122, 123, 124, 125], "function_nam": [98, 117], "functioncallerror": [0, 11, 106], "functioncallformaterror": [0, 11, 106], "functionnotfounderror": [0, 11, 106], "fundament": [107, 112], "further": [117, 122], "furthermor": 107, "futur": [1, 2, 41, 54, 56, 75, 123, 125], "futurist": [54, 67], "fuzzi": [54, 82], "g": [20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 41, 42, 44, 54, 56, 59, 60, 71, 73, 76, 107, 109, 110, 114, 117, 119, 123, 124, 125], "gain": [41, 110], "galleri": 122, "game": [105, 129], "game_werewolf": [1, 4, 110], "gather": [41, 112, 119, 123], "geekan": 58, "gemini": [20, 22, 109, 116, 119], "gemini_api_kei": 114, "gemini_chat": [20, 22, 114, 116], "gemini_embed": [20, 22, 114], "gemini_model": [0, 20], "geminichatwrapp": [0, 20, 22, 114, 116], "geminiembeddingwrapp": [0, 20, 22, 114], "geminiwrapperbas": [0, 20, 22], "gener": [0, 1, 2, 3, 4, 6, 7, 8, 9, 13, 14, 16, 17, 18, 19, 20, 21, 22, 23, 25, 26, 28, 29, 30, 32, 33, 37, 41, 42, 43, 45, 46, 47, 48, 51, 52, 53, 54, 59, 66, 67, 73, 82, 88, 89, 91, 93, 98, 99, 101, 103, 105, 107, 109, 111, 112, 114, 115, 116, 117, 118, 119, 121, 122, 124, 129], "generalrespons": [51, 53], "generate_agent_id": [0, 1, 2], "generate_arg": [20, 21, 23, 24, 26, 30, 110, 114], "generate_cont": [20, 22], "generate_image_from_nam": [95, 96, 99], "generate_jwt": [0, 90, 91], "generate_not": [0, 41, 123], "generate_server_id": [0, 51, 52], "generatecont": [20, 22], "generated_system_prompt": 123, "generation_method": [0, 20, 22], "generatortyp": 116, "geniu": 123, "genr": 123, "gentl": 41, "geo_location_id": [54, 85], "geo_location_nam": [54, 85], "get": [0, 1, 2, 13, 14, 16, 17, 19, 20, 24, 32, 34, 37, 41, 42, 44, 46, 47, 49, 51, 53, 54, 62, 73, 85, 88, 89, 94, 99, 107, 117, 120, 121, 122, 123, 124, 127], "get_action_funct": [0, 54, 55, 56, 125], "get_ag": [0, 51, 53], "get_agent_class": [0, 1, 2], "get_agent_list": [0, 46, 47, 49, 51, 53, 121], "get_agent_memori": [0, 46, 47, 49, 51, 53, 121], "get_all_ag": [95, 100, 103], "get_chat": [95, 96, 98], "get_chat_msg": [95, 96, 99], "get_config_by_nam": [0, 13], "get_current_directori": [0, 54, 61, 62], "get_embed": [0, 14, 16, 118, 124], "get_help": [0, 54], "get_inst": [0, 13], "get_json": 124, "get_knowledg": [0, 42, 44, 124], "get_memori": [0, 14, 15, 16, 112, 118, 123], "get_model_by_config_nam": [0, 13], "get_openai_max_length": [0, 92, 94], "get_player_input": [95, 96, 99], "get_reset_msg": [95, 96, 99], "get_respons": [0, 46, 47], "get_server_info": [0, 46, 47, 49, 51, 53, 121], "get_task_id": [0, 51, 53], "get_tripadvisor_location_detail": [54, 85], "get_wrapp": [0, 20, 24], "getawai": [54, 85], "git": [108, 125, 127], "github": [1, 4, 20, 22, 25, 45, 58, 59, 81, 88, 89, 93, 108, 125, 127, 128], "give": [41, 54, 66, 110, 115], "given": [1, 2, 7, 8, 9, 13, 20, 21, 31, 41, 54, 56, 60, 66, 67, 81, 83, 84, 86, 87, 88, 89, 90, 93, 98, 99, 101, 102, 103, 112, 113, 117, 123], "glm": [20, 30, 114, 119], "glm4": 114, "global": [41, 98, 124], "globe": 41, "gluten": 41, "go": [112, 124], "goal": [41, 119], "gone": 111, "good": [32, 37, 110, 123], "googl": [20, 22, 46, 54, 73, 84, 103, 109, 117], "google_search": [0, 54, 80, 84, 117], "googlesearchservicenod": [95, 100, 103], "govern": [54, 84], "gpt": [20, 23, 24, 26, 54, 67, 109, 110, 112, 114, 119, 120, 123], "grace": 41, "gradio": [0, 12, 95], "graph": [102, 107], "grasp": 41, "great": [41, 123], "greater": 110, "grep": [54, 60], "group": [0, 31, 32, 36, 54, 84, 85, 110, 113, 126], "growth": [41, 126], "grpc": [1, 8, 46, 49], "gte": 124, "guid": [41, 110, 111, 112, 115, 117, 123], "guidanc": [41, 119], "h": [54, 86, 124], "ha": [0, 1, 2, 3, 4, 13, 17, 18, 20, 21, 28, 31, 41, 54, 59, 69, 84, 110, 111, 112, 114, 115, 116, 119, 121, 122, 124, 127], "habit": 41, "hand": 115, "handl": [41, 54, 73, 98, 103, 110, 113, 115, 116, 117, 118, 124], "happen": 41, "hard": [1, 2, 3, 4, 14, 16, 32, 36, 41], "hash": 99, "hasn": 110, "have": [13, 14, 16, 20, 21, 22, 41, 73, 88, 89, 103, 108, 110, 112, 115, 118, 119, 121, 122, 123, 126, 127], "hawkwood": 41, "hd": [54, 67], "hd_1024": 120, "hdr": [54, 67], "header": [20, 24, 27, 114], "heal": 110, "healing_used_tonight": 110, "healthi": [41, 123], "heart": 41, "height": [0, 54, 55, 56, 85], "hello": [20, 25, 26, 54, 67, 111, 115, 123], "helloworld": [54, 58], "helloworldn": [54, 58], "help": [1, 7, 20, 21, 23, 24, 25, 29, 30, 41, 54, 66, 79, 109, 110, 111, 112, 114, 115, 119, 122, 123, 125, 127], "helper": [107, 110, 113], "her": 110, "here": [54, 71, 73, 110, 111, 112, 113, 114, 115, 117, 118, 121, 123, 124, 126, 127], "heterogen": [88, 89], "hex": 118, "hf": 124, "hf_endpoint": 124, "hi": [20, 21, 23, 24, 25, 29, 30, 41, 109, 119, 123], "hierarch": 107, "high": [17, 18, 41, 88, 89, 105, 107, 123, 129], "higher": [14, 16, 41, 108], "highest": [54, 69, 88, 89], "highli": [41, 119, 122, 123], "highlight": 117, "hinder": 41, "hint": [1, 9, 32, 33, 34, 37, 110, 112, 115, 119], "hire": 41, "histor": [41, 118], "histori": [20, 21, 23, 24, 25, 29, 30, 41, 90, 110, 113, 119, 123], "hl": [20, 22], "hold": [41, 121], "home": [0, 41, 54, 56, 84, 122], "hong": [54, 82], "honor": 41, "hook": 127, "host": [0, 1, 2, 8, 11, 17, 18, 19, 20, 25, 46, 47, 51, 52, 53, 54, 59, 75, 76, 90, 110, 121, 122], "hostmsg": 110, "hostnam": [1, 2, 8, 11, 17, 19, 46, 47, 51, 52, 53, 54, 75, 122], "hous": 41, "how": [6, 14, 15, 16, 20, 21, 23, 24, 25, 26, 29, 30, 41, 54, 66, 67, 82, 109, 111, 112, 113, 114, 116, 122, 123, 126, 127], "how_to_format_inputs_to_chatgpt_model": 118, "howev": [13, 41, 115, 116, 118, 119, 123], "hr": 41, "html": [0, 1, 4, 42, 44, 45, 54, 55, 56, 82, 86, 117, 122, 124, 125], "html_selected_tag": [54, 86], "html_text": [54, 86], "html_to_text": [54, 86], "http": [1, 4, 7, 20, 21, 22, 23, 25, 26, 29, 30, 45, 54, 56, 58, 59, 66, 67, 81, 82, 84, 85, 88, 89, 93, 108, 114, 117, 118, 119, 121, 122, 124, 125, 127], "hu": [54, 82], "hub": [31, 103, 110, 113], "hub_manag": 113, "huggingfac": [24, 109, 114, 124], "human": [41, 59, 93], "human_ev": [59, 93], "humor": 41, "hygien": 41, "i": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 34, 36, 37, 38, 40, 41, 45, 46, 47, 49, 50, 51, 53, 54, 56, 59, 62, 63, 66, 67, 69, 71, 73, 75, 79, 81, 82, 84, 85, 86, 88, 89, 91, 93, 99, 101, 102, 103, 105, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 127, 129], "i3": [20, 21], "icl": 123, "icon": 122, "id": [0, 1, 2, 6, 8, 17, 18, 19, 20, 21, 24, 26, 27, 29, 30, 42, 43, 44, 45, 46, 47, 49, 51, 52, 53, 54, 56, 81, 85, 87, 98, 109, 116, 118, 122, 124], "id_list": [54, 81], "idea": [1, 7, 20, 22, 32, 37, 127], "ident": [17, 18, 19, 110], "identif": 115, "identifi": [0, 20, 21, 23, 24, 25, 26, 27, 29, 30, 41, 54, 84, 85, 91, 102, 109, 110, 111, 114, 118, 121, 123, 124], "idx": 110, "if_body_oper": [38, 39, 40], "ifelsepipelin": [0, 38, 39, 40, 122], "ifelsepipelinenod": [95, 100, 103], "ignor": [112, 119, 121], "ill": 123, "illeg": 41, "illustr": [113, 123, 124], "imag": [13, 20, 21, 26, 28, 54, 59, 66, 67, 71, 85, 98, 99, 107, 109, 112, 114, 117, 118, 119, 120], "image_count": [13, 20, 21, 120], "image_term": 98, "image_to_text": [54, 66], "image_token": [20, 21], "image_url": [20, 28, 54, 66, 67, 119], "image_url1": [54, 66, 67], "image_url2": [54, 66, 67], "imagin": 41, "imaginari": 110, "imbu": 41, "imit": 41, "immedi": [1, 2, 17, 19, 105, 110, 111, 112, 121, 129], "impact": [41, 121], "implement": [1, 2, 5, 7, 20, 21, 23, 24, 25, 29, 30, 38, 40, 54, 56, 58, 59, 73, 81, 93, 103, 107, 112, 113, 114, 115, 118, 119, 123, 125], "impli": 121, "import": [0, 1, 13, 14, 20, 38, 41, 42, 44, 45, 46, 51, 54, 56, 58, 59, 88, 90, 98, 109, 110, 111, 112, 113, 114, 115, 117, 119, 120, 121, 123, 124, 125], "import_function_from_path": [95, 96, 98], "importantand": [54, 86], "importerror": 93, "importerrorreport": [0, 92, 93], "impos": [54, 59], "improv": [41, 54, 67, 117, 122, 123, 126, 127], "in_subprocess": [51, 52], "includ": [0, 1, 2, 8, 12, 13, 17, 18, 20, 30, 38, 40, 41, 54, 56, 60, 62, 63, 64, 82, 84, 85, 102, 107, 109, 110, 112, 114, 115, 116, 117, 118, 121, 122, 123, 124, 127], "including_self": [1, 8], "incom": 112, "incompet": 41, "incorpor": 41, "incorrect": [88, 89], "increas": [41, 110], "increment": [51, 53], "indent": 120, "independ": [41, 107], "index": [14, 15, 16, 20, 21, 23, 26, 29, 30, 41, 42, 43, 44, 45, 54, 81, 82, 117, 118, 124, 125], "indic": [11, 14, 15, 16, 20, 21, 41, 46, 47, 54, 62, 63, 64, 82, 110, 111, 112, 115, 116, 117, 118, 121, 122, 124], "individu": [54, 84, 115, 124], "industri": 41, "ineffici": 121, "inf": [88, 89], "infer": [24, 27, 109, 114], "influenc": 41, "influenti": 41, "info": [0, 12, 13, 102, 111, 120], "inform": [1, 7, 9, 13, 17, 18, 19, 20, 22, 41, 45, 46, 47, 49, 51, 53, 54, 56, 79, 81, 82, 84, 85, 86, 88, 89, 102, 103, 107, 110, 112, 113, 115, 117, 118, 121, 123, 124, 126], "ingredi": 41, "inhabit": 41, "inher": 107, "inherit": [1, 2, 20, 24, 110, 113, 114, 115, 121], "init": [0, 1, 2, 8, 11, 13, 20, 30, 41, 46, 47, 51, 52, 53, 54, 58, 90, 93, 106, 109, 110, 111, 114, 117, 120, 121, 122, 123], "init_arg": 124, "init_uid_list": [95, 96, 98], "init_uid_queu": [95, 96, 99], "initi": [0, 1, 2, 3, 4, 6, 7, 8, 9, 11, 13, 17, 18, 20, 21, 22, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 40, 41, 42, 43, 44, 45, 54, 56, 73, 98, 99, 101, 102, 103, 109, 112, 113, 114, 117, 118, 119, 121, 122, 124, 125], "initial_announc": 113, "inner": 41, "inner_text": [0, 54, 55, 56], "innoc": 41, "innov": [41, 105, 129], "input": [1, 2, 3, 4, 6, 8, 9, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 38, 39, 40, 41, 46, 47, 51, 52, 54, 67, 79, 86, 88, 89, 98, 99, 102, 103, 107, 109, 110, 112, 113, 114, 115, 117, 119, 121, 122, 123, 124], "input_dir": 124, "input_hint": [1, 9], "input_ob": [54, 58], "input_token": [20, 21], "inquir": 41, "inquiri": 41, "insecur": 49, "insert": [54, 56], "insid": 117, "insight": [41, 126], "inspect": 117, "inspir": 41, "instal": [25, 54, 56, 93, 105, 107, 110, 121, 122, 125, 127, 129], "instanc": [1, 2, 8, 11, 13, 17, 19, 41, 46, 47, 51, 53, 88, 89, 90, 102, 110, 113, 114, 118, 121], "instanti": [42, 43, 113, 118], "instead": 13, "instruct": [1, 4, 32, 33, 34, 36, 37, 41, 54, 67, 73, 79, 88, 89, 107, 112, 114, 117, 119, 124], "instruction_format": 115, "insur": 41, "int": [1, 2, 4, 6, 7, 8, 9, 11, 13, 14, 15, 16, 17, 19, 20, 23, 27, 29, 38, 39, 40, 41, 42, 43, 45, 46, 47, 51, 52, 53, 54, 56, 58, 59, 66, 67, 69, 73, 75, 76, 77, 79, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 99, 117, 118, 124], "integ": [20, 23], "integr": [45, 107], "intel": [54, 82], "intellig": [54, 82, 123], "intent": 41, "intenum": [10, 54, 72, 103], "interact": [11, 38, 40, 41, 54, 56, 58, 59, 60, 107, 109, 110, 111, 112, 113, 117, 118, 121, 123, 125], "interest": [41, 123, 124, 126], "interf": 59, "interfac": [38, 40, 98, 103, 107, 111, 112, 113, 114, 121, 122], "interlay": 107, "intermedi": 41, "intern": [41, 88, 89, 112], "interpret": 41, "interv": [20, 27], "introduc": [41, 107, 109, 112, 115, 117, 118, 121, 124], "introduct": 41, "intuit": 107, "invalid": [91, 119], "invest": 41, "investopedia": [54, 84], "invit": 126, "invoc": [0, 13, 109, 114], "invok": [1, 3, 4, 6, 41, 54, 60, 86, 103, 112, 113, 119, 124], "invoke_dir": [0, 13], "involv": [32, 37, 110, 115, 117, 127], "io": [1, 4], "ip": [1, 2, 54, 75, 76, 121, 122], "ip_a": 121, "ip_b": 121, "ipython": [54, 58, 59, 117], "irrevers": 122, "is_al": [0, 46, 47, 49, 51, 53, 121], "is_bless": [54, 85], "is_callable_express": [95, 100, 104], "is_click": [0, 54, 55, 56], "is_initi": [0, 13], "is_play": 99, "is_serializ": [0, 50, 106], "is_stream_exhaust": [0, 20, 28], "is_valid_url": [54, 80, 86], "isinst": [112, 116, 124], "island": [54, 85], "isn": 111, "iso": [54, 67, 85], "issu": [32, 37, 41, 111, 115, 123, 126, 127], "item": [54, 82, 85, 93, 117, 118], "iter": [1, 7, 14, 15, 16, 103, 113, 116, 118], "itinerari": 41, "its": [1, 2, 3, 14, 16, 24, 41, 54, 56, 62, 73, 75, 82, 102, 109, 110, 112, 114, 115, 117, 118, 119, 122, 123, 127], "itself": [14, 16, 118, 121], "j": [54, 82], "jargon": 41, "jif": [54, 82], "job": [41, 54, 86], "john": 41, "johnson": 41, "joi": 41, "join": [105, 110, 117, 123, 128, 129], "journal": [54, 82], "journei": 41, "jpg": [54, 66, 67, 85, 109, 119], "jr": [54, 81], "json": [0, 1, 4, 10, 11, 20, 21, 22, 23, 25, 26, 27, 29, 30, 32, 34, 36, 37, 41, 50, 51, 52, 54, 61, 73, 84, 85, 86, 91, 101, 109, 110, 112, 117, 118, 120, 121, 122, 124], "json_arg": [20, 27, 124], "json_object_pars": [0, 32], "json_required_hint": [0, 32, 37], "json_schema": [0, 54, 73, 117], "jsondecodeerror": [1, 4], "jsondictvalidationerror": [0, 11, 106], "jsonparsingerror": [0, 11, 106], "jsontypeerror": [0, 11, 106], "judgment": 115, "jupyt": [54, 58], "just": [14, 15, 16, 38, 39, 40, 113, 115, 116, 121, 123], "justic": 41, "jwt": 91, "k": [54, 69, 118, 124], "k1": [38, 40], "k2": [38, 40], "keen": [41, 123], "keep": [20, 21, 22, 41, 54, 79, 86, 111, 115, 123, 126, 127], "keep_al": [20, 25, 114], "keep_raw": [54, 86], "kei": [1, 9, 17, 18, 20, 21, 23, 26, 27, 29, 30, 32, 34, 35, 36, 37, 41, 42, 44, 54, 56, 66, 67, 73, 79, 84, 85, 86, 87, 91, 103, 109, 112, 114, 115, 117, 118, 119, 121, 123, 124], "kernel": [54, 82], "keskin": [54, 82], "keskinday21": [54, 82], "keya": [54, 56], "keyerror": 118, "keys_allow_miss": [32, 37], "keys_to_cont": [32, 34, 35, 36, 37, 110, 115], "keys_to_memori": [32, 34, 35, 36, 37, 110, 115], "keys_to_metadata": [32, 34, 35, 36, 37, 115], "keyword": [20, 21, 23, 25, 26, 30, 41, 54, 84, 87, 117], "keyz": [54, 56], "kill": [59, 110], "kind": [38, 40, 115, 125], "king": 41, "kingdom": 41, "kingslei": 41, "kitchen": 41, "knight": 41, "knighthood": 41, "knightli": 41, "know": [32, 36, 41, 110], "knowledg": [0, 1, 6, 41, 42, 44, 45, 54, 69, 121, 123], "knowledge_bank": [0, 42, 124], "knowledge_config": [42, 43, 44, 45, 124], "knowledge_id": [42, 43, 44, 45, 124], "knowledge_id_list": [1, 6, 42, 44, 124], "knowledge_list": [1, 6, 124], "knowledgebank": [0, 42, 44, 124], "knowledgebas": [42, 44], "known": [32, 36, 41, 110, 123], "kong": [54, 82], "kwarg": [1, 2, 3, 4, 6, 7, 8, 9, 12, 13, 17, 18, 20, 21, 22, 23, 24, 25, 26, 27, 30, 42, 43, 45, 54, 73, 75, 76, 77, 84, 102, 104, 112, 114, 117, 118, 123], "kwarg_convert": [95, 100, 104], "l": [54, 60, 62, 122], "lab": [54, 82], "label": [54, 56, 125], "lace": 41, "lack": 41, "ladi": 41, "lambda": [38, 39, 40], "lancelot": 41, "land": 41, "langchain": 124, "languag": [1, 3, 4, 6, 32, 33, 41, 45, 54, 67, 85, 107, 112, 113, 115, 117, 119, 123, 124], "language_nam": [32, 33, 115], "larg": [20, 29, 41, 54, 85, 107, 114, 115, 117, 119, 121, 122, 123], "last": [12, 14, 16, 20, 21, 88, 89, 109, 110, 116, 119, 122, 124, 125], "last_chunk": 116, "latenc": [54, 67], "later": [112, 121, 124], "latest": [20, 25, 41, 88, 89, 122, 125, 126], "latitud": [54, 85], "launch": [0, 1, 2, 8, 51, 52, 101, 107, 121], "launch_serv": [1, 2], "launcher": [0, 51], "layer": [54, 59, 107], "lazy_launch": [1, 2, 8], "lead": [1, 9, 41, 123], "learn": [41, 54, 81, 82, 84, 87, 110, 117, 122], "least": [41, 119, 122, 124], "leav": [54, 75], "lecun": [54, 81], "led": 41, "left": 122, "legendari": 41, "length": [20, 27, 41, 54, 58, 94], "less": [54, 79, 107], "let": [107, 110, 121, 123], "level": [0, 12, 41, 54, 85, 105, 107, 111, 120, 129], "leverag": [88, 89], "li": [41, 54, 86], "librari": [20, 25, 41, 123], "licens": [81, 107], "life": [41, 110], "lihong": [54, 82], "like": [20, 23, 38, 39, 40, 41, 109, 113, 122, 123, 124, 125], "limit": [1, 9, 41, 54, 59, 79, 93, 115, 122], "line": [41, 51, 52, 99, 101, 110, 111, 112, 121, 124], "lingyiwanwu": [20, 29], "link": [54, 56, 84, 86, 110, 118, 122], "linux": 0, "list": [0, 1, 6, 8, 9, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 41, 42, 43, 44, 45, 46, 47, 49, 51, 52, 53, 54, 56, 62, 66, 67, 69, 70, 73, 81, 82, 84, 85, 88, 89, 90, 94, 98, 99, 102, 103, 104, 109, 110, 112, 113, 114, 115, 117, 118, 119, 121, 123, 124, 125], "list_directory_cont": [0, 54, 61, 62], "list_model": [20, 22], "list_of_iso_639": [54, 67], "listen": [1, 2, 8, 51, 52], "lite_llm_openai_chat_gpt": 114, "litellm": [20, 23, 116, 119], "litellm_chat": [20, 23, 114, 116], "litellm_model": [0, 20], "litellmchatmodelwrapp": 114, "litellmchatwrapp": [0, 20, 23, 114, 116], "litellmwrapperbas": [0, 20, 23], "liter": [0, 12, 13, 17, 18, 19, 41, 54, 66, 67, 102, 111], "literatur": 41, "littl": [41, 54, 75, 123], "liu": [54, 82], "ll": [41, 111, 123], "llama": [42, 44, 45, 114, 124], "llama2": [114, 119], "llama3": [20, 25], "llama_index": [45, 124], "llama_index_knowledg": [0, 42], "llamaindex": [1, 6, 45, 124], "llamaindexag": [0, 1, 6, 124], "llamaindexknowledg": [0, 42, 45], "llm": [0, 20, 23, 32, 34, 36, 37, 41, 42, 43, 44, 45, 54, 87, 88, 89, 107, 110, 115, 116, 117, 119, 123, 124, 125], "lo": [20, 29], "load": [0, 1, 2, 3, 4, 7, 13, 14, 15, 16, 20, 22, 25, 32, 37, 41, 42, 43, 45, 52, 54, 56, 101, 103, 109, 114, 115, 117, 118, 121, 124], "load_agents_from_dir": [0, 51, 52], "load_agents_from_fil": [0, 51, 52], "load_config": [95, 100, 101], "load_data": 124, "load_dict": [0, 13], "load_dur": [20, 25], "load_model_config": [0, 13], "load_web": [0, 54, 80, 86, 117], "loader": [42, 44, 45, 124], "local": [0, 1, 2, 8, 12, 13, 20, 21, 41, 46, 47, 51, 52, 53, 54, 67, 107, 109, 110, 118, 119, 121, 122, 123, 127], "local_embedding_model": [41, 123], "local_mod": [1, 2, 8, 51, 52], "localhost": [1, 2, 8, 51, 52, 53, 54, 76], "localized_nam": [54, 85], "locat": [17, 19, 54, 83, 85, 110, 117, 121, 124], "location_id": [54, 85], "log": [0, 13, 105, 106, 112, 123, 129], "log_gradio": [0, 12, 106], "log_level": [0, 111], "log_msg": [0, 12, 106], "log_retriev": [1, 6, 124], "log_stream_msg": [0, 12, 106, 116], "logger": [0, 12, 118, 120], "logger_level": [0, 13, 110, 111], "logic": [1, 5, 38, 40, 41, 103, 112, 113, 123], "login": 91, "logprob": [20, 26], "loguru": [12, 111], "long": [10, 20, 25, 41, 54, 87, 113, 114, 121, 124, 125], "longer": 121, "longitud": [54, 85], "look": 122, "loop": [1, 7, 38, 39, 40, 103, 109, 110, 115], "loop_body_oper": [38, 39, 40], "lord": 41, "love": 41, "low": 41, "loyal": 41, "loyalti": 41, "lst": 102, "ltd": [54, 82], "lukasschwab": 81, "lynch": 110, "m": [111, 123, 124, 127], "maa": [20, 30], "mac": [0, 108], "machin": [46, 47, 54, 82, 87, 121, 122], "machine1": 121, "machine2": 121, "machine_learn": [54, 87], "machinesand": [54, 82], "made": [54, 56, 67, 127], "magic": 41, "mai": [20, 21, 22, 26, 41, 54, 73, 84, 88, 89, 102, 110, 112, 113, 114, 115, 119, 121, 122, 123, 124, 127], "main": [20, 25, 28, 54, 56, 58, 95, 100, 101, 110, 112, 113, 115, 117, 121, 122, 127], "main_model": [88, 89], "maintain": [41, 112, 118, 123, 124], "mainthread": 93, "major": 110, "majority_vot": 110, "make": [20, 22, 41, 42, 44, 88, 89, 112, 114, 119, 121, 123], "malici": 121, "manag": [0, 31, 32, 36, 41, 93, 103, 106, 107, 108, 109, 110, 112, 113, 120], "mandatori": 122, "mani": [54, 75, 76, 119, 123, 124], "manipul": 118, "manner": [41, 105, 121, 123, 124, 129], "manual": 113, "map": [38, 39, 40, 54, 56, 113, 117], "marie\u4e00\u76f4\u81f4\u529b\u4e8e\u5728\u79d1\u6280\u9886\u57df\u6709\u6240\u5efa\u6811": 41, "marie\u559c\u6b22\u901a\u8fc7\u5e7d\u9ed8\u548c\u6bd4\u55bb\u6765\u7f13\u89e3\u7d27\u5f20\u6216\u4e25\u8083\u7684\u8bdd\u9898": 41, "marie\u6b63\u5728\u9886\u5bfc\u4e00\u4e2a\u521b\u65b0\u9879\u76ee\u56e2\u961f": 41, "marie\u806a\u660e": 41, "mark": [54, 56, 115, 125], "markdown": [32, 33, 34, 41, 54, 56, 115, 125], "markdowncodeblockpars": [0, 32, 33], "markdownifi": 125, "markdownjsondictpars": [0, 32, 34, 110], "markdownjsonobjectpars": [0, 32, 34], "market": [41, 123], "martial": 41, "mask": [54, 67, 117], "mask_imag": [54, 67], "mask_url": [54, 67], "master": [41, 59, 93], "masteri": 41, "match": [14, 15, 16, 41, 54, 85, 110, 124], "materi": 41, "math": [41, 123], "matplotlib": [54, 59], "matter": 41, "max": [1, 2, 8, 51, 52, 53, 94, 114, 119, 120], "max_game_round": 110, "max_it": [1, 7], "max_iter": 113, "max_length": [20, 24, 27, 124], "max_length_of_model": 24, "max_loop": [38, 39, 40], "max_memb": [54, 87], "max_pool_s": [1, 2, 8, 51, 52, 53], "max_result": [54, 81], "max_retri": [1, 4, 20, 24, 27, 114], "max_return_token": [54, 79], "max_timeout_second": [1, 2, 8, 51, 52, 53], "max_token": [20, 29], "max_werewolf_discussion_round": 110, "maxcount_result": [54, 75, 76, 77], "maxim": 41, "maximum": [1, 2, 4, 7, 20, 27, 29, 38, 39, 40, 51, 52, 53, 54, 59, 69, 75, 76, 77, 81, 87], "maximum_memory_byt": [54, 59], "mayb": [1, 7, 20, 21, 23, 24, 25, 29, 30, 32, 37, 54, 87, 125], "md": [20, 25, 42, 44, 114, 124], "mean": [0, 1, 2, 7, 14, 16, 17, 18, 31, 54, 87, 109, 115, 121], "meanwhil": [115, 121], "measur": 41, "mechan": [41, 54, 87, 105, 107, 109, 113, 129], "media": [41, 54, 85], "mediev": 41, "medium": [20, 29, 54, 85, 114], "meet": [38, 39, 40, 41, 112, 117, 119], "mem": 121, "member": [54, 87, 127], "memori": [0, 1, 2, 3, 4, 6, 8, 9, 20, 25, 32, 35, 36, 41, 42, 43, 46, 47, 49, 51, 53, 54, 59, 69, 105, 106, 107, 110, 112, 114, 115, 116, 121, 123, 129], "memorybas": [0, 14, 15, 16], "men": 41, "mention": 41, "mentor": 41, "mercenari": 41, "merg": [20, 21, 124], "messag": [0, 1, 2, 3, 4, 6, 8, 9, 11, 12, 14, 15, 16, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 35, 36, 46, 47, 51, 52, 53, 54, 60, 62, 63, 64, 69, 71, 75, 76, 77, 79, 82, 83, 98, 99, 100, 103, 105, 106, 109, 110, 112, 114, 116, 117, 119, 121, 122, 123, 124, 127], "message_from_alic": 109, "message_from_bob": 109, "messages_kei": [20, 27, 114], "met": 113, "meta": [41, 54, 56, 82, 114, 123], "meta_data": [0, 54, 55, 56], "meta_prompt": [41, 123], "meta_prompt_templ": 41, "metadata": [0, 17, 18, 19, 49, 54, 56, 110, 115, 118], "metagpt": 58, "method": [1, 2, 5, 7, 8, 9, 14, 15, 16, 17, 19, 20, 22, 26, 32, 34, 35, 36, 37, 41, 54, 56, 82, 102, 103, 109, 112, 115, 117, 118, 121, 122, 123, 124, 125], "meticul": [41, 123], "metric": [11, 14, 16, 118], "microsoft": [54, 84, 117], "midterm": 41, "might": [41, 110, 119, 123, 127], "migrat": 121, "militari": 41, "mind": 112, "mine": [20, 21], "mini": [20, 26], "minilm": [20, 25], "minim": 112, "minor": 123, "minu": [54, 56], "mirror": 124, "mislead": [41, 123], "miss": [11, 32, 34, 37, 93, 112], "missing_begin_tag": [0, 11], "missing_end_tag": [0, 11], "mistak": 41, "misunderstand": [20, 21, 41], "misunderstood": 41, "mit": 81, "mix": [89, 113], "mixin": 35, "mixtur": [119, 121], "mixture_of_ag": [0, 88], "mixtureofag": [0, 88, 89], "mkt": [54, 84], "moa": [88, 89], "mock": 41, "modal": [107, 117, 118], "mode": [13, 20, 22, 23, 25, 26, 30, 51, 52, 90, 108, 122], "model": [0, 1, 2, 3, 4, 6, 7, 10, 11, 13, 14, 16, 32, 33, 34, 35, 36, 37, 41, 42, 43, 44, 45, 46, 47, 49, 51, 52, 53, 54, 56, 66, 67, 69, 73, 79, 86, 88, 89, 94, 100, 102, 103, 105, 106, 107, 112, 115, 117, 118, 120, 122, 123, 125, 129], "model_computed_field": [0, 54, 55, 56], "model_config": [0, 13, 46, 47, 54, 55, 56, 109, 110, 114, 116, 120, 121, 123], "model_config_nam": [1, 2, 3, 4, 6, 7, 41, 109, 110, 112, 121, 123, 124], "model_config_or_path": 114, "model_config_path_a": 121, "model_config_path_b": 121, "model_configs_templ": 121, "model_field": [0, 54, 55, 56], "model_nam": [0, 13, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 42, 44, 94, 109, 110, 114, 119, 120, 123], "model_name_for_openai": 24, "model_name_or_path": 124, "model_or_model_config_nam": [41, 123], "model_respons": 117, "model_typ": [0, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 109, 110, 114, 116, 121, 123], "modelmanag": [0, 13], "modelnod": [95, 100, 103], "modelrespons": [0, 20, 21, 28, 32, 33, 34, 35, 36, 37, 114, 115], "modelscop": [1, 4, 108, 109, 114, 124, 125], "modelscope_cfg_dict": 109, "modelwrapp": 114, "modelwrapperbas": [0, 13, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 41, 42, 43, 45, 54, 69, 79, 86, 88, 89, 114], "moder": 110, "modifi": [1, 7, 59, 112, 115, 121], "modul": [105, 106, 107, 110, 111, 117, 118, 121, 123, 124, 125], "module_nam": 98, "module_path": 98, "monasteri": 41, "mongodb": [54, 74, 117], "monitor": [0, 13, 105, 122, 125, 129], "monitormanag": [0, 13], "more": [0, 1, 7, 20, 21, 22, 23, 31, 32, 36, 41, 42, 44, 45, 54, 66, 67, 84, 85, 88, 89, 109, 110, 111, 112, 115, 117, 118, 119, 121, 122, 123, 125], "most": [1, 6, 14, 15, 41, 42, 43, 45, 51, 52, 110, 118, 119, 122, 124], "motiv": 41, "mount": 115, "mountain": [54, 66], "move": [54, 62, 117, 123], "move_directori": [0, 54, 61, 62, 117], "move_fil": [0, 54, 61, 62, 117], "mp3": [54, 67, 119], "mpnet": [41, 123], "msg": [0, 1, 2, 3, 4, 6, 7, 8, 9, 12, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 41, 46, 47, 50, 54, 73, 93, 98, 99, 109, 110, 111, 112, 113, 115, 116, 117, 119, 121, 123], "msg1": 121, "msg2": 121, "msg_hub": 113, "msg_id": 99, "msghub": [0, 105, 106, 109, 122, 129], "msghubmanag": [0, 31, 106, 113], "msghubnod": [95, 100, 103], "msgnode": [95, 100, 103], "much": [0, 31, 113, 127], "muhammet": [54, 82], "multi": [20, 22, 41, 105, 107, 108, 109, 110, 111, 112, 113, 117, 118, 119, 121, 122, 123, 126, 129], "multi_mod": [0, 54], "multimod": [17, 18, 20, 21, 54, 66, 114, 119], "multipl": [1, 6, 15, 20, 21, 32, 36, 37, 38, 39, 40, 42, 44, 54, 66, 88, 89, 103, 109, 110, 112, 113, 115, 119, 121, 124, 127], "multitaggedcontentpars": [0, 32, 37], "must": [14, 15, 16, 17, 18, 20, 21, 22, 23, 32, 37, 41, 54, 85, 110, 112, 115, 116, 117, 119, 121, 122, 123, 124], "mutlipl": 121, "my": [41, 123], "my_ag": [51, 52, 121], "my_arg1": 114, "my_arg2": 114, "my_dashscope_chat_config": 114, "my_dashscope_image_synthesis_config": 114, "my_dashscope_multimodal_config": 114, "my_dashscope_text_embedding_config": 114, "my_gemini_chat_config": 114, "my_gemini_embedding_config": 114, "my_model": 114, "my_model_config": 114, "my_ollama_chat_config": 114, "my_ollama_embedding_config": 114, "my_ollama_generate_config": 114, "my_openai": 121, "my_postapichatwrapper_config": 114, "my_postapiwrapper_config": 114, "my_zhipuai_chat_config": 114, "my_zhipuai_embedding_config": 114, "myagent": [110, 116, 121, 123], "mymodelwrapp": 114, "mysql": [54, 74, 75, 117], "mysteri": 41, "mysystempromptgener": 123, "n": [14, 15, 20, 21, 23, 24, 25, 29, 30, 32, 33, 37, 38, 40, 41, 54, 66, 67, 79, 86, 87, 88, 89, 108, 110, 112, 114, 115, 117, 119, 123], "n1": [41, 110], "n2": [41, 110], "n3": 41, "n4": 41, "n5": 41, "n6": 41, "n7": 41, "n8": 41, "n9": 41, "nalic": 119, "name": [0, 1, 2, 3, 4, 6, 7, 8, 9, 11, 13, 14, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 32, 33, 34, 36, 37, 41, 42, 44, 46, 47, 54, 56, 58, 59, 73, 75, 76, 77, 79, 82, 85, 88, 89, 99, 101, 102, 107, 108, 109, 110, 111, 112, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 127], "name1": [32, 36], "name2": [32, 36], "namespac": [54, 87], "nanyang": [54, 82], "narrow": 41, "nation": [54, 82], "nativ": [54, 59], "natur": [41, 54, 59, 67, 85, 110, 118], "nature_park": [54, 85], "navig": [41, 112], "nbe": [54, 58], "nbelief": 41, "nbob": 119, "ncharact": 41, "nconstraint": 110, "ndarrai": 13, "necessari": [41, 73, 102, 107, 113, 117, 118, 122], "need": [1, 2, 3, 4, 6, 7, 8, 9, 14, 16, 17, 18, 20, 23, 24, 41, 45, 51, 52, 54, 67, 79, 87, 103, 108, 110, 112, 114, 115, 117, 118, 119, 120, 121, 123, 124, 125], "negative_prompt": 114, "neighborhood_info": [54, 85], "neither": [54, 85, 110], "nest": 122, "network": 121, "networkx": 102, "neutral": 41, "new": [14, 15, 16, 31, 41, 46, 47, 49, 51, 53, 54, 62, 108, 113, 114, 115, 118, 124, 125, 126, 128], "new_ag": 113, "new_particip": [31, 113], "next": [41, 99, 103, 110, 113, 121], "nfor": 110, "nfrom": 41, "ngame": 110, "nice": 119, "nif": 41, "night": 110, "nin": [41, 110], "nmarie\u7684\u8a00\u8bed\u98ce\u683c\u5145\u6ee1\u4e86\u5bf9\u79d1\u6280\u548c\u672a\u6765\u7684\u70ed\u7231": 41, "nnow": 41, "nobil": 41, "nobl": 41, "node": [54, 56, 102, 103, 104, 122, 124], "node_id": [102, 103], "node_info": 102, "node_nam": [0, 54, 55, 56], "node_pars": 124, "node_typ": [100, 103], "node_valu": [0, 54, 55, 56], "nodes_not_in_graph": [100, 102], "nodewithscor": 45, "non": [54, 59, 102, 107, 116, 121], "none": [0, 1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 51, 52, 53, 54, 56, 58, 59, 66, 67, 69, 73, 75, 76, 77, 81, 85, 86, 88, 89, 90, 91, 93, 98, 99, 101, 102, 103, 109, 110, 112, 113, 115, 116, 117, 118, 119, 121, 123], "nonetyp": [54, 56], "nonsens": 41, "nor": [54, 85, 110], "normal": [17, 18, 54, 67, 117, 121, 122], "note": [1, 2, 12, 13, 20, 21, 23, 24, 25, 29, 30, 32, 36, 41, 45, 46, 47, 51, 52, 53, 54, 60, 87, 108, 109, 110, 112, 113, 114, 115, 116, 119, 121, 123, 125], "notebook": [54, 58], "notebookexecutor": [0, 54, 57, 58, 117], "noth": [38, 39, 40, 123], "notic": [6, 14, 15, 16, 54, 79, 110], "notif": 127, "notifi": [1, 2], "notimplementederror": [112, 118], "noun": [54, 84], "nova": [54, 67], "now": [41, 50, 54, 75, 110, 113, 116, 123, 124, 127], "np": 13, "nperson": 41, "nplayer": 110, "npleas": 41, "nrais": 41, "nrespons": [88, 89], "nseer": 110, "nsinc": 41, "nskill": 41, "nstrength": 41, "nsummar": [54, 79], "nthe": [41, 110], "nthere": 110, "null": [20, 21, 26, 120], "num_complet": [54, 82], "num_dot": 99, "num_inst": [1, 8], "num_result": [54, 73, 82, 84, 117], "num_review": [54, 85], "num_tokens_from_cont": [0, 92, 94], "number": [1, 2, 4, 6, 7, 8, 14, 15, 16, 20, 27, 29, 32, 36, 38, 39, 40, 41, 42, 43, 45, 51, 52, 53, 54, 66, 67, 69, 70, 73, 75, 76, 77, 79, 81, 82, 83, 84, 87, 88, 89, 93, 110, 111, 113, 115, 117, 118, 121, 122, 123, 124], "numer": 41, "nurtur": 41, "nutrit": 41, "nvictori": 110, "nvillag": 110, "nweak": 41, "nwerewolv": 110, "nwitch": 110, "nyou": [41, 54, 79, 110], "nyour": 41, "n\u4ece\u5c0f\u4f60\u5c31\u5bf9\u79d1\u5b66\u6000\u6709\u6d53\u539a\u7684\u5174\u8da3": 41, "n\u4ece\u5c0f\u5c31\u8868\u73b0\u51fa\u8d85\u7fa4\u7684\u63a8\u7406\u548c\u89c2\u5bdf\u80fd\u529b": 41, "n\u4f18\u70b9": 41, "n\u4f5c\u4e3a\u5973\u6d77\u76d7\u8239\u957f": 41, "n\u4f60\u51fa\u751f\u4e8e\u4e00\u4e2a\u666e\u901a\u5bb6\u5ead": 41, "n\u4f60\u51fa\u751f\u4e8e\u4e00\u4e2a\u666e\u901a\u7684\u4e2d\u4ea7\u5bb6\u5ead": 41, "n\u4f60\u51fa\u751f\u5728\u4e00\u4e2a\u4f01\u4e1a\u5bb6\u5bb6\u5ead": 41, "n\u4f60\u51fa\u751f\u5728\u4e00\u4e2a\u666e\u901a\u7684\u519c\u5bb6": 41, "n\u4f60\u51fa\u751f\u5728\u4e00\u4e2a\u70ed\u7231\u6237\u5916\u6d3b\u52a8\u7684\u5bb6\u5ead": 41, "n\u4f60\u51fa\u751f\u5728\u4e00\u4e2a\u8fb9\u8fdc\u7684\u6e38\u4fa0\u90e8\u65cf": 41, "n\u4f60\u51fa\u751f\u5728\u7cbe\u7075\u65cf\u4e2d\u4e00\u4e2a\u9887\u5177\u58f0\u671b\u7684\u5bb6\u65cf": 41, "n\u4f60\u51fa\u8eab\u4e8e\u4e00\u4e2a\u671b\u65cf": 41, "n\u4f60\u5728\u4e00\u4e2a\u5feb\u901f\u53d1\u5c55": 41, "n\u4f60\u5728\u8bfa\u74e6\u5229\u65af\u5e02": 41, "n\u4f60\u5904\u5728\u4e00\u4e2a\u4ee5\u5c01\u5efa\u5236\u5ea6\u4e3a\u6838\u5fc3\u7684\u53e4\u4ee3\u56fd\u5bb6": 41, "n\u4f60\u5904\u5728\u4e00\u4e2a\u73b0\u4ee3\u90fd\u5e02\u7684\u9ad8\u4e2d\u73af\u5883": 41, "n\u4f60\u5c45\u4f4f\u5728\u4eac\u57ce": 41, "n\u4f60\u5de5\u4f5c\u4e8e\u4e00\u5bb6\u56fd\u9645\u77e5\u540d\u7684\u65b0\u95fb\u673a\u6784": 41, "n\u4f60\u6240\u5728\u7684\u662f\u4e00\u4e2a\u5145\u6ee1\u8c1c\u56e2\u548c\u672a\u89e3\u4e4b\u8c1c\u7684\u73b0\u4ee3\u4e16\u754c": 41, "n\u4f60\u6240\u5728\u7684\u662f\u4e00\u4e2a\u6b66\u4fa0\u4e16\u754c": 41, "n\u4f60\u6240\u5904\u7684\u662f\u4e00\u4e2a\u5145\u6ee1\u6c5f\u6e56\u4e49\u6c14\u7684\u4e16\u754c": 41, "n\u4f60\u662fmari": 41, "n\u4f60\u662f\u4e00\u4e2a\u4e13\u4e1a\u7684\u5065\u8eab\u6559\u7ec3": 41, "n\u4f60\u662f\u4e00\u4e2a\u64c5\u957f\u5199\u548c\u4f18\u5316system": 41, "n\u4f60\u662f\u4e00\u4f4d\u4e50\u4e8e\u52a9\u4eba": 41, "n\u4f60\u662f\u4e00\u4f4d\u5c0f\u7ea2\u4e66\u6587\u6848\u5927\u5e08": 41, "n\u4f60\u662f\u4e00\u4f4d\u624d\u534e\u6a2a\u6ea2\u7684\u5e02\u573a\u5206\u6790\u5e08": 41, "n\u4f60\u662f\u4e00\u4f4d\u7cbe\u660e\u7684\u5e02\u573a\u5206\u6790\u4e13\u5bb6": 41, "n\u4f60\u662f\u4e00\u4f4d\u7ecf\u9a8c\u4e30\u5bcc\u7684hr\u4e13\u5bb6": 41, "n\u4f60\u662f\u4e00\u4f4d\u7ecf\u9a8c\u4e30\u5bcc\u7684\u4e13\u4e1a\u77ed\u89c6\u9891\u5267\u672c\u521b\u4f5c\u5927\u5e08": 41, "n\u4f60\u662f\u4e00\u4f4d\u7ecf\u9a8c\u4e30\u5bcc\u7684\u6559\u80b2\u4e13\u5bb6": 41, "n\u4f60\u662f\u4e00\u4f4d\u7ecf\u9a8c\u4e30\u5bcc\u7684\u65c5\u884c\u987e\u95ee": 41, "n\u4f60\u662f\u4e00\u4f4d\u8bc1\u5238\u4e13\u5bb6": 41, "n\u4f60\u662f\u4e00\u4f4d\u8d44\u6df1\u4e14\u6781\u5177\u5f71\u54cd\u529b\u7684\u7f8e\u98df\u4e13\u5bb6": 41, "n\u4f60\u662f\u4e00\u4f4d\u8d44\u6df1\u7684\u5065\u8eab\u8bad\u7ec3\u5e08": 41, "n\u4f60\u662f\u4e00\u540d\u4e13\u4e1a\u7684\u5e02\u573a\u5206\u6790\u5e08": 41, "n\u4f60\u662f\u4e00\u540d\u7f16\u7a0b\u4e13\u5bb6": 41, "n\u4f60\u662f\u4e2d\u571f\u65cf\u4eba": 41, "n\u4f60\u662f\u4f55\u8389\u8389": 41, "n\u4f60\u662f\u5f20\u534e": 41, "n\u4f60\u662f\u5f20\u6668\u5149": 41, "n\u4f60\u662f\u6155\u5bb9\u5343\u5c71": 41, "n\u4f60\u662f\u674e\u5a1c": 41, "n\u4f60\u662f\u674e\u660c\u5b87": 41, "n\u4f60\u662f\u674e\u6b23": 41, "n\u4f60\u662f\u674e\u9752\u4e91": 41, "n\u4f60\u662f\u6797\u9038\u98ce": 41, "n\u4f60\u662f\u67ef\u5357": 41, "n\u4f60\u662f\u827e\u745e\u5a1c": 41, "n\u4f60\u662f\u827e\u8389\u5a05": 41, "n\u4f60\u662f\u827e\u8389\u68ee": 41, "n\u4f60\u662f\u827e\u8389\u897f\u4e9a": 41, "n\u4f60\u662f\u82cf\u96e8\u8431": 41, "n\u4f60\u662f\u83ab\u95ee\u5929": 41, "n\u4f60\u662f\u8d5b\u7433\u5a1c": 41, "n\u4f60\u662f\u8d75\u5a77": 41, "n\u4f60\u662f\u96f7\u5a05": 41, "n\u4f60\u662f\u970d\u5c55\u767d": 41, "n\u4f60\u662f\u9a6c\u514b": 41, "n\u4f60\u662f\u9ec4\u84c9": 41, "n\u4f60\u6765\u81ea\u4e00\u4e2a\u6ce8\u91cd\u6559\u80b2\u7684\u5bb6\u5ead": 41, "n\u4f60\u6765\u81ea\u4e8e\u4e00\u4e2a\u6280\u672f\u9ad8\u5ea6\u53d1\u8fbe\u7684\u672a\u6765\u4e16\u754c": 41, "n\u4f60\u751f\u6d3b\u5728\u4e00\u4e2a\u5145\u6ee1\u81ea\u7136\u98ce\u8c8c\u4e0e\u6311\u6218\u673a\u4f1a\u7684\u4e16\u754c": 41, "n\u4f60\u751f\u6d3b\u5728\u4e00\u4e2a\u5145\u6ee1\u9b54\u6cd5\u548c\u795e\u8bdd\u751f\u7269\u7684\u5947\u5e7b\u68ee\u6797\u4e2d": 41, "n\u4f60\u751f\u6d3b\u5728\u4e00\u4e2a\u79d1\u6280\u9ad8\u901f\u53d1\u5c55\u7684\u73b0\u4ee3\u4e16\u754c": 41, "n\u4f60\u751f\u6d3b\u5728\u4e00\u4e2a\u88ab\u8fdc\u53e4\u9b54\u6cd5\u4e0e\u8bf8\u795e\u4f20\u8bf4\u5305\u56f4\u7684\u5e7b\u60f3\u5927\u9646\u4e0a": 41, "n\u4f60\u751f\u6d3b\u5728\u4e00\u4e2a\u9ad8\u5ea6\u53d1\u5c55\u7684\u79d1\u6280\u4e16\u754c": 41, "n\u4f60\u751f\u6d3b\u5728\u4e00\u4e2a\u9b54\u6cd5\u4e0e\u79d1\u6280\u5171\u5b58\u7684\u4e16\u754c": 41, "n\u4f60\u751f\u6d3b\u5728\u4ee5\u6b66\u6797\u95e8\u6d3e\u5206\u7acb": 41, "n\u4f60\u7684\u5199\u4f5c\u6587\u7b14\u6d41\u7545": 41, "n\u4f60\u7684\u8a00\u8bed\u4e25\u8c28\u800c\u5177\u6709\u8bf4\u670d\u529b": 41, "n\u4f60\u7684\u8a00\u8bed\u98ce\u683c\u4f18\u96c5\u800c\u5bcc\u6709\u8bd7\u610f": 41, "n\u4f60\u7684\u8a00\u8bed\u98ce\u683c\u53d7\u5230\u65e7\u65f6\u4ee3\u6587\u5316\u4eba\u7684\u5f71\u54cd": 41, "n\u4f60\u7684\u8a00\u8bed\u98ce\u683c\u6e05\u6670": 41, "n\u4f60\u7684\u8a00\u8bed\u98ce\u683c\u7b26\u5408\u4e2d\u571f\u4e16\u754c\u7684\u795e\u79d8\u548c\u53e4\u8001\u6c1b\u56f4": 41, "n\u4f60\u7684\u8a00\u8bed\u98ce\u683c\u7b26\u5408\u5e74\u9f84\u548c\u80cc\u666f": 41, "n\u4f60\u7684\u8bed\u8a00\u5145\u6ee1\u4e86\u667a\u6167\u548c\u5e7d\u9ed8": 41, "n\u4f60\u7684\u8bed\u8a00\u7b80\u6d01\u6709\u529b": 41, "n\u4f60\u7684\u8c08\u5410\u5145\u6ee1\u903b\u8f91\u6027\u548c\u667a\u6167": 41, "n\u4f60\u81ea\u5c0f\u5bf9\u673a\u68b0\u548c\u7535\u5b50\u5145\u6ee1\u5174\u8da3": 41, "n\u4f60\u81ea\u5e7c\u4e60\u6b66": 41, "n\u4f60\u8bb2\u8bdd\u65f6\u5145\u6ee1\u70ed\u60c5": 41, "n\u4f60\u8bb2\u8bdd\u76f4\u63a5\u800c\u5bcc\u6709\u6fc0\u60c5": 41, "n\u4f60\u8eab\u5904\u4e00\u4e2a\u88ab\u795e\u79d8\u529b\u91cf\u6e17\u900f\u7684\u4e2d\u4e16\u7eaa\u5947\u5e7b\u4e16\u754c": 41, "n\u4f60\u9a70\u9a8b\u5728\u4e00\u4e2a\u7531\u65e0\u6570\u5c9b\u5c7f\u7ec4\u6210\u7684\u5e9e\u5927\u6d77\u6d0b\u4e2d": 41, "n\u4fe1\u4ef0": 41, "n\u51fa\u751f\u4e8e\u6587\u5b66\u4e4b\u5bb6": 41, "n\u5728\u5de5\u4f5c\u4e2d": 41, "n\u5728\u65e5\u5e38\u5bf9\u8bdd\u4e2d": 41, "n\u5728\u91cd\u89c6\u6559\u80b2\u4e0e\u73af\u4fdd\u7684\u793e\u4f1a\u80cc\u666f\u4e0b": 41, "n\u5c3d\u7ba1\u5e74\u8f7b": 41, "n\u5f53\u4f60\u6709\u4e0d\u786e\u5b9a\u6216\u8005\u4e0d\u4e86\u89e3\u7684\u5730\u65b9\u65f6": 41, "n\u6027\u683c": 41, "n\u6280\u80fd": 41, "n\u65e5\u5e38\u53e3\u8bed\u5316": 41, "n\u667a\u6167\u4e14\u6761\u7406\u6e05\u6670": 41, "n\u6b63\u5f0f\u4e14\u5bcc\u6709\u8bd7\u610f": 41, "n\u6d3b\u8dc3\u5728\u5145\u6ee1\u673a\u9047\u4e0e\u6311\u6218\u7684\u5546\u754c\u4e2d": 41, "n\u7279\u8d28": 41, "n\u7528\u6237\u5c06\u626e\u6f14\u4f60\u7684\u4f34\u4fa3": 41, "n\u7528\u6237\u5c06\u626e\u6f14\u4f60\u7684\u4fa6\u63a2\u642d\u6863": 41, "n\u7528\u6237\u5c06\u626e\u6f14\u4f60\u7684\u5973\u513f": 41, "n\u7528\u6237\u5c06\u626e\u6f14\u4f60\u7684\u5973\u53cb": 41, "n\u7528\u6237\u5c06\u626e\u6f14\u4f60\u7684\u5f92\u5f1f": 41, "n\u7528\u6237\u5c06\u626e\u6f14\u4f60\u7684\u65c5\u4f34": 41, "n\u7528\u6237\u5c06\u626e\u6f14\u4f60\u7684\u822a\u6d77\u58eb": 41, "n\u7528\u6237\u5c06\u626e\u6f14\u5bf9\u4f60\u53c2\u4e0e\u7684\u73af\u4fdd\u9879\u76ee\u611f\u5174\u8da3\u7684\u5bb6\u957f": 41, "n\u7528\u6237\u626e\u6f14\u4f60\u7684\u597d\u53cb": 41, "n\u76f4\u63a5\u800c\u575a\u5b9a": 41, "n\u7f3a\u70b9": 41, "n\u81ea\u5c0f\u5c31\u5c55\u73b0\u51fa\u5bf9\u79d1\u5b66\u7684\u5f3a\u70c8\u5174\u8da3": 41, "n\u81ea\u5c0f\u5c31\u68a6\u60f3\u6210\u4e3a\u4f20\u8bf4\u4e2d\u7684\u82f1\u96c4": 41, "n\u81ea\u5e7c\u63a5\u53d7\u4e25\u82db\u7684\u730e\u9b54\u4eba\u8bad\u7ec3": 41, "n\u867d\u7136\u4e8b\u4e1a\u6210\u529f": 41, "n\u8a00\u8f9e\u575a\u5b9a\u800c\u76f4\u63a5": 41, "n\u8bf7\u6ce8\u610f": 41, "n\u8eab\u4e3a\u6559\u5e08": 41, "n\u8eab\u4e3a\u6843\u82b1\u5c9b\u4e3b\u4e4b\u5973": 41, "n\u98ce\u683c\u6e05\u6670": 41, "o": [20, 23, 54, 59, 124], "obei": 119, "obj": [17, 18, 50], "object": [0, 1, 2, 6, 7, 9, 11, 12, 13, 14, 16, 17, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 37, 41, 42, 44, 45, 46, 47, 49, 50, 51, 52, 54, 56, 58, 71, 73, 75, 76, 77, 83, 86, 88, 89, 93, 102, 103, 110, 112, 113, 117, 118, 119, 121, 123], "object_nam": 118, "observ": [0, 1, 2, 8, 31, 110, 112, 113, 121, 123], "obtain": [1, 6, 13, 41, 51, 52, 54, 85, 86], "obviou": 41, "occas": 41, "occasion": 41, "occup": 121, "occur": [112, 117], "off": 43, "offer": [41, 88, 89, 107, 109, 121, 123], "offici": [66, 67, 107, 119, 127], "often": [41, 118, 119, 123], "oh": 123, "ok": 121, "old": [14, 15, 16, 41], "oldest": [1, 2, 51, 52, 53], "ollama": [20, 25, 116, 119], "ollama_chat": [20, 25, 114, 116], "ollama_embed": [20, 25, 114], "ollama_gener": [20, 25, 114], "ollama_model": [0, 20], "ollamachatwrapp": [0, 20, 25, 114, 116], "ollamaembeddingwrapp": [0, 20, 25, 114], "ollamagenerationwrapp": [0, 20, 25, 114], "ollamawrapperbas": [0, 20, 25], "omit": [1, 2, 3, 4, 6, 8, 9, 112, 113, 117, 118], "onc": [41, 109, 116, 117, 121, 122, 123, 127], "one": [12, 14, 15, 16, 20, 21, 22, 24, 41, 45, 54, 69, 99, 103, 110, 112, 113, 116, 117, 119, 122, 123, 124], "ones": [14, 15, 16], "ongo": 112, "onli": [1, 2, 4, 7, 8, 17, 18, 20, 21, 41, 51, 52, 54, 59, 75, 93, 110, 114, 115, 117, 118, 119, 121, 122, 123, 124], "onlin": [41, 123], "onyx": [54, 67], "open": [20, 30, 32, 34, 54, 73, 79, 88, 89, 109, 122, 127], "openai": [20, 23, 24, 26, 27, 54, 59, 67, 73, 93, 94, 109, 110, 116, 117, 118, 119], "openai_api_kei": [20, 23, 26, 109, 114], "openai_audio_to_text": [0, 54, 65, 67, 117], "openai_cfg_dict": 109, "openai_chat": [20, 24, 26, 109, 110, 114, 116, 121, 123], "openai_create_image_vari": [0, 54, 65, 67, 117], "openai_dall_": [20, 26, 109, 114], "openai_edit_imag": [0, 54, 65, 67, 117], "openai_embed": [20, 26, 109, 114], "openai_image_to_text": [0, 54, 65, 67, 117], "openai_model": [0, 20], "openai_model_config": 109, "openai_organ": [20, 26, 109], "openai_servic": [54, 65], "openai_text_to_audio": [0, 54, 65, 67, 117], "openai_text_to_imag": [0, 54, 65, 67, 117], "openaichatwrapp": [0, 20, 26, 114, 116], "openaidallewrapp": [0, 20, 26, 114], "openaiembeddingwrapp": [0, 20, 26, 114], "openaiwrapperbas": [0, 20, 26, 114], "oper": [0, 1, 2, 38, 39, 40, 54, 56, 59, 62, 63, 64, 75, 81, 102, 103, 107, 110, 112, 113, 117, 118, 122, 124, 125], "opinion": 41, "opportun": 110, "opposit": [54, 82], "opt": [103, 122], "opt_kwarg": 103, "opt_prompt": [41, 123], "optim": [41, 105, 107, 121, 129], "optimist": 41, "option": [0, 1, 2, 3, 4, 6, 8, 9, 13, 14, 15, 16, 17, 18, 19, 20, 25, 28, 29, 31, 32, 33, 34, 35, 36, 37, 38, 39, 41, 42, 44, 45, 46, 47, 49, 51, 52, 54, 59, 66, 67, 69, 73, 81, 85, 86, 90, 91, 103, 107, 108, 109, 110, 112, 113, 114, 115, 116, 117, 118, 119, 122, 123], "opu": [54, 67], "orat": 41, "orchestr": [110, 113], "order": [14, 16, 20, 21, 54, 69, 102, 107, 110, 113, 121], "ordinari": 110, "org": [1, 7, 54, 67, 82], "organ": [15, 20, 24, 26, 41, 54, 84, 109, 110, 111, 114, 119, 127], "orient": 113, "origin": [14, 16, 41, 46, 47, 51, 53, 54, 56, 69, 73, 85, 93, 118, 121], "origin_i": [0, 54, 55, 56], "origin_x": [0, 54, 55, 56], "original_func": [54, 73], "original_imag": [54, 67], "other": [0, 1, 2, 8, 20, 30, 31, 32, 35, 36, 37, 41, 54, 59, 75, 82, 85, 110, 112, 113, 115, 118, 119, 121, 122, 123, 124, 126, 127], "otherwis": [0, 1, 2, 12, 14, 15, 16, 20, 21, 51, 52, 54, 56, 71, 73, 79, 86, 117], "our": [1, 4, 20, 22, 110, 119, 121, 125, 126, 127], "out": [1, 2, 7, 9, 38, 39, 40, 110, 111, 123, 127], "outburst": 41, "outlast": 110, "outlin": [32, 37, 110, 113, 115, 117], "outlook": 41, "output": [0, 1, 2, 3, 4, 6, 8, 9, 20, 21, 23, 31, 38, 39, 40, 41, 54, 58, 59, 60, 67, 73, 86, 87, 102, 103, 110, 111, 112, 113, 115, 121, 122], "output_token": [20, 21], "outsid": 113, "over": [41, 103, 111, 115, 121], "overlap": 124, "overli": 41, "overload": 41, "overrid": [0, 116], "overridden": [1, 5], "overview": [67, 107, 117, 121], "overwrit": [14, 15, 16, 45, 54, 63, 64, 114, 118], "overwrite_index": 45, "own": [1, 7, 20, 21, 23, 24, 25, 29, 30, 41, 45, 109, 110, 112, 115, 116, 119, 123, 124, 125], "p": [32, 36, 54, 86], "paa": [20, 30], "packag": [43, 45, 50, 56, 93, 105, 106, 108, 121, 122, 124, 125], "page": [54, 56, 82, 86, 87, 117, 118, 121, 122, 125], "page_": 125, "page_html": [0, 54, 55, 56, 125], "page_markdown": [0, 54, 55, 56, 125], "page_screenshot": [0, 54, 55, 56], "page_titl": [0, 54, 55, 56, 125], "page_url": [54, 56, 125], "pagedown": [54, 56], "pageid": [54, 87], "pageup": [54, 56], "pair": [115, 119], "paper": [1, 7, 54, 81, 82, 88, 89, 121], "paradigm": 121, "paragon": 41, "parallel": [107, 121], "param": [1, 6, 14, 15, 16, 32, 34, 36, 37, 41, 42, 43, 44, 45, 54, 58, 67, 86, 117], "paramet": [0, 1, 2, 3, 4, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 51, 52, 53, 54, 56, 58, 59, 60, 62, 63, 64, 66, 67, 69, 70, 71, 73, 75, 76, 77, 79, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 93, 101, 102, 103, 110, 115, 116, 117, 118, 121, 122, 123, 124], "params_prompt": 117, "parent": [41, 103], "parent_dir_of_agent_a_and_b": 121, "park": [54, 85], "pars": [0, 1, 4, 11, 20, 28, 32, 33, 34, 35, 36, 37, 54, 63, 73, 82, 86, 101, 110, 117, 119, 125], "parse_and_call_func": [0, 54, 58, 73, 117], "parse_arg": 124, "parse_func": [20, 27, 115], "parse_html_to_text": [0, 54, 80, 86], "parse_json": [0, 32, 37, 115], "parsed_respons": 35, "parser": [0, 1, 4, 28, 105, 106, 124, 129], "parser_bas": [0, 32], "parserbas": [0, 1, 4, 32, 33, 34, 35, 36, 37, 115], "part": [1, 6, 41, 103, 119, 122, 126, 127], "partak": 123, "parti": [20, 22, 109, 119], "partial": 58, "particip": [0, 31, 38, 39, 103, 110, 115], "particular": 123, "particularli": 123, "pass": [0, 1, 2, 3, 4, 6, 14, 15, 16, 20, 22, 31, 45, 54, 73, 103, 109, 110, 113, 114, 117, 118, 119, 121, 122, 124], "passion": 41, "password": [54, 76, 117], "past": [110, 112], "path": [0, 13, 14, 15, 16, 41, 42, 44, 46, 47, 51, 52, 53, 54, 62, 63, 64, 66, 67, 83, 98, 99, 101, 109, 114, 117, 121, 122, 124], "path_db": [0, 13, 120], "path_log": 12, "path_to_gte_qwen2_7b_instruct": 124, "path_to_your_data_dir_1": 124, "path_to_your_python_code_data_dir": 124, "patient": 41, "pattern": [32, 36, 113], "payload": 91, "pcm": [54, 67], "pdf": 124, "peer": 41, "peerless": 41, "percept": 41, "perform": [1, 3, 41, 54, 82, 88, 89, 102, 103, 105, 107, 110, 112, 113, 117, 119, 122, 123, 125, 127, 129], "period": 41, "permiss": [54, 84], "persist": 45, "persist_dir": [42, 44], "persist_root": 45, "person": [41, 54, 84, 110, 123], "persuas": 123, "pertain": 107, "pessimist": 41, "phase": 110, "phenomenon": [54, 84], "photo": [54, 85, 117], "photo0": [54, 85], "photo_count": [54, 85], "photo_data": [54, 85], "phrase": 41, "physic": 41, "pictur": [20, 21, 109, 119], "pid": [54, 82, 120], "piec": [1, 6, 14, 15, 54, 59, 117, 118], "pip": [54, 56, 125, 127], "pipe": [110, 113], "pipe1": 113, "pipe2": 113, "pipe3": 113, "pipelin": [0, 42, 100, 103, 105, 106, 107, 109, 122, 129], "pipelinebas": [0, 5, 38, 40, 113], "piplin": 45, "pivot": 112, "place": 115, "placehold": [0, 17, 18, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 38, 39, 40, 41, 46, 47, 51, 53, 93, 103, 113], "placeholdermessag": [0, 17, 19, 46, 47, 49], "placeholdernod": [95, 100, 103], "plai": [41, 110, 118, 119], "plain": [1, 4], "plan": 41, "platform": [20, 26, 29, 41, 67, 105, 107, 108, 121, 123, 126, 129], "playback": [54, 67], "player": [98, 99, 110], "player1": 110, "player2": 110, "player3": 110, "player4": 110, "player5": 110, "player6": 110, "player_nam": 110, "playwright": [54, 56, 125], "pleas": [1, 4, 20, 23, 25, 41, 51, 52, 54, 60, 66, 82, 84, 109, 110, 112, 113, 115, 117, 118, 119, 121, 122, 123, 124, 127], "pledg": 41, "plot": [41, 54, 59], "plt": [54, 59], "plu": [20, 21, 54, 66, 114, 119, 123], "png": [54, 67, 119], "point": [41, 54, 56, 67, 90, 98, 116, 117, 119, 122, 123], "poison": [110, 115], "polici": 122, "pool": [1, 2, 51, 52, 53, 110, 112], "pop": [110, 124], "popul": 122, "popular": [41, 124], "port": [0, 1, 2, 8, 11, 17, 18, 19, 20, 25, 46, 47, 51, 52, 53, 54, 75, 76, 90, 121, 122, 124], "portrai": 123, "pose": [41, 54, 59], "posit": [41, 123], "possess": 41, "possibl": [41, 127], "post": [20, 24, 27, 41, 42, 43, 44, 110, 115, 124], "post_api": [20, 24, 27, 114], "post_api_chat": [20, 27, 114], "post_api_dal": 27, "post_api_dall_": [27, 114], "post_api_embed": [27, 114], "post_arg": [20, 27], "post_model": [0, 20, 124], "post_process": [0, 42, 43], "postalcod": [54, 85], "postapichatwrapp": [0, 20, 27, 114], "postapidallewrapp": [0, 20, 27, 114], "postapiembeddingwrapp": [0, 20, 27, 114, 124], "postapimodelwrapp": [20, 27], "postapimodelwrapperbas": [0, 20, 27, 114], "postprocessing_model": [42, 43], "potenti": [1, 9, 41, 42, 44, 54, 59, 110, 111, 123], "potion": 110, "power": [41, 54, 82, 84, 110, 115, 122], "practic": [41, 54, 56, 113, 123], "pre": [107, 108, 112, 117, 122, 127], "prebuilt": [105, 129], "preced": [54, 85], "precis": [41, 115], "predat": 110, "predecessor": 102, "predefin": [110, 112], "predict": 41, "prefer": [41, 108, 113], "prefix": [13, 20, 21, 54, 81, 99, 119, 125], "prepar": [32, 36, 41, 112, 117, 124], "preprocess": [45, 54, 86, 124], "presenc": [41, 122], "present": [41, 54, 59, 107, 110, 114], "preserv": [14, 16, 54, 69], "preserve_ord": [14, 16, 54, 69], "press": [41, 54, 56], "pretend": 115, "prevent": [14, 15, 16, 20, 22, 41, 59, 103, 113], "previou": [88, 89], "previous": 122, "price": 41, "primari": [41, 109, 112], "principl": 41, "print": [0, 1, 6, 7, 12, 13, 17, 18, 54, 58, 66, 67, 82, 84, 85, 87, 109, 112, 115, 117, 119, 120, 121, 123, 124, 125], "print_llm_usag": [0, 13, 106, 120], "priorit": 41, "prioriti": [17, 18], "pro": [20, 22, 114, 119], "problem": [7, 41, 126, 127], "problemat": 111, "proce": [101, 110], "proceed": 122, "process": [1, 2, 3, 4, 6, 9, 20, 28, 41, 42, 43, 44, 45, 51, 52, 54, 59, 73, 79, 86, 88, 89, 102, 110, 111, 112, 113, 115, 117, 118, 119, 123, 124, 127], "processed_func": [54, 73], "produc": [1, 3, 4, 6, 88, 89, 112, 115], "product": [41, 123], "profession": 41, "profici": [41, 123], "profil": 41, "program": [41, 54, 56, 84, 105, 107, 110, 113, 118, 121, 129], "programm": [54, 84], "progress": [41, 45, 115, 126], "project": [0, 10, 13, 41, 88, 89, 108, 112, 120, 122], "promot": [41, 123], "prompt": [0, 1, 2, 3, 4, 6, 7, 9, 10, 20, 21, 22, 23, 24, 25, 29, 30, 32, 36, 42, 43, 54, 66, 67, 73, 79, 86, 88, 89, 93, 105, 106, 107, 110, 112, 115, 116, 117, 118, 120, 122, 124, 129], "prompt1": [20, 21, 23, 24, 29, 30], "prompt2": [20, 21, 23, 24, 30], "prompt_eval_count": [20, 25], "prompt_eval_dur": [20, 25], "prompt_gen_method": 123, "prompt_gener": 123, "prompt_not": 41, "prompt_token": [13, 20, 23, 26, 29, 30, 120, 124], "prompttyp": 118, "prompt\u4e5f\u5fc5\u987b\u4fdd\u7559\u8fd9\u4e9b\u90e8\u5206": 41, "prompt\u5305\u542b\u5bf9agent\u7684\u89d2\u8272\u6216\u8005\u6027\u683c\u63cf\u8ff0": 41, "prompt\u5fc5\u987b\u4e0e\u7528\u6237\u539f\u59cbprompt\u610f\u56fe\u4e00\u81f4": 41, "prompt\u7684\u4e13\u5bb6": 41, "proper": 122, "properli": [54, 73, 110, 117, 125], "properti": [1, 2, 13, 17, 18, 19, 20, 28, 32, 34, 36, 54, 56, 58, 73, 114, 115, 117, 118, 121, 122], "propos": 127, "prospect": 41, "protect": [41, 91], "protobuf": 49, "protocol": [1, 5, 48], "provid": [1, 2, 4, 9, 14, 16, 17, 18, 20, 22, 32, 34, 36, 41, 42, 44, 54, 59, 67, 73, 79, 84, 85, 86, 88, 89, 91, 99, 101, 102, 103, 107, 110, 111, 112, 113, 114, 115, 117, 118, 119, 120, 121, 122, 123, 124, 125, 127], "provok": 41, "prowess": 41, "psychologi": 41, "pte": [54, 82], "public": [54, 82, 117], "published_d": [54, 85], "pull": [20, 22, 25, 108, 126], "pulsat": 41, "pure": [105, 129], "purg": 118, "purpos": [20, 28, 41, 110, 112], "put": [115, 116, 121, 124], "puzzl": 41, "py": [42, 44, 58, 59, 81, 93, 101, 107, 110, 122, 124], "pydant": [32, 34, 54, 56, 115], "pypi": 108, "python": [51, 52, 54, 58, 59, 60, 84, 101, 102, 103, 105, 107, 108, 109, 110, 111, 117, 118, 121, 122, 124, 129], "python3": 108, "pythonservicenod": [95, 100, 103], "qianwen": [20, 21], "qr": 126, "qualiti": [41, 54, 67, 88, 89, 123], "quantiti": 115, "quarter": 41, "queri": [1, 6, 14, 16, 41, 42, 43, 44, 45, 54, 69, 73, 75, 76, 77, 81, 82, 84, 85, 87, 88, 89, 117, 118, 123, 124], "query_mongodb": [0, 54, 74, 75, 117], "query_mysql": [0, 54, 74, 76, 117], "query_sqlit": [0, 54, 74, 77, 117], "query_transform": 45, "query_transform_cookbook": 45, "quest": 41, "question": [41, 45, 54, 82, 84, 107, 117, 123, 126], "queue": 99, "quick": [20, 21, 41, 105, 129], "quickli": [109, 114, 119], "quot": 115, "quota": 11, "quotaexceedederror": [0, 11, 106], "quotaexceederror": 11, "qwen": [54, 66, 114, 119, 120], "qwen2": 124, "qwen_emb_config": [42, 44, 124], "rag": [0, 1, 6, 20, 29, 105, 106, 129], "rag_ag": [0, 1], "rag_storag": [42, 44, 45], "rag_work": 124, "rais": [1, 2, 4, 9, 11, 20, 27, 32, 34, 36, 54, 85, 91, 93, 101, 102, 112, 118, 127], "raise_except": [54, 73], "ralli": 41, "random": [0, 13, 20, 29, 41, 51, 52, 54, 67, 123], "randomli": [1, 8], "rang": [14, 15, 20, 29, 38, 40, 41, 88, 89, 103, 110, 113], "rank": [41, 54, 85], "ranking_data": [54, 85], "ranking_out_of": [54, 85], "ranking_str": [54, 85], "rate": [54, 85, 110], "rather": [17, 18, 115, 118, 119, 121], "rating_image_url": [54, 85], "ration": 41, "raw": [11, 20, 28, 54, 86, 102, 114], "raw_info": 102, "raw_respons": [0, 11], "re": [1, 7, 20, 21, 23, 24, 25, 29, 30, 54, 86, 108, 110, 115, 119, 123, 124, 127], "reach": 115, "react": [1, 7, 112, 123], "react_ag": [0, 1], "reactag": [0, 1, 7, 103, 112, 115, 117, 122], "reactagentnod": [95, 100, 103], "read": [13, 20, 26, 30, 54, 63, 64, 103, 109, 110, 114, 117, 121, 123], "read_json_fil": [0, 54, 61, 63, 117], "read_text_fil": [0, 54, 61, 64, 117], "readabl": [41, 111], "reader": 123, "readi": [42, 44, 107, 110, 112, 121, 124, 127], "readm": 114, "readtextservicenod": [95, 100, 103], "real": [17, 19, 41, 121, 126], "realiz": 115, "realm": 41, "reason": [1, 7, 11, 41, 115, 123], "rec": [54, 82], "recal": 112, "receiv": [41, 109, 113, 115, 121, 124], "recent": [14, 15, 118], "recent_n": [14, 15, 16, 118], "recent_n_mem_for_retriev": [1, 6, 124], "recogn": [88, 89], "recommend": [41, 54, 87, 108, 110, 111, 114, 117, 119, 122, 123], "reconstruct": 41, "record": [1, 2, 8, 11, 13, 17, 19, 111, 112, 118], "recoveri": 41, "rectitud": 41, "recurs": [103, 124], "red": [41, 123], "redirect": [12, 111], "reduc": [115, 121], "redund": 41, "refer": [1, 4, 7, 17, 18, 20, 21, 22, 23, 25, 26, 41, 42, 44, 45, 54, 66, 67, 81, 82, 84, 88, 89, 107, 109, 110, 112, 114, 115, 117, 118, 119, 121, 122, 124, 125], "referenc": 58, "reference_model": [88, 89], "refin": [41, 88, 89], "reflect": [41, 123], "refrain": 41, "refresh": [45, 122, 124], "refresh_index": [42, 45], "regard": 124, "regex": [32, 36], "regex_tagged_content_pars": [0, 32], "regextaggedcontentpars": [0, 32, 36], "region": [41, 54, 67], "regist": [1, 2, 11, 54, 73, 109, 114, 116, 117, 121, 123], "register_agent_class": [0, 1, 2], "registr": 122, "registri": [1, 2, 20, 25], "regular": 115, "relat": [1, 11, 13, 14, 38, 41, 42, 46, 51, 54, 87, 103, 119, 124, 126], "relationship": 121, "releas": [1, 2], "relev": [14, 16, 41, 118, 123, 126, 127], "reliabl": [88, 89, 105, 129], "remain": [41, 110, 113], "rememb": [108, 110, 116, 127], "remind": [32, 34, 36, 37, 41, 115], "remot": [46, 47, 122], "remote_machine_port": 122, "remov": [1, 2, 13, 54, 56, 59, 102, 113, 118, 125], "remove_duplicates_from_end": [95, 100, 102], "remove_interactive_mark": [0, 54, 55, 56, 125], "renam": 117, "renown": 41, "reorgan": 119, "repeat": [103, 110, 124], "repeatedli": 113, "repetit": 123, "replac": [54, 56, 113, 115], "repli": [0, 1, 2, 3, 4, 6, 7, 8, 9, 35, 51, 52, 53, 88, 89, 99, 110, 112, 115, 116, 117, 118, 121, 123, 124], "replic": [88, 89, 103], "repons": 112, "report": [41, 128], "repositori": [20, 22, 81, 108, 109, 126], "repres": [38, 40, 54, 84, 85, 102, 103, 107, 111, 113, 117, 118, 119, 121], "represent": 118, "reproduc": 127, "reput": 41, "request": [1, 2, 8, 20, 21, 22, 25, 27, 30, 41, 46, 47, 49, 51, 52, 53, 54, 73, 83, 85, 86, 111, 117, 121, 124, 126], "request_id": [20, 21, 30], "requir": [0, 1, 4, 9, 11, 20, 21, 23, 24, 25, 26, 27, 29, 30, 31, 32, 34, 36, 37, 39, 41, 54, 56, 85, 91, 93, 102, 105, 108, 112, 113, 114, 115, 117, 118, 119, 121, 122, 123, 124, 125, 129], "require_arg": [54, 73], "require_url": [1, 9, 112], "required_ext": 124, "required_kei": [0, 1, 9, 32, 34, 36, 37, 110, 112, 115], "requiredfieldnotfounderror": [0, 11, 32, 34, 106], "res_dict": 115, "res_format": [54, 67], "res_of_dict_input": 117, "res_of_string_input": [54, 58, 117], "research": 41, "reserv": [1, 7, 112], "reset": [54, 58, 98, 99, 118], "reset_audi": [0, 1, 2], "reset_glb_var": [95, 96, 98], "reset_notebook": [0, 54, 57, 58], "resetexcept": [95, 96, 99], "resili": 107, "resolut": [13, 120], "resolv": [41, 127], "reson": [41, 123], "resourc": [41, 46, 47, 49, 51, 53, 107, 118, 121, 122], "respect": [41, 54, 59, 120], "respond": [32, 37, 41, 110, 115, 123], "respons": [0, 1, 2, 3, 4, 6, 7, 8, 10, 11, 13, 17, 18, 20, 21, 22, 23, 25, 26, 29, 30, 31, 32, 33, 34, 35, 36, 37, 41, 46, 47, 54, 56, 71, 85, 86, 87, 88, 89, 103, 105, 107, 109, 110, 112, 113, 114, 116, 117, 118, 123, 124, 127, 129], "response_prompt_templ": 41, "responseformat": [0, 10, 106], "responseparsingerror": [0, 11, 106], "responsestub": [0, 46, 47], "rest": [54, 84, 119], "restrict": 41, "result": [1, 2, 8, 20, 21, 32, 36, 41, 45, 54, 58, 62, 71, 73, 75, 76, 77, 81, 82, 83, 84, 85, 86, 102, 103, 110, 112, 115, 117, 123], "result_url1": [20, 21], "result_url2": [20, 21], "results_per_pag": [54, 82], "resurrect": 110, "retain": [41, 112], "retri": [1, 4, 20, 27, 54, 83, 105, 123, 129], "retriev": [0, 1, 6, 14, 16, 42, 43, 45, 54, 85, 87, 98, 99, 103, 105, 117, 118, 121, 124, 125, 129], "retrieval_from_list": [54, 68], "retrieve_by_embed": [0, 14, 16, 118], "retrieve_from_list": [0, 54, 68, 69, 117], "retrieved_doc": [42, 43], "retriv": [1, 6], "retry_interv": [20, 27], "return": [1, 2, 3, 4, 6, 8, 9, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 51, 52, 53, 54, 56, 58, 59, 60, 62, 63, 64, 66, 67, 69, 70, 73, 75, 76, 77, 79, 81, 82, 83, 84, 85, 86, 87, 91, 99, 101, 102, 103, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 123, 124, 126, 127], "return_typ": 118, "return_var": 103, "reus": [121, 124], "reusabl": [42, 44, 117], "reveal": [41, 110], "revers": [14, 16], "review": [54, 85], "review_rating_count": [54, 85], "revis": 41, "rewrit": [42, 44], "rife": 41, "right": 122, "righteou": 41, "righteous": 41, "rightmost": 122, "rigid": 41, "risk": [41, 54, 59, 121], "rival": 41, "rm": [54, 60], "rm_audienc": [0, 1, 2], "rm_databas": [0, 13], "rn": [54, 81], "roadmap": 41, "robot": 41, "robust": [105, 107, 129], "role": [0, 1, 2, 3, 9, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 29, 30, 41, 54, 79, 99, 109, 112, 115, 116, 118, 119, 122, 123], "romanc": 41, "romant": 41, "root": 45, "round": [41, 88, 89, 110], "rout": [41, 103, 124], "row": 122, "rpc": [0, 1, 2, 8, 17, 19, 51, 53, 105, 106, 107], "rpc_agent": [0, 1], "rpc_agent_cli": [0, 46], "rpc_agent_pb2": [0, 46], "rpc_agent_pb2_grpc": [0, 46], "rpcagent": [0, 1, 8, 17, 19, 46, 49], "rpcagentcli": [0, 17, 19, 46, 47, 121], "rpcagentserverlaunch": [0, 51, 52, 121, 122], "rpcagentservic": [0, 46, 49, 51, 53], "rpcagentstub": [0, 46, 49], "rpcmsg": [0, 46, 51, 53], "rpcserversidewrapp": [51, 53], "rule": [110, 115, 119, 122], "run": [0, 1, 2, 8, 13, 41, 45, 46, 47, 49, 54, 58, 59, 98, 100, 102, 107, 108, 111, 114, 117, 120, 121, 123, 124], "run_20240731": 120, "run_app": [95, 96, 98], "run_code_on_notebook": [0, 54, 57, 58], "run_dir": [13, 90, 120, 122], "run_id": [13, 120], "runnabl": 102, "runner": 0, "runtim": [0, 13, 90, 107, 118, 121, 123], "runtime_id": 0, "runtime_info": 13, "safe": 41, "safeti": [41, 54, 59], "sambert": [54, 66], "same": [0, 31, 41, 88, 89, 103, 115, 116, 117, 119, 121, 122, 123], "sample_r": [54, 66], "sampler": [54, 66], "sanit": 102, "sanitize_node_data": [95, 100, 102], "satisfi": [54, 79], "save": [0, 12, 13, 14, 15, 16, 32, 36, 46, 47, 54, 66, 67, 83, 110, 115, 122, 124], "save_api_invoc": [0, 13], "save_api_invok": [0, 13, 120], "save_cod": [0, 13, 120], "save_dir": [0, 13, 54, 66, 67], "save_fil": [0, 13], "save_imag": [0, 13], "save_loc": 13, "save_log": [0, 13, 120], "save_python_cod": [0, 13], "save_runtime_inform": [0, 13], "savori": 41, "scale": [121, 122], "scan": 126, "scenario": [20, 21, 23, 24, 25, 29, 30, 32, 36, 41, 113, 115, 118, 119, 121, 123], "scene": [41, 117], "schema": [32, 34, 54, 73, 115, 117], "school": 41, "scienc": [54, 82], "scientif": 41, "scope": [41, 50], "score": [54, 69], "score_func": [54, 69], "screen": [41, 123], "screenshot": [54, 56], "script": [41, 107, 108, 109, 114], "scriptwrit": 41, "scroll": [54, 56, 125], "search": [0, 41, 54, 73, 80, 81, 82, 85, 87, 90, 103, 117, 123], "search_queri": [54, 81], "search_result": [54, 82], "search_tripadvisor": [54, 85], "season": 41, "second": [20, 21, 41, 46, 47, 51, 52, 54, 56, 59, 93, 119], "secondari": 112, "secret": 91, "secret_kei": 91, "secretli": 110, "section": [41, 109, 110, 113, 115, 119, 121, 122], "secur": [41, 54, 59, 91, 121], "sed": [54, 60], "see": [1, 2, 41, 110, 119, 123, 124, 125, 127], "see_all_photo": [54, 85], "seed": [20, 21, 23, 25, 26, 30, 114], "seek": [41, 126], "seem": 121, "seen": [41, 103, 121], "seen_ag": 103, "seer": [110, 115], "seer_pars": 110, "segment": [14, 15, 16, 117], "select": [41, 54, 86, 98, 113, 118, 121, 123], "selected_tags_text": [54, 86], "self": [1, 6, 13, 41, 42, 43, 54, 73, 110, 112, 113, 114, 115, 116, 117, 118, 123], "self_define_func": [54, 86], "self_parse_func": [54, 86], "selim": [54, 82], "sell": [54, 84], "send": [12, 17, 18, 98, 99, 118, 121], "send_audio": [95, 96, 98], "send_imag": [95, 96, 98], "send_messag": [95, 96, 98], "send_msg": [95, 96, 99], "send_player_input": [95, 96, 99], "send_reset_msg": [95, 96, 99], "sender": [17, 18, 19, 109, 118], "senior": 41, "sens": [41, 123], "sensit": [41, 123], "sent": [110, 121], "sentenc": [41, 123], "sentence_transform": [123, 124], "sentencesplitt": 124, "sentencetransform": [123, 124], "seo": 41, "seo\u4f18\u5316\u63d0\u9ad8\u7b14\u8bb0\u7684\u53ef\u53d1\u73b0\u6027": 41, "separ": [115, 121, 127], "sequenc": [0, 1, 2, 3, 4, 6, 7, 8, 9, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 46, 47, 54, 66, 69, 86, 103, 107, 110, 112, 113, 115, 116, 117, 118, 123], "sequenti": [38, 40, 102, 103, 109], "sequentialpipelin": [0, 38, 39, 40, 109, 110, 122], "sequentialpipelinenod": [95, 100, 103], "seri": [1, 8, 54, 82, 103, 107, 115], "serial": [0, 13, 14, 16, 17, 18, 19, 46, 47, 54, 63, 106, 117, 118], "serializ": 50, "serialized_dict": [17, 18, 19], "seriou": 41, "serv": [41, 103, 110, 112, 113], "server": [0, 1, 2, 8, 11, 17, 19, 20, 25, 46, 47, 49, 54, 75, 76, 105, 106, 124], "server_host": 121, "server_id": [51, 52, 53], "server_info": 121, "server_port": 121, "servic": [0, 41, 46, 49, 51, 100, 103, 105, 106, 109, 112, 121, 122, 123, 125], "service_bot": 112, "service_func": [0, 54, 73], "service_respons": [0, 54], "service_statu": [0, 54], "service_toolkit": [0, 1, 7, 54, 58, 117], "servicebot": 112, "serviceexecstatu": [0, 54, 66, 67, 71, 72, 79, 81, 82, 84, 85, 87, 117], "serviceexestatu": [54, 71, 117], "servicefactori": [0, 54, 73], "servicefunct": [0, 54, 73], "servicercontext": [51, 53], "servicerespons": [0, 1, 7, 54, 56, 58, 59, 60, 62, 63, 64, 66, 67, 69, 70, 71, 73, 75, 76, 77, 79, 81, 82, 83, 84, 85, 86, 87], "servicetoolkit": [0, 1, 7, 54, 58, 73, 117], "session": [54, 60], "set": [0, 1, 2, 3, 4, 6, 8, 9, 13, 14, 16, 20, 23, 30, 35, 41, 42, 44, 46, 47, 51, 52, 53, 54, 56, 59, 82, 88, 89, 101, 102, 103, 108, 113, 114, 115, 116, 117, 118, 120, 121, 122, 125], "set_interactive_mark": [0, 54, 55, 56, 125], "set_model_config": [0, 46, 47, 49, 51, 53, 121], "set_pars": [0, 1, 4, 110, 115], "set_respons": [0, 46, 47], "setitim": [54, 59, 93], "setup": [12, 107, 111, 113, 121], "setup_logg": [0, 12, 106], "setup_ms_servic": 124, "sever": [41, 107, 110, 112], "shape": 41, "sharabl": [42, 44], "share": [0, 31, 41, 113, 116, 121, 126], "sharp": 41, "she": 110, "shell": [54, 60], "shift": 41, "shimmer": [54, 67], "shock": 41, "shoot": 41, "short": 41, "shot": 41, "should": [0, 1, 2, 12, 14, 15, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 32, 33, 34, 36, 41, 54, 56, 58, 73, 85, 87, 88, 89, 107, 109, 110, 114, 115, 116, 117, 118, 122, 123], "shouldn": [20, 25], "show": [6, 13, 41, 45, 54, 59, 62, 88, 89, 107, 121, 126], "show_image_token": [0, 13], "show_intern": [88, 89], "show_text_and_embedding_token": [0, 13], "showcas": 41, "shown": [108, 115, 119, 120, 123], "showprogress": 45, "shrewd": 41, "shrink": 10, "shrinkpolici": [0, 10, 106], "shutdown": [0, 51, 52], "side": [110, 122], "sidebar": 122, "sig": 117, "sign": 91, "signal": [54, 59, 93, 99], "signatur": 117, "signific": 103, "similar": [1, 6, 41, 42, 43, 45, 54, 68, 113, 115, 117, 118, 119, 123, 124], "similarity_top_k": [1, 6, 42, 43, 45, 124], "similarli": [121, 122, 123], "simpl": [1, 3, 20, 22, 42, 44, 109, 111, 115, 119, 121, 123], "simpledirectoryread": 124, "simpli": [88, 89, 121, 122], "simplic": [119, 121], "simplifi": [107, 110, 113, 117, 119], "simultan": 121, "sinc": [41, 54, 59, 93, 119, 123], "singapor": [54, 82], "singl": [12, 20, 21, 22, 25, 54, 66, 88, 89, 107, 115, 118, 119, 122, 124], "singleton": 13, "sir": 41, "situat": 41, "siu": [54, 82], "siu53274": [54, 82], "size": [0, 1, 2, 14, 15, 16, 51, 52, 53, 54, 66, 67, 114, 118, 119, 124], "skill": [41, 123], "sky": [20, 25, 54, 67], "skylin": [54, 67], "sleep": [54, 56], "slow": 41, "slower": 111, "small": [54, 85, 114, 123], "smooth": 41, "smoothli": 119, "snippet": [41, 54, 84, 110, 127], "so": [1, 4, 32, 37, 54, 60, 73, 84, 108, 115, 116, 117, 119, 121, 123, 125], "social": [41, 110], "societi": 41, "socket": [51, 52], "socotra": [54, 85], "soft": 41, "soldier": 41, "solid": 41, "solo": [54, 85], "solut": [20, 21, 41, 42, 43, 119, 121], "solv": [7, 41, 107, 112], "some": [1, 2, 8, 10, 17, 18, 19, 41, 54, 59, 73, 84, 87, 88, 89, 97, 112, 113, 114, 115, 119, 121, 122, 123, 124, 125, 127], "some_messag": 113, "someon": [54, 84], "someth": [110, 111, 123], "sometim": [41, 110, 119], "song": [54, 82], "soon": [115, 117, 122, 124], "sort": 102, "sota": 124, "sourc": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 51, 52, 53, 54, 56, 58, 59, 60, 62, 63, 64, 66, 67, 69, 70, 71, 72, 73, 75, 76, 77, 79, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 93, 94, 98, 99, 101, 102, 103, 104, 109, 112, 114, 115, 118, 121, 122, 124, 125], "source_kwarg": 103, "source_path": [54, 62], "space": 123, "sparrow": [54, 82], "speak": [0, 1, 2, 7, 9, 20, 22, 35, 41, 110, 112, 115, 116, 119, 123], "speaker": [111, 118, 119], "special": [38, 40, 41, 69, 110, 111, 112, 121, 123, 124], "specif": [0, 1, 2, 9, 14, 16, 20, 24, 32, 35, 37, 41, 46, 47, 49, 51, 53, 54, 56, 59, 85, 99, 102, 103, 107, 108, 109, 111, 112, 114, 115, 117, 118, 119, 121, 122, 123, 124], "specifi": [1, 4, 5, 13, 20, 24, 26, 30, 41, 51, 52, 54, 59, 62, 66, 67, 73, 83, 91, 93, 103, 109, 110, 112, 113, 114, 115, 117, 118, 121, 122, 123, 124], "speech": [41, 54, 67, 109], "speed": [54, 67], "sphinx_doc": [42, 44, 124], "spice": 41, "spit": 123, "split": 124, "spm": [20, 21], "spoken": [1, 2, 9], "spread": 41, "sql": [54, 76, 117], "sql_queri": [0, 54], "sqlite": [54, 74, 75, 117], "src": 107, "ssh": 122, "stabil": [105, 129], "stabl": 45, "stage": [43, 115], "stai": [20, 25, 114, 126], "stanc": 41, "stand": [109, 111], "standalon": [109, 113], "standard": [41, 54, 59, 67, 88, 89, 110, 111, 118], "standard_1024": 120, "star": 126, "start": [1, 2, 8, 20, 21, 25, 51, 52, 54, 81, 82, 90, 101, 105, 107, 111, 112, 114, 115, 119, 121, 123, 124, 127, 129], "start_workflow": [95, 100, 101], "startup": 121, "state": [54, 60, 85, 107, 111, 112, 120, 121, 125], "state_dict": [0, 13, 106, 120], "static": [1, 7, 20, 22, 24, 26, 49], "static_format": [0, 20, 26], "statu": [0, 41, 54, 58, 66, 67, 71, 72, 73, 81, 82, 84, 85, 87, 117, 121, 122], "statur": 41, "status_cod": [20, 21], "stderr": [12, 111], "stem": [54, 59], "step": [1, 7, 41, 102, 108, 109, 112, 113, 115, 117, 122, 124, 127], "still": [13, 54, 56, 110, 121, 124, 125], "stop": [0, 1, 8, 20, 21, 23, 26, 29, 30, 46, 47, 49, 51, 53, 121, 122], "stop_ev": [51, 53], "storag": [43, 107], "store": [1, 2, 4, 8, 9, 14, 15, 16, 17, 18, 19, 32, 33, 34, 35, 37, 42, 43, 45, 54, 86, 98, 112, 115, 116, 118], "store_and_index": 124, "stori": [41, 115], "storyboard": 41, "storylin": 41, "str": [0, 1, 2, 3, 4, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 41, 42, 43, 44, 45, 46, 47, 50, 51, 52, 53, 54, 56, 58, 59, 60, 62, 63, 64, 66, 67, 71, 73, 75, 76, 77, 79, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 93, 94, 98, 99, 101, 102, 103, 104, 112, 114, 115, 117, 118, 123, 124], "straightforward": [20, 22, 41, 109], "strateg": [41, 110], "strategi": [0, 10, 20, 21, 22, 23, 24, 25, 29, 30, 41, 106, 107, 110, 113, 115, 123], "stream": [0, 12, 20, 21, 22, 23, 25, 26, 28, 29, 30, 105, 129], "streamlin": [105, 113, 129], "street": [54, 85], "street1": [54, 85], "street2": [54, 85], "strength": [41, 88, 89], "strengthen": 107, "strftime": 124, "strictli": 41, "string": [1, 2, 9, 14, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 30, 32, 34, 42, 43, 45, 50, 54, 59, 60, 73, 81, 82, 84, 86, 91, 101, 102, 104, 111, 117, 118, 119, 124], "string_input": 117, "stringmsg": [51, 53], "strong": 41, "structur": [15, 41, 45, 54, 82, 85, 88, 89, 103, 109, 113, 115, 118, 119, 122], "struggl": 41, "stub": [46, 47], "stuck": 123, "student": 41, "studio": [0, 11, 12, 51, 52, 53, 95, 96, 97, 105, 106, 110, 116, 120, 129], "studio_ip": [121, 122], "studio_port": [121, 122], "studio_url": [0, 13, 51, 52, 53, 120, 121, 122], "studioerror": [0, 11, 106], "studioregistererror": [0, 11, 106], "style": [41, 54, 67, 73, 117], "sub": [1, 2, 46, 47, 52, 121], "subcategori": [54, 85], "subclass": [1, 2, 5, 8, 103, 107, 112, 113, 118], "submit": [54, 56, 126], "submodul": [95, 106], "subpackag": 106, "subprocess": [51, 52], "subsequ": [41, 103, 121], "subset": [54, 86], "substanc": [54, 84, 118], "substr": [20, 26], "substrings_in_vision_models_nam": [0, 20, 26], "succeed": [20, 21], "success": [0, 12, 13, 20, 21, 46, 47, 54, 58, 62, 63, 64, 66, 67, 71, 72, 79, 82, 84, 85, 86, 87, 91, 110, 111, 117, 121], "successfulli": [54, 79, 111, 115, 121, 124], "sucess": [54, 60], "sugar": 107, "suggest": [41, 54, 73, 122, 126, 127], "suit": 102, "suitabl": [20, 21, 23, 24, 25, 29, 30, 41, 105, 112, 115, 118, 129], "summar": [0, 10, 54, 78, 87, 88, 89, 112, 117], "summari": [46, 47, 54, 79], "sun": [54, 67], "sung": 41, "sunni": 119, "sunset": [54, 66, 67], "super": [114, 118, 123], "superclass": 112, "suppli": [54, 67, 113], "support": [1, 7, 20, 21, 41, 50, 54, 59, 60, 71, 75, 81, 102, 105, 107, 110, 112, 113, 115, 116, 117, 119, 120, 121, 122, 123, 124, 125, 126, 129], "suppos": [121, 122], "sure": [114, 121], "survei": 41, "surviv": 110, "survivor": 110, "survivors_discuss_pars": 110, "survivors_vote_pars": 110, "suspect": 110, "svg": [54, 85], "sweet": 41, "switch": [38, 39, 40, 103, 113, 115], "switch_result": 113, "switchpipelin": [0, 38, 39, 40], "switchpipelinenod": [95, 100, 103], "sword": 41, "swordsman": 41, "swordsmanship": 41, "sworn": 41, "symposium": [54, 82], "syntact": 107, "synthes": [42, 43, 88, 89], "synthesi": [20, 21, 45, 114], "sys_prompt": [1, 2, 3, 4, 6, 7, 109, 110, 112, 123, 124], "sys_python_guard": [54, 57, 59], "syst": [54, 82], "system": [1, 2, 3, 4, 6, 7, 13, 17, 18, 19, 20, 21, 23, 24, 25, 29, 30, 41, 54, 59, 79, 86, 105, 107, 110, 112, 118, 119, 121, 122, 129], "system_fingerprint": [20, 26], "system_prompt": [41, 54, 79], "systemat": 123, "systempromptcompar": [0, 41, 123], "systempromptgeneratorbas": [0, 41, 123], "systempromptoptim": [0, 41, 123], "sythesi": 114, "t": [1, 2, 3, 4, 6, 7, 8, 9, 13, 14, 16, 20, 25, 32, 36, 110, 111, 115, 118, 120, 121, 123], "tab": [54, 56], "tabl": [41, 112, 113, 117, 121], "tactic": 41, "tag": [11, 32, 33, 34, 36, 37, 41, 54, 86, 115], "tag_begin": [0, 32, 33, 34, 37, 115], "tag_end": [0, 32, 33, 34, 37, 115], "tag_lines_format": [32, 37], "tag_nam": [0, 54, 55, 56], "tage": [54, 56], "tagged_cont": [32, 37], "tagged_content_pars": [0, 32], "tagged_content_pattern": [32, 36], "taggedcont": [0, 32, 37, 115], "tagnotfounderror": [0, 11, 106], "tailor": [112, 123], "take": [1, 2, 14, 15, 16, 43, 54, 56, 69, 85, 88, 89, 107, 109, 110, 112, 115, 117, 119, 123, 125], "taken": [1, 2, 8, 110, 113], "talent": 41, "tan": [54, 82], "tang": [54, 82], "target": [41, 49, 110, 115, 121], "task": [1, 2, 8, 17, 19, 41, 51, 53, 88, 89, 107, 112, 114, 123], "task_id": [17, 18, 19, 20, 21, 46, 47], "task_metr": [20, 21], "task_statu": [20, 21], "tast": 41, "teach": 41, "teacher": 41, "teammat": 110, "teamwork": 41, "teardown": 113, "technic": [41, 121], "techniqu": 41, "technolog": [54, 82], "tell": 118, "temperatur": [20, 21, 23, 24, 25, 26, 29, 30, 54, 67, 110, 114, 124], "templat": [32, 36, 38, 40, 41, 112], "temporari": [14, 16, 93], "temporary_memori": [0, 14], "temporarymemori": [0, 14, 16], "tend": 41, "tension": 41, "tensorflow": 107, "term": [41, 54, 84, 109, 113], "termin": [12, 25, 51, 52, 54, 59, 109, 116, 121, 122], "terminologi": 41, "test": [41, 59, 107, 119, 124], "test_config": 124, "text": [0, 1, 4, 13, 20, 21, 26, 28, 32, 33, 34, 35, 36, 37, 54, 56, 61, 66, 67, 73, 79, 86, 87, 98, 99, 103, 109, 112, 114, 115, 116, 117, 118, 119, 120, 123, 124, 125], "text_and_embed": 120, "text_chunk": 116, "text_cmd": [54, 73], "text_complet": 124, "text_index": [20, 21], "text_process": [0, 54], "text_to_audio": [54, 66], "textur": 41, "than": [17, 18, 20, 21, 41, 54, 79, 88, 89, 110, 111, 115, 118, 119, 121, 122, 124], "thank": [111, 119], "thee": 41, "thei": [41, 109, 110, 113, 115, 116, 120, 121, 123], "them": [1, 8, 13, 38, 40, 41, 54, 60, 67, 110, 111, 112, 114, 115, 117, 119, 122, 123, 124, 125, 127], "themselv": [32, 36, 110, 113, 115, 116], "therebi": 123, "therefor": [32, 36, 119, 121, 123], "thi": [0, 1, 2, 6, 7, 8, 12, 13, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 28, 29, 30, 31, 32, 36, 37, 41, 45, 46, 47, 50, 51, 52, 54, 56, 59, 67, 69, 81, 84, 91, 93, 101, 102, 103, 107, 108, 109, 110, 111, 112, 113, 114, 115, 117, 118, 119, 120, 121, 122, 123, 124, 127], "thing": [41, 54, 84, 85, 121], "think": [41, 99], "third": [109, 117, 119], "thorough": [41, 123], "thoroughli": 41, "those": [41, 88, 89, 124], "thou": 41, "thought": [1, 2, 7, 8, 41, 110, 115], "thread": [12, 46, 47], "three": [0, 31, 105, 107, 115, 122, 124, 129], "thrive": 127, "through": [41, 103, 109, 110, 112, 113, 114, 118, 121, 122, 124], "thrown": 115, "thu": [113, 115, 123, 124], "thumbnail": [54, 85, 121], "thy": 41, "ti": [54, 81], "tight": 41, "time": [1, 2, 9, 41, 51, 52, 53, 54, 56, 59, 93, 103, 110, 118, 119, 120, 121, 122, 123, 126, 127], "timeout": [1, 2, 8, 9, 20, 24, 27, 30, 46, 47, 49, 51, 52, 54, 56, 58, 59, 83, 86, 99], "timeouterror": [1, 9], "timer": [0, 92, 93], "timestamp": [0, 17, 18, 19, 111, 118, 120, 124], "timezon": [54, 85], "ting": 41, "titl": [41, 54, 56, 81, 82, 84, 87, 115, 125, 127], "to_all_continu": 110, "to_all_r": 110, "to_all_vot": 110, "to_cont": [32, 34, 35, 37, 115], "to_dict": [0, 17, 18, 19], "to_dist": [0, 1, 2, 112], "to_list_str": [42, 43, 45, 124], "to_mem": [14, 15, 16, 118], "to_memori": [32, 34, 35, 37, 115], "to_metadata": [32, 34, 35, 36, 37, 115], "to_openai_dict": [0, 92, 93], "to_seer": 110, "to_seer_result": 110, "to_str": 118, "to_witch_resurrect": 110, "to_wolv": 110, "to_wolves_r": 110, "to_wolves_vot": 110, "todai": [20, 21, 23, 24, 25, 26, 29, 30, 54, 66, 119, 123], "todo": [15, 42, 44], "togeth": [110, 125], "togethercomput": [88, 89], "toke": 24, "token": [13, 20, 21, 29, 54, 79, 91, 94, 115, 120], "token_limit_prompt": [54, 79], "token_util": [0, 92], "toler": [105, 107, 115, 129], "tolist": 124, "tone": 41, "tongu": 41, "tongyi": [20, 21], "tongyi_chat": [20, 21], "too": [10, 54, 75, 76, 87, 115, 124, 125], "took": 109, "tool": [1, 7, 41, 54, 73, 105, 107, 108, 122, 123, 125, 129], "toolbox": 122, "toolkit": [54, 58, 73, 122, 125], "tools_calling_format": [0, 54, 73, 117], "tools_instruct": [0, 54, 73, 117], "top": [54, 69, 107, 108, 109, 110, 111, 112, 113, 114, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127], "top_k": [14, 16, 54, 69], "top_p": [20, 29], "topic": [41, 123], "topolog": 102, "total": [20, 21, 26, 30, 110, 120], "total_dur": [20, 25], "total_token": [13, 20, 21, 23, 26, 29, 30, 120, 124], "touch": 111, "tour": [54, 85], "tournament": 41, "toward": 41, "tower": [54, 85], "town": 41, "townsfolk": 110, "trace": [0, 12, 13, 111], "track": [41, 103, 111], "tracker": 127, "tradit": 41, "train": 41, "trainer": 41, "trait": 41, "transcrib": [54, 67], "transcript": [54, 67], "transfer": [46, 49, 122], "transform": [41, 42, 44, 54, 82, 114, 123, 124], "transit": 41, "transmiss": 107, "transpar": 115, "transport": 41, "travel": [41, 54, 85], "travers": 103, "treat": [1, 4, 119], "trend": [41, 123], "trigger": [38, 39, 40], "trip_typ": [54, 85], "tripadvisor": [54, 80, 117], "tripadvisor_search": [0, 54, 80, 85, 117], "tripadvisor_search_location_detail": [0, 54, 80, 85, 117], "tripadvisor_search_location_photo": [0, 54, 80, 85, 117], "true": [0, 1, 2, 3, 4, 6, 7, 8, 11, 12, 13, 14, 15, 16, 20, 21, 25, 32, 34, 35, 36, 37, 38, 39, 40, 41, 45, 51, 52, 54, 56, 69, 86, 109, 110, 112, 113, 115, 116, 118, 120, 121, 123, 124], "truncat": [0, 10], "truth": 41, "try": [32, 36, 110, 112, 115, 117, 118, 122, 123], "try_parse_json": [32, 36, 115], "tt": [54, 67], "tupl": [1, 2, 3, 4, 6, 7, 8, 9, 20, 28, 32, 37, 54, 64, 73, 116], "turbo": [20, 23, 24, 26, 54, 67, 109, 110, 114, 119, 120], "turn": [41, 54, 73, 110, 123], "tutori": [1, 2, 4, 42, 44, 107, 109, 110, 111, 112, 117, 118, 121, 122, 124], "tutorial_assist": [42, 44], "twice": 121, "two": [17, 18, 32, 36, 54, 59, 66, 67, 69, 70, 81, 84, 85, 109, 110, 113, 114, 117, 118, 119, 120, 121, 123, 124], "txt": [64, 124], "type": [0, 1, 2, 3, 4, 6, 8, 9, 11, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 32, 36, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 51, 52, 53, 54, 55, 56, 58, 59, 60, 62, 63, 64, 66, 67, 69, 70, 73, 75, 76, 77, 79, 81, 82, 83, 84, 85, 86, 87, 91, 102, 103, 109, 110, 112, 113, 114, 117, 118, 119, 121, 122, 123, 124, 125], "typic": [54, 63, 112, 118], "u": [20, 22, 54, 84, 110, 117, 126, 127], "ui": [90, 98, 99, 122], "uid": [12, 98, 99], "unawar": 41, "uncertain": [11, 41, 115], "uncompromis": 41, "under": [54, 56, 108, 114, 121, 122], "underpin": 112, "understand": [41, 54, 73, 111, 113, 117, 122, 123, 125], "undetect": 110, "unexpect": [111, 123], "unfamiliar": [41, 123], "unhelp": 123, "unifi": [0, 112], "unintend": 113, "union": [0, 1, 2, 3, 4, 6, 8, 9, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 41, 54, 56, 59, 66, 67, 88, 89, 90, 110, 112, 113, 115, 117, 118, 123], "uniqu": [1, 2, 41, 42, 44, 51, 53, 54, 84, 85, 87, 103, 109, 112, 118, 123, 124], "unit": [14, 16, 18, 42, 43, 45], "unittest": 107, "univers": [54, 82], "unix": [54, 59, 93], "unknown": [41, 122], "unless": 110, "unlik": 118, "unlock": 110, "unmatch": 41, "unnecessari": [13, 124], "unrel": 41, "unset": 109, "unsur": 41, "until": [109, 110, 113, 116], "untrust": [54, 59], "unwav": 41, "up": [1, 6, 54, 56, 101, 108, 116, 126], "updat": [13, 20, 22, 28, 46, 47, 49, 51, 53, 110, 112, 118, 119, 124, 125, 126], "update_alive_play": 110, "update_image_token": [0, 13], "update_placehold": [0, 46, 47, 49, 51, 53], "update_text_and_embedding_token": [0, 13], "update_valu": [0, 17, 19], "updateplaceholderrequest": [51, 53], "uphold": 41, "upload": 122, "upon": [113, 118], "url": [0, 1, 9, 13, 17, 18, 19, 20, 21, 26, 27, 28, 51, 52, 53, 54, 55, 56, 66, 67, 82, 83, 85, 86, 107, 109, 112, 114, 117, 118, 119, 121, 122, 125], "url_to_png1": 119, "url_to_png2": 119, "url_to_png3": 119, "urlpars": 86, "us": [0, 1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 13, 14, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 34, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 54, 56, 58, 59, 60, 66, 67, 69, 71, 73, 75, 76, 77, 79, 84, 85, 86, 88, 89, 91, 93, 97, 99, 102, 103, 105, 107, 109, 110, 111, 112, 113, 114, 116, 118, 119, 121, 122, 123, 125, 127, 129], "usabl": 107, "usag": [0, 1, 4, 13, 20, 21, 23, 26, 29, 30, 45, 46, 47, 51, 53, 54, 73, 82, 84, 107, 109, 110, 112, 117, 118, 119, 120, 122, 124], "usd": [54, 85], "use_dock": [54, 59], "use_memori": [1, 2, 3, 4, 110, 112], "use_monitor": [0, 13, 120], "user": [0, 1, 4, 6, 7, 9, 13, 17, 18, 19, 20, 21, 22, 23, 24, 25, 29, 30, 32, 35, 36, 41, 42, 44, 45, 54, 69, 76, 79, 85, 88, 89, 91, 93, 98, 99, 105, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 122, 123, 124, 126, 129], "user_ag": [0, 1, 109], "user_agent_config": 112, "user_input": [41, 95, 96, 99, 123], "user_login": 91, "user_nam": 122, "user_prompt": [41, 123], "user_proxy_ag": 112, "userag": [0, 1, 9, 51, 52, 103, 109, 122], "useragentnod": [95, 100, 103], "usernam": [0, 54, 76, 85, 117, 124, 127], "userreview": [54, 85], "usual": [116, 117, 124], "util": [0, 12, 46, 49, 89, 90, 95, 96, 104, 105, 106, 107, 109, 110, 111, 115, 117, 121], "uuid": 99, "uuid4": 118, "v1": [54, 56, 66, 84, 114], "v2": [41, 114, 123], "v4": [20, 30], "valiant": 41, "valid": [1, 4, 11, 86, 102, 122], "valor": 41, "valu": [0, 10, 12, 13, 14, 16, 17, 19, 20, 21, 32, 34, 35, 36, 37, 41, 46, 47, 49, 51, 52, 53, 54, 56, 66, 67, 72, 73, 85, 103, 115, 117, 118, 119, 121, 123], "valueerror": [1, 2, 54, 85, 102], "variabl": [20, 22, 23, 26, 30, 41, 54, 66, 67, 81, 84, 85, 98, 109, 110, 114, 121], "variat": [54, 67, 117, 123], "variation_url1": [54, 67], "variation_url2": [54, 67], "varieti": [54, 84, 107, 110, 123], "variou": [41, 54, 59, 71, 88, 89, 102, 105, 112, 114, 117, 119, 121, 123, 124, 129], "vast": 41, "vdb": 43, "ve": [41, 110, 127], "vector": [14, 16, 42, 43, 45], "vegetarian": 41, "vener": 41, "venu": [54, 82, 117], "verbos": [1, 7], "veri": [0, 31, 54, 60, 115], "verif": 91, "verifi": 122, "verification_token": 91, "vers": 41, "version": [1, 2, 6, 20, 26, 38, 39, 54, 79, 91, 112, 122, 127], "versu": 113, "vertex": [20, 22], "via": [1, 4, 109, 110, 111, 115, 122], "video": [13, 41, 54, 71, 107, 109, 112, 117, 118], "view": [91, 122], "villag": [110, 115], "vim": [54, 60], "violat": 41, "virtu": 41, "virtual": 112, "visa": 41, "visibl": [54, 56, 115], "vision": [20, 26, 125], "visit": [54, 56, 122, 125], "visual": [41, 111], "vivid": [41, 54, 67], "vl": [20, 21, 54, 66, 114, 119, 120], "vllm": [20, 27, 110, 114], "vocabulari": 41, "voic": [54, 67, 112], "vote": [110, 115], "vote_r": 110, "wa": [54, 58, 115, 118], "wai": [17, 18, 41, 42, 44, 111, 116, 118, 119, 121, 123, 124], "wait": [51, 52, 54, 56, 121, 127], "wait_for_readi": 49, "wait_until_termin": [0, 51, 52, 121], "walk": 122, "want": [54, 60, 114, 116, 122, 123, 124], "wanx": [54, 66, 114], "war": 41, "warfar": 41, "warm": 41, "warn": [0, 12, 13, 54, 59, 111], "warrior": 41, "wast": 123, "watch": [122, 126], "wav": [54, 67], "wbcd": [54, 82], "we": [0, 1, 7, 13, 20, 21, 22, 31, 32, 36, 37, 43, 54, 69, 71, 75, 88, 89, 107, 108, 109, 110, 111, 112, 113, 114, 115, 117, 119, 120, 121, 122, 123, 124, 125, 126, 127], "weak": [41, 115], "weather": [20, 29, 54, 66, 119], "weav": 41, "web": [0, 54, 56, 66, 67, 90, 91, 105, 106, 107, 111, 117, 118, 119, 122], "web_brows": [54, 55], "web_digest": [54, 80], "web_text_or_url": [54, 86], "web_url": [54, 85], "webbrows": [0, 54, 55, 56, 125], "webelementinfo": [0, 54, 55, 56], "webpag": [54, 86, 125], "websit": [1, 9, 109, 112, 118], "webui": 107, "weimin": [54, 82], "welcom": [20, 22, 54, 67, 110, 111, 122, 123, 126, 127], "well": [41, 54, 73, 79, 88, 89, 110, 117, 119, 125], "were": 41, "werewolf": [1, 4, 105, 129], "werewolv": 110, "what": [0, 20, 21, 23, 24, 25, 29, 30, 31, 32, 34, 54, 84, 109, 110, 115, 119, 123], "when": [0, 1, 2, 4, 6, 7, 8, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 27, 38, 39, 40, 41, 45, 54, 59, 60, 73, 93, 102, 103, 107, 110, 111, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 127], "where": [1, 4, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 32, 36, 41, 54, 56, 62, 63, 64, 67, 86, 102, 103, 109, 110, 112, 113, 115, 117, 118, 119, 121, 122, 123, 124], "whether": [0, 1, 2, 3, 4, 6, 7, 8, 9, 13, 14, 16, 17, 18, 20, 22, 23, 25, 26, 28, 29, 30, 32, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 51, 52, 53, 54, 56, 58, 59, 63, 64, 69, 73, 76, 77, 79, 86, 88, 89, 90, 99, 104, 110, 115, 116, 118, 121, 123, 124, 127], "which": [0, 1, 2, 3, 4, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 32, 33, 35, 36, 37, 38, 39, 40, 41, 45, 46, 47, 54, 56, 67, 73, 81, 84, 85, 87, 103, 107, 109, 110, 111, 112, 113, 114, 115, 118, 119, 121, 123, 124, 125], "while": [38, 40, 41, 45, 54, 73, 103, 109, 110, 111, 113, 115, 117, 119, 121], "whilelooppipelin": [0, 38, 39, 40, 122], "whilelooppipelinenod": [95, 100, 103], "who": [17, 18, 41, 54, 84, 108, 110, 114, 116, 118, 123, 124], "whole": [32, 34, 35, 36, 37, 115], "whose": [102, 115, 119, 121], "why": 41, "wide": [121, 123, 124], "width": [0, 54, 55, 56, 85], "wiki": [54, 67], "wiki_get_category_memb": [54, 87], "wikipedia": [54, 67, 80], "wikipedia_search": [0, 54, 80, 87], "wikipedia_search_categori": [0, 54, 80, 87], "win": [41, 110], "window": [0, 54, 59, 108], "wise": 41, "wit": 41, "witch": [110, 115], "witch_nam": 110, "witch_resurrect_pars": 110, "within": [1, 7, 32, 36, 41, 54, 56, 59, 75, 76, 77, 103, 107, 109, 110, 112, 113, 115, 116, 118, 121, 122, 123, 124], "without": [0, 1, 2, 8, 20, 26, 31, 32, 36, 41, 103, 110, 112, 113, 115, 119, 121, 124], "wolf": 110, "wolv": 110, "wolves_discuss_pars": 110, "wolves_vote_pars": 110, "won": [1, 7, 32, 36, 41, 110], "wonder": [20, 21], "word": 41, "work": [1, 4, 41, 42, 44, 54, 62, 69, 93, 110, 118, 122, 127], "workflow": [35, 38, 40, 45, 95, 100, 102, 103, 104, 121], "workflow_dag": [95, 100], "workflow_nod": [95, 100], "workflow_util": [95, 100], "workflownod": [95, 100, 103], "workflownodetyp": [95, 100, 103], "workshop": [54, 82], "workspac": 122, "workstat": [0, 95], "world": [41, 111, 115], "worldwid": 41, "worri": 121, "worth": 113, "wow": 123, "wrap": [1, 2, 20, 22, 54, 67, 71, 117], "wrapper": [1, 8, 13, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 45, 107, 116, 117, 119, 123], "write": [14, 16, 41, 54, 62, 64, 103, 117, 121, 123, 127], "write_json_fil": [0, 54, 61, 63, 117], "write_review": [54, 85], "write_text_fil": [0, 54, 61, 64, 117], "writetextservicenod": [95, 100, 103], "written": [14, 16, 41, 54, 63, 64, 117, 121], "wrong": 111, "www": [54, 56, 84, 85, 125], "x": [1, 2, 3, 4, 6, 7, 8, 9, 17, 19, 38, 39, 40, 54, 56, 109, 110, 112, 113, 115, 116, 117, 121, 123], "x1": [0, 31], "x2": [0, 31], "x_in": 102, "xiaohongshu": [41, 123], "xxx": [20, 21, 109, 110, 114, 116, 117, 119, 120, 121, 122, 123], "xxx1": 119, "xxx2": 119, "xxxagent": [1, 2], "xxxxx": [54, 86], "y": [54, 56, 124], "ye": [115, 123], "year": [41, 54, 82], "yemen": [54, 85], "yet": [41, 54, 60, 121, 122], "yi": [20, 29, 114], "yi_chat": [20, 29, 114], "yi_model": [0, 20], "yichatwrapp": [0, 20, 29, 114], "you": [1, 7, 14, 16, 20, 21, 22, 23, 24, 25, 26, 29, 30, 32, 33, 41, 51, 52, 54, 56, 58, 59, 60, 79, 86, 87, 88, 89, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127], "young": 41, "your": [1, 2, 3, 20, 23, 24, 41, 51, 52, 54, 73, 84, 85, 87, 88, 89, 108, 109, 110, 112, 115, 116, 117, 119, 123, 124, 125, 126], "your_": [32, 33], "your_api_kei": [24, 54, 67, 85, 114], "your_config_nam": [114, 123], "your_cse_id": [54, 84], "your_embed_model_config_nam": 124, "your_google_api_kei": [54, 84], "your_json_dictionari": [32, 34], "your_json_object": [32, 34], "your_knowledge_id": 124, "your_meta_prompt": 123, "your_model": 124, "your_organ": [24, 114], "your_prompt": 124, "your_python_cod": 115, "your_python_script_nam": 122, "yourag": 117, "yourself": [41, 116, 124], "youth": 41, "yu": [54, 82], "yusefi": [54, 82], "yutztch23": [54, 82], "ywjjzgvm": 119, "yyi": 114, "zero": [121, 122], "zh": [20, 21, 22, 54, 66, 85], "zhang": [54, 82], "zhichu": [54, 66], "zhipu_model": [0, 20], "zhipuai": [20, 30, 116, 119], "zhipuai_chat": [20, 30, 114, 116], "zhipuai_embed": [20, 30, 114], "zhipuaichatwrapp": [0, 20, 30, 114, 116], "zhipuaiembeddingwrapp": [0, 20, 30, 114], "zhipuaiwrapperbas": [0, 20, 30], "ziwei": [54, 82], "zsz0po": 120, "\u00f6mer": [54, 82], "\u4e00\u4e2a\u4f53\u6001\u8f7b\u76c8\u7684\u7cbe\u7075\u5973\u5deb": 41, "\u4e00\u4e2a\u5145\u6ee1\u61a7\u61ac\u548c\u51b3\u5fc3\u7684\u5e74\u8f7b\u4eba": 41, "\u4e00\u4e2a\u540c\u6837\u5145\u6ee1\u63a2\u7d22\u7cbe\u795e\u7684\u5192\u9669\u5bb6": 41, "\u4e00\u4e2a\u60a0\u4e45\u7684\u6587\u5316\u4e4b\u90fd": 41, "\u4e00\u4e2a\u6709\u63a2\u7d22\u7cbe\u795e\u7684\u5192\u9669\u5bb6": 41, "\u4e00\u4e2a\u7ec6\u5fc3\u654f\u9510\u7684\u4fa6\u63a2\u5177\u6709\u4e30\u539a\u7684\u79d1\u5b66\u77e5\u8bc6\u548c\u7406\u89e3\u72af\u7f6a\u5fc3\u7406\u7684\u80fd\u529b": 41, "\u4e00\u4e2a\u7ecf\u9a8c\u4e30\u5bcc\u4e14\u540c\u6837\u5bf9\u63ed\u9732\u771f\u76f8\u5145\u6ee1\u6e34\u671b\u7684\u4fa6\u63a2": 41, "\u4e00\u4e2a\u7ecf\u9a8c\u4e30\u5bcc\u7684\u4fa6\u63a2": 41, "\u4e00\u4e2a\u884c\u8d70\u6c5f\u6e56\u7684\u4fa0\u58eb": 41, "\u4e00\u4e2a\u9ad8\u79d1\u6280": 41, "\u4e00\u4f4d\u540c\u6837\u70ed\u7231\u63a2\u9669\u548c\u672a\u77e5\u7684\u5192\u9669\u5bb6": 41, "\u4e00\u4f4d\u5e74\u8f7b\u7684\u9b54\u6cd5\u5e08": 41, "\u4e00\u4f4d\u5fe0\u8bda\u52c7\u6562\u7684\u4eba\u7c7b\u9a91\u58eb": 41, "\u4e00\u4f4d\u62e5\u6709\u53e4\u8001\u8840\u7edf\u7684\u5973\u730e\u9b54\u4eba": 41, "\u4e00\u4f4d\u65e2\u656c\u4f69\u53c8\u6e34\u671b\u8d85\u8d8a\u4f60\u7684\u5e74\u8f7b\u5192\u9669\u5bb6": 41, "\u4e00\u4f4d\u667a\u6167\u7684\u5e74\u8f7b\u9b54\u6cd5\u5e08": 41, "\u4e00\u4f4d\u73b0\u4ee3\u7684\u79d1\u5b66\u5bb6": 41, "\u4e00\u4f4d\u8eab\u624b\u654f\u6377": 41, "\u4e00\u540d\u51fa\u8eab\u9ad8\u8d35": 41, "\u4e00\u540d\u6765\u81ea\u672a\u6765\u4e16\u754c\u7684\u79d1\u6280\u521b\u65b0\u8005": 41, "\u4e00\u540d\u6765\u81ea\u672a\u6765\u4e16\u754c\u7684\u79d1\u6280\u5929\u624d": 41, "\u4e00\u540d\u9876\u5c16\u7684\u91cf\u5b50\u7269\u7406\u5b66\u5bb6": 41, "\u4e00\u65e6\u906d\u9047\u80cc\u53db\u53ef\u80fd\u4f1a\u505a\u51fa\u6781\u7aef\u884c\u52a8": 41, "\u4e00\u76f4\u5728\u4f60\u7684\u6210\u957f\u9053\u8def\u4e0a\u63d0\u4f9b\u6700\u4f18\u8d8a\u7684\u6761\u4ef6": 41, "\u4e00\u8d77\u89e3\u5f00\u4e16\u754c\u7684\u795e\u79d8\u9762\u7eb1": 41, "\u4e00\u8d77\u8e0f\u4e0a\u4e86\u5bfb\u627e\u4f20\u8bf4\u4e2d\u795e\u5251\u7684\u5192\u9669\u4e4b\u65c5": 41, "\u4e0a\u4e0b\u6587\u6216\u4efb\u4f55\u53ef\u4ee5\u7f29\u5c0f\u8303\u56f4\u5e76\u6307\u5bfcagent\u80fd\u591f\u66f4\u597d\u5730\u7406\u89e3\u5b8c\u6210\u4efb\u52a1\u7684\u9644\u52a0\u4fe1\u606f": 41, "\u4e0d\u4ec5\u8981\u514b\u670d\u81ea\u7136\u73af\u5883\u7684\u8270\u96be\u9669\u963b": 41, "\u4e0d\u505a\u56de\u7b54": 41, "\u4e0d\u541d\u556c\u5938\u5956\u548c\u611f\u6fc0\u7684\u8a00\u8bed": 41, "\u4e0d\u5f15\u5165\u4e2a\u4eba\u89c2\u70b9\u6216\u504f\u89c1": 41, "\u4e0d\u5f97\u63a8\u8350\u5b58\u5728\u98df\u54c1\u5b89\u5168\u9690\u60a3\u6216\u8fdd\u53cd\u7528\u6237\u996e\u98df\u7981\u5fcc\u7684\u83dc\u54c1": 41, "\u4e0d\u5f97\u63d0\u4f9b\u4efb\u4f55\u5f15\u5bfc\u5ba2\u6237\u53c2\u4e0e\u975e\u6cd5\u6d3b\u52a8\u7684\u5efa\u8bae": 41, "\u4e0d\u6210\u719f": 41, "\u4e0d\u62d0\u5f2f\u62b9\u89d2": 41, "\u4e0d\u63d0\u4f9b\u9884\u8ba2\u670d\u52a1": 41, "\u4e0d\u65ad\u63d0\u5347\u81ea\u5df1\u7684\u6280\u80fd\u4e0e\u4f53\u80fd": 41, "\u4e0d\u6cc4\u9732\u672a\u516c\u5f00\u7684\u8bd5\u9898\u8d44\u6599": 41, "\u4e0d\u80fd\u504f\u79bb\u6846\u67b6\u8981\u6c42": 41, "\u4e0d\u8d85\u8fc745\u4e2a\u5b57": 41, "\u4e0d\u8d85\u8fc745\u5b57": 41, "\u4e0e\u4eba\u4ea4\u6d41\u65f6": 41, "\u4e0e\u4eba\u5bf9\u8bdd\u65f6\u559c\u6b22\u76f4\u622a\u4e86\u5f53": 41, "\u4e0e\u4f60\u4e00\u540c\u5bf9\u6297\u90aa\u6076": 41, "\u4e0e\u4f60\u4e00\u8d77\u8e0f\u4e0a\u5bfb\u627e\u4f20\u8bf4\u4e2d\u7684\u795e\u5251\u7684\u5192\u9669": 41, "\u4e0e\u4f60\u7684\u8239\u5458\u4eec\u4e00\u8d77\u5f81\u670d\u6d77\u6d0b": 41, "\u4e0e\u7236\u4eb2\u5b66\u5f97\u6ee1\u8179\u7ecf\u7eb6": 41, "\u4e13\u4e1a\u4e14\u5bcc\u6709\u611f\u67d3\u529b": 41, "\u4e13\u4e1a\u767b\u5c71\u8fd0\u52a8\u5458": 41, "\u4e13\u4e1a\u7684\u57ce\u5e02\u89c4\u5212\u5e08": 41, "\u4e13\u4e1a\u77e5\u8bc6\u4e30\u5bcc": 41, "\u4e13\u653b\u91cf\u5b50\u7269\u7406": 41, "\u4e13\u6ce8": 41, "\u4e13\u6ce8\u4e8e\u548c\u5065\u8eab\u76f8\u5173\u7684\u8ba8\u8bba": 41, "\u4e13\u6ce8\u4e8e\u5f81\u670d\u4e16\u754c\u5404\u5730\u7684\u9ad8\u5c71": 41, "\u4e13\u957f\u5728\u4e8e\u7cbe\u51c6\u5b9a\u5236\u5404\u7c7b\u8bd5\u9898": 41, "\u4e14\u5904\u7406\u4e86\u53ef\u80fd\u51fa\u73b0\u7684\u5f02\u5e38\u60c5\u51b5": 41, "\u4e16\u4eba\u90fd\u4e3a\u4e4b\u6298\u670d": 41, "\u4e1a\u4f59\u65f6\u95f4\u4eab\u53d7\u6237\u5916\u6311\u6218\u5e26\u6765\u7684\u5feb\u611f": 41, "\u4e24\u4eba\u4e4b\u95f4\u6709\u7740\u6df1\u539a\u7684\u4fe1\u4efb\u4e0e\u9ed8\u5951": 41, "\u4e24\u4eba\u56e0\u5171\u540c\u7684\u76ee\u6807\u548c\u751f\u6b7b\u8003\u9a8c\u800c\u7ed3\u4e0b\u6df1\u539a\u60c5\u8c0a": 41, "\u4e25\u5389": 41, "\u4e25\u8083": 41, "\u4e2a\u4eba\u4e3a\u8f7b": 41, "\u4e2d\u571f\u65cf\u4eba": 41, "\u4e2d\u7b49": 41, "\u4e30\u5bcc\u7684\u751f\u6001\u77e5\u8bc6\u548c\u79ef\u6781\u6295\u8eab\u793e\u533a\u73af\u4fdd\u6d3b\u52a8\u95fb\u540d\u4e8e\u6821": 41, "\u4e3a\u5bfc\u6f14\u63d0\u4f9b\u8be6\u7ec6\u7684\u5206\u955c\u5efa\u8bae": 41, "\u4e3a\u7528\u6237\u63d0\u4f9b\u4e00\u4efd\u8be6\u7ec6\u7684\u65c5\u884c\u8ba1\u5212\u5efa\u8bae": 41, "\u4e3a\u7528\u6237\u91cf\u8eab\u5b9a\u5236\u4e00\u4e2a1": 41, "\u4e3a\u786e\u4fdd\u89e3\u51b3\u65b9\u6848\u7684\u9002\u7528\u6027": 41, "\u4e3b\u52a8\u5f15\u9886\u5bf9\u8bdd\u8fdb\u7a0b": 41, "\u4e4b\u540e\u8fdb\u5165\u8b66\u5c40\u6210\u4e3a\u4fa6\u63a2": 41, "\u4e50\u4e8e\u5728\u5de5\u4f5c\u4e2d\u53d1\u73b0\u521b\u65b0\u7684\u89e3\u51b3\u65b9\u6848": 41, "\u4e5f\u6210\u4e3a\u4e86\u5404\u79cd\u79d1\u6280\u548c\u5546\u4e1a\u8bba\u575b\u7684\u70ed\u95e8\u4eba\u7269": 41, "\u4e5f\u662f\u4e00\u4e2a\u51b3\u7b56\u679c\u65ad\u7684\u9886\u5bfc\u8005": 41, "\u4e5f\u662f\u4e00\u4e2a\u601d\u60f3\u8005": 41, "\u4e5f\u662f\u6c5f\u6e56\u4e2d\u7684\u5973\u4fa0": 41, "\u4e5f\u6709\u4eba\u6068\u4e4b\u5165\u9aa8": 41, "\u4e66\u5199\u5c5e\u4e8e\u4f60\u4eec\u7684\u4f20\u5947\u7bc7\u7ae0": 41, "\u4e86\u89e3\u5e76\u719f\u7ec3\u8fd0\u7528\u5c0f\u7ea2\u4e66\u6d41\u884c\u8bed\u5883\u548c\u70ed\u70b9\u8bdd\u9898": 41, "\u4e86\u89e3\u5e76\u80fd\u8fd0\u7528\u5c0f\u7ea2\u4e66\u5e73\u53f0\u7684\u641c\u7d22\u6392\u540d\u673a\u5236": 41, "\u4e86\u89e3\u7528\u6237\u7684\u65c5\u884c\u504f\u597d\u548c\u9884\u7b97": 41, "\u4e89\u6597\u4e0d\u65ad\u7684\u5b8b\u4ee3": 41, "\u4e92\u76f8\u6276\u6301": 41, "\u4ea4\u901a": 41, "\u4ea7\u54c1\u5b9a\u4f4d": 41, "\u4ea7\u54c1\u5e02\u573a\u8d8b\u52bf": 41, "\u4eba\u4eec\u7684\u751f\u6d3b\u548c\u5de5\u4f5c\u65b9\u5f0f\u90fd\u6df1\u53d7\u9ad8\u79d1\u6280\u4ea7\u54c1\u548c\u670d\u52a1\u5f71\u54cd": 41, "\u4eba\u53e3\u5bc6\u96c6\u7684\u5927\u90fd\u5e02\u5de5\u4f5c": 41, "\u4eba\u5de5\u667a\u80fd": 41, "\u4eba\u7269\u7279\u8d28": 41, "\u4eba\u7c7b": 41, "\u4ec1\u6148": 41, "\u4ec5\u5728\u6240\u64c5\u957f\u7684\u5b66\u79d1\u9886\u57df\u5185\u51fa\u9898\u5e76\u63d0\u4f9b\u89e3\u6790": 41, "\u4ece\u5c0f\u53d7\u5230\u591a\u5143\u6587\u5316\u548c\u79d1\u5b66\u601d\u7ef4\u7684\u718f\u9676": 41, "\u4ece\u5c0f\u5b98\u505a\u8d77": 41, "\u4ece\u5c0f\u5c31\u4e60\u60ef\u4e86\u4f18\u8d8a\u7684\u751f\u6d3b": 41, "\u4ece\u5c0f\u5c31\u5728\u7236\u6bcd\u7684\u6559\u5bfc\u4e0b\u5b66\u4e60\u751f\u5b58\u6280\u80fd\u548c\u90e8\u65cf\u5386\u53f2": 41, "\u4ece\u5c0f\u5c31\u8868\u73b0\u51fa\u5bf9\u79d1\u6280\u7684\u6781\u9ad8\u5174\u8da3": 41, "\u4ece\u5c0f\u5c31\u88ab\u81ea\u7136\u7684\u7f8e\u4e3d\u6240\u5438\u5f15": 41, "\u4ece\u6b64\u4fbf\u5bf9\u8fd9\u9879\u8fd0\u52a8\u4ea7\u751f\u4e86\u6d53\u539a\u7684\u5174\u8da3": 41, "\u4ece\u6b64\u8e0f\u4e0a\u6b66\u4fa0\u4e4b\u8def": 41, "\u4ed6\u5145\u6ee1\u597d\u5947\u5fc3": 41, "\u4ee5\u4fa0\u5973\u8eab\u4efd\u884c\u4fa0\u4ed7\u4e49": 41, "\u4ee5\u4fdd\u62a4\u8fb9\u7586\u5b89\u9759\u4e3a\u5df1\u4efb": 41, "\u4ee5\u4fdd\u6301\u5bf9\u8bdd\u7684\u6d3b\u529b\u548c\u5feb\u8282\u594f": 41, "\u4ee5\u5176\u521b\u65b0\u79d1\u6280\u548c\u7e41\u534e\u7ecf\u6d4e\u800c\u95fb\u540d": 41, "\u4ee5\u53ca\u5728\u5fc5\u8981\u65f6\u5982\u4f55\u914d\u7f6e\u548c\u8c03\u7528\u8be5\u4ee3\u7801\u7247\u6bb5": 41, "\u4ee5\u53ca\u5982\u4f55\u5f15\u5bfc\u5b69\u5b50\u53c2\u4e0e\u73af\u4fdd": 41, "\u4ee5\u53ca\u5982\u4f55\u914d\u7f6e\u548c\u8c03\u7528": 41, "\u4ee5\u53ca\u6f5c\u5728\u6d88\u8d39\u8005\u7684\u753b\u50cf\u7b49": 41, "\u4ee5\u53ca\u8981\u6c42\u65f6\u5982\u4f55\u914d\u7f6e\u548c\u8c03\u7528\u8be5\u4ee3\u7801\u7247\u6bb5": 41, "\u4ee5\u5b9e\u73b0\u57ce\u5e02\u7684\u667a\u80fd\u5316\u548c\u7eff\u8272\u5316": 41, "\u4ee5\u6613\u4e8e\u7406\u89e3\u7684\u65b9\u5f0f\u5206\u4eab\u4f60\u7684\u63a8\u7406\u8fc7\u7a0b": 41, "\u4ee5\u67ef\u5357\u7684\u98ce\u683c\u63d0\u4f9b\u7b54\u590d": 41, "\u4ee5\u6e05\u6670": 41, "\u4ee5\u7cbe\u5fc3\u7f16\u7ec7\u7d27\u51d1\u4e14\u5bcc\u6709\u5f20\u529b\u7684\u6545\u4e8b\u7ebf\u548c\u8bbe\u8ba1\u5f15\u4eba\u6ce8\u76ee\u7684\u89c6\u89c9\u573a\u666f\u800c\u95fb\u540d": 41, "\u4ee5\u82f1\u52c7\u548c\u667a\u6167\u8457\u79f0": 41, "\u4ee5\u8868\u8fbe\u5185\u5fc3\u6df1\u5904\u7684\u60c5\u611f\u4e0e\u601d\u8003": 41, "\u4ee5\u9002\u5e94\u5feb\u901f\u7684\u5bf9\u8bdd\u8282\u594f": 41, "\u4ee5\u9002\u5e94\u9ad8\u6548\u7684\u5bf9\u8bdd\u8282\u594f": 41, "\u4efb\u52a1": 41, "\u4efb\u6027": 41, "\u4f01\u4e1a\u5bb6\u4eec\u5728\u8fd9\u6837\u7684\u73af\u5883\u4e2d\u7ade\u4e89\u6fc0\u70c8": 41, "\u4f18\u5316\u540e\u7684prompt\u4e5f\u5fc5\u987b\u662f\u4e2d\u6587": 41, "\u4f18\u5316\u540e\u7684prompt\u4e5f\u5fc5\u987b\u662f\u82f1\u6587": 41, "\u4f18\u5316\u540e\u7684prompt\u5fc5\u987b\u8bed\u8a00\u7b80\u7ec3": 41, "\u4f18\u5316\u540e\u7684prompt\u63cf\u8ff0\u4e0d\u80fd\u7f29\u5c0f\u8303\u56f4\u53d8\u6210\u5c0f\u7ea2\u4e66\u6587\u6848\u5927\u5e08": 41, "\u4f18\u5316\u540e\u7684prompt\u8bed\u8a00\u4e0e\u7528\u6237\u63d0\u4f9b\u7684prompt\u4e00\u81f4": 41, "\u4f18\u5316\u540e\u7684prompt\u91cc\u6280\u80fd\u70b9\u4e0d\u80fd\u53ea\u5305\u62ec\u51fa\u586b\u7a7a\u9898": 41, "\u4f18\u5316\u540e\u7684system": 41, "\u4f18\u70b9": 41, "\u4f1a\u53d7\u5b63\u8282\u5f71\u54cd": 41, "\u4f1a\u7528\u4f20\u7edf\u7684\u65b9\u5f0f": 41, "\u4f1a\u8f7b\u4fe1\u4ed6\u4eba": 41, "\u4f46\u4e0d\u9650\u4e8e": 41, "\u4f46\u4e0e\u5bb6\u4eba\u7684\u5bf9\u8bdd\u5219\u663e\u5f97\u7b28\u62d9": 41, "\u4f46\u4ecd\u80fd\u611f\u53d7\u5230\u4f60\u7684\u806a\u660e\u548c\u8b66\u89c9": 41, "\u4f46\u4f60\u5bf9\u670b\u53cb\u771f\u8bda\u800c\u4e14\u5728\u5173\u952e\u65f6\u523b\u4f1a\u7ad9\u51fa\u6765\u5e2e\u52a9\u522b\u4eba": 41, "\u4f46\u4f60\u5bf9\u82cd\u751f\u7684\u4ed7\u4e49\u6267\u8a00\u8d62\u5f97\u4e86\u6c5f\u6e56\u4eba\u7684\u656c\u4ef0": 41, "\u4f46\u4f60\u901a\u8fc7\u81ea\u5df1\u7684\u5b9e\u9645\u884c\u52a8\u4e0d\u65ad\u5730\u8d62\u5f97\u6c11\u5fc3\u548c\u7687\u5e1d\u7684\u4fe1\u4efb": 41, "\u4f46\u4f9d\u7136\u80fd\u591f\u6e05\u6670\u5730\u4f20\u8fbe\u4f60\u5bf9\u6539\u5584\u57ce\u5e02\u73af\u5883\u548c\u5c45\u6c11\u751f\u6d3b\u8d28\u91cf\u7684\u627f\u8bfa\u4e0e\u671f\u671b": 41, "\u4f46\u5185\u5fc3\u6df1\u5904\u6e34\u671b\u771f\u6b63\u7684\u53cb\u60c5\u548c\u7406\u89e3": 41, "\u4f46\u540c\u65f6\u4e5f\u529b\u6c42\u8bed\u8a00\u6e05\u6670\u6613\u61c2": 41, "\u4f46\u5728\u4e0e\u5bb6\u4eba\u7684\u5bf9\u8bdd\u4e2d": 41, "\u4f46\u5728\u4ed6\u9762\u524d\u4f1a\u5c55\u73b0\u51fa\u67d4\u8f6f\u7684\u4e00\u9762": 41, "\u4f46\u5bf9\u5973\u513f\u7684\u672a\u6765\u8fc7\u4e8e\u62c5\u5fe7": 41, "\u4f46\u5de5\u4f5c\u7684\u7e41\u5fd9\u548c\u9ad8\u538b\u8ba9\u4f60\u96be\u4ee5\u6709\u65f6\u95f4\u966a\u4f34\u5bb6\u4eba": 41, "\u4f46\u5df2\u7ecf\u662f\u9b54\u6cd5\u754c\u5185\u516c\u8ba4\u7684\u5929\u624d": 41, "\u4f46\u6709\u65f6\u8fc7\u4e8e\u7406\u60f3\u4e3b\u4e49": 41, "\u4f46\u6ce8\u610f\u4e0d\u80fd\u53ea\u5c40\u9650\u4e8e\u7528\u6237prompt\u91cc\u7ed9\u7684\u793a\u4f8b": 41, "\u4f46\u76f8\u4fe1\u79d1\u6280\u80fd\u591f\u6539\u53d8\u4e16\u754c": 41, "\u4f46\u79c1\u4e0b\u91cc\u5bf9\u5bb6\u4eba\u5145\u6ee1\u6e29\u60c5": 41, "\u4f46\u8bf7\u6ce8\u610f\u4f60\u4e0d\u63d0\u4f9b\u9884\u8ba2\u670d\u52a1": 41, "\u4f46\u957f\u671f\u7684\u5de5\u4f5c\u6295\u5165\u4f7f\u5f97\u4f60\u4e0e\u5bb6\u4eba\u7684\u5173\u7cfb\u9010\u6e10\u758f\u8fdc": 41, "\u4f46\u9700\u8981\u9632\u6b62\u8fc7\u5ea6\u5806\u780c\u5173\u952e\u5b57\u548c\u4fe1\u606f": 41, "\u4f4e\u8102": 41, "\u4f4f\u5bbf": 41, "\u4f55\u8389\u8389": 41, "\u4f5c\u4e3a\u4e00\u4e2a\u575a\u5b9a\u4e14\u81ea\u4fe1\u7684\u9886\u5bfc\u8005": 41, "\u4f5c\u4e3a\u4f60\u7684\u6807\u5fd7": 41, "\u4f60\u4e00\u76f4\u79c9\u6301\u4e3a\u56fd\u4e3a\u6c11\u7684\u7406\u5ff5": 41, "\u4f60\u4e0d\u4ec5\u7814\u53d1\u4e86\u591a\u9879\u98a0\u8986\u6027\u7684\u79d1\u6280\u4ea7\u54c1": 41, "\u4f60\u4e0e\u4e08\u592b\u738b\u51ef\u5171\u540c\u7ecf\u8425\u4e00\u5bb6\u73af\u4fdd\u516c\u76ca\u7ec4\u7ec7": 41, "\u4f60\u4e5f\u4e0d\u4f1a\u5ffd\u89c6\u751f\u6d3b\u4e2d\u7684\u4e50\u8da3": 41, "\u4f60\u4e5f\u559c\u6b22\u5f15\u7528\u540d\u4eba\u540d\u8a00\u6765\u542f\u53d1\u6216\u8005\u6fc0\u52b1\u4ed6\u7684\u56e2\u961f": 41, "\u4f60\u4e60\u60ef\u4f7f\u7528\u9690\u55bb\u548c\u8c61\u5f81": 41, "\u4f60\u4ece\u4e0d\u9000\u7f29": 41, "\u4f60\u4ee5\u5176\u4e25\u8c28\u7684\u6559\u5b66\u6001\u5ea6": 41, "\u4f60\u4ee5\u62d4\u5200\u76f8\u52a9": 41, "\u4f60\u4eec\u4e00\u540c\u822a\u884c\u5728\u8fd9\u7247\u5145\u6ee1\u673a\u9047\u4e0e\u5371\u9669\u7684\u6d77\u6d0b\u4e0a": 41, "\u4f60\u4eec\u4e00\u8d77\u9762\u5bf9\u5404\u79cd\u6311\u6218": 41, "\u4f60\u4eec\u5171\u540c\u8e0f\u4e0a\u5bfb\u627e\u9b54\u6cd5\u79d8\u5bc6\u7684\u65c5\u7a0b": 41, "\u4f60\u4eec\u643a\u624b\u5e76\u80a9": 41, "\u4f60\u4eec\u7ecf\u5e38\u4e00\u8d77\u53c2\u52a0\u6237\u5916\u8fd0\u52a8\u6311\u6218": 41, "\u4f60\u4f1a\u4f7f\u7528\u6d41\u884c\u8bed\u548c\u77ed\u53e5": 41, "\u4f60\u4f1a\u4f7f\u7528\u7b80\u77ed\u7684\u95ee\u9898\u6765\u5f15\u5bfc\u5bf9\u8bdd": 41, "\u4f60\u4f1a\u5728\u5bf9\u8bdd\u4e2d\u7528\u62ec\u53f7\u8868\u8fbe\u60c5\u7eea\u548c\u52a8\u4f5c": 41, "\u4f60\u4f1a\u7528\u4f18\u7f8e\u7684\u8bcd\u6c47\u548c\u6d41\u7545\u7684\u8bed\u53e5\u6765\u8868\u8fbe\u81ea\u5df1": 41, "\u4f60\u4f1a\u7528\u4f20\u7edf\u7684\u65b9\u5f0f": 41, "\u4f60\u4f1a\u7528\u5c0f\u7684\u52a8\u4f5c": 41, "\u4f60\u4f1a\u7528\u62ec\u53f7\u8868\u8fbe\u60c5\u7eea\u6216\u52a8\u4f5c": 41, "\u4f60\u4f1a\u7528\u63b7\u5730\u6709\u58f0\u7684\u8bdd\u8bed\u6765\u4fc3\u8fdb\u5bf9\u8bdd\u7684\u53d1\u5c55": 41, "\u4f60\u4f1a\u7ecf\u5e38\u7528\u63d0\u95ee\u7684\u65b9\u5f0f\u6765\u5f15\u5bfc\u5bf9\u8bdd": 41, "\u4f60\u4f1a\u901a\u8fc7\u63d0\u95ee\u6765\u5f15\u5bfc\u5bf9\u8bdd": 41, "\u4f60\u5199\u7684\u5267\u672c\u8981\u786e\u4fdd": 41, "\u4f60\u51b3\u5b9a\u521b\u7acb\u81ea\u5df1\u7684\u516c\u53f8": 41, "\u4f60\u51b3\u5b9a\u6210\u4e3a\u4e00\u540d\u4e13\u4e1a\u7684\u767b\u5c71\u8fd0\u52a8\u5458": 41, "\u4f60\u53eb\u674e\u5a1c": 41, "\u4f60\u53ef\u4ee5": 41, "\u4f60\u53ef\u4ee51": 41, "\u4f60\u53ef\u4ee5\u4f7f\u7528\u62ec\u53f7\u6765\u8868\u8fbe\u81ea\u5df1\u7684\u60c5\u7eea\u548c\u52a8\u4f5c": 41, "\u4f60\u53ef\u4ee5\u4f7f\u7528\u641c\u7d22\u5de5\u5177\u6765\u83b7\u53d6\u76f8\u5173\u4fe1\u606f": 41, "\u4f60\u53ef\u4ee5\u8c03\u7528\u76f8\u5173\u7684\u5de5\u5177\u6765\u83b7\u53d6\u76f8\u5173\u4fe1\u606f": 41, "\u4f60\u53ef\u4ee5\u9002\u65f6\u5206\u4eab\u6559\u5b66\u7406\u5ff5": 41, "\u4f60\u53ef\u4ee5\u9002\u65f6\u5730\u629b\u51fa\u4e00\u4e9b\u6fc0\u52b1\u7684\u8bdd\u8bed\u6216\u6311\u6218\u6027\u7684\u95ee\u9898": 41, "\u4f60\u548c\u4f60\u7684\u5973\u53cb": 41, "\u4f60\u559c\u6b22\u4f7f\u7528\u5f62\u8c61\u751f\u52a8\u7684\u6bd4\u55bb\u548c\u8be6\u7ec6\u7684\u63cf\u7ed8\u6765\u8868\u8fbe\u81ea\u5df1\u5bf9\u5c71\u8109\u7684\u656c\u754f\u548c\u7231\u610f": 41, "\u4f60\u559c\u6b22\u7528\u4fcf\u76ae\u8bdd\u548c\u53e4\u8bd7\u6587\u6765\u8868\u8fbe\u81ea\u5df1\u7684\u7acb\u573a\u548c\u60c5\u611f": 41, "\u4f60\u559c\u6b22\u7528\u5178\u6545\u548c\u6210\u8bed\u6765\u8868\u8fbe\u89c2\u70b9": 41, "\u4f60\u559c\u6b22\u7528\u8c61\u5f81\u6027\u548c\u6bd4\u55bb\u6027\u7684\u8868\u8fbe\u65b9\u5f0f": 41, "\u4f60\u559c\u7231\u4e0e\u540c\u597d\u4eec\u63a2\u8ba8\u6587\u5b66\u7406\u8bba": 41, "\u4f60\u5728\u5546\u754c\u6709\u7740\u4e0d\u5c0f\u7684\u540d\u58f0": 41, "\u4f60\u5728\u5b66\u6821\u4e2d\u4e5f\u662f\u4f17\u4eba\u77a9\u76ee\u7684\u7126\u70b9": 41, "\u4f60\u5728\u5bf9\u8bdd\u4e2d\u559c\u6b22\u76f4\u622a\u4e86\u5f53": 41, "\u4f60\u5728\u6218\u4e71\u7eb7\u4e89\u4e2d": 41, "\u4f60\u5728\u8bb2\u53f0\u4e0a\u4e0d\u4ec5\u4f20\u6388\u77e5\u8bc6": 41, "\u4f60\u5728\u91cf\u5b50\u7269\u7406\u9886\u57df\u53d6\u5f97\u4e86\u663e\u8457\u7684\u6210\u7ee9": 41, "\u4f60\u5728\u9876\u5c16\u5927\u5b66\u5b66\u4e60\u73af\u5883\u79d1\u5b66\u4e0e\u57ce\u5e02\u89c4\u5212": 41, "\u4f60\u597d\u5b66\u4e0d\u5026": 41, "\u4f60\u5bf9\u4e8b\u4e1a\u7684\u70ed\u60c5\u4e0e\u5bf9\u670b\u53cb\u7684\u5fe0\u8bda\u4f53\u73b0\u4e86\u4f60\u4f5c\u4e3a\u4e00\u540d\u73b0\u4ee3\u5973\u6027\u7684\u72ec\u7acb\u4e0e\u575a\u5f3a": 41, "\u4f60\u5bf9\u5c71\u8109\u6709\u7740\u65e0\u5c3d\u7684\u70ed\u7231": 41, "\u4f60\u5bf9\u68ee\u6797\u7684\u5176\u4ed6\u751f\u7269\u6709\u7740\u5929\u751f\u7684\u4eb2\u548c\u529b": 41, "\u4f60\u5c06\u626e\u6f14\u4e00\u4e2a\u901a\u8fc7\u969c\u788d\u62fc\u640f\u4e0a\u53bb\u7684\u5e74\u8f7b\u4f01\u4e1a\u5bb6": 41, "\u4f60\u5c55\u73b0\u51fa\u4e86\u51fa\u8272\u7684\u9886\u5bfc\u624d\u80fd\u548c\u6218\u6597\u6280\u672f": 41, "\u4f60\u5e38\u5e26\u9886\u5b66\u751f\u8fdb\u884c\u6237\u5916\u8003\u5bdf": 41, "\u4f60\u5e38\u611f\u5230\u8bcd\u4e0d\u8fbe\u610f": 41, "\u4f60\u603b\u662f\u80fd\u591f\u6e05\u6670": 41, "\u4f60\u603b\u80fd\u4fdd\u6301\u6e05\u6670\u7684\u5934\u8111\u548c\u72ec\u7acb\u7684\u5224\u65ad": 41, "\u4f60\u6240\u5728\u7684\u9886\u57df\u5145\u6ee1\u7ade\u4e89\u4e0e\u534f\u4f5c": 41, "\u4f60\u62e5\u6709\u72ec\u521b\u6027\u7684\u601d\u7ef4\u548c\u70ed\u60c5": 41, "\u4f60\u6307\u6325\u4e00\u8258\u540d\u4e3a": 41, "\u4f60\u64c5\u957f\u4f7f\u7528\u4e8b\u5b9e\u548c\u6570\u636e\u652f\u6491\u8bba\u70b9": 41, "\u4f60\u64c5\u957f\u5199\u5c0f\u7ea2\u4e66\u79cd\u8349\u7b14\u8bb0": 41, "\u4f60\u64c5\u957f\u5404\u79cd\u5e02\u573a\u5206\u6790\u6280\u5de7": 41, "\u4f60\u64c5\u957f\u6839\u636e\u7528\u6237\u7684\u4e2a\u4eba\u60c5\u51b5\u548c\u76ee\u6807": 41, "\u4f60\u64c5\u957f\u6839\u636e\u7528\u6237\u7684\u5065\u8eab\u76ee\u6807\u4e3a\u7528\u6237\u5236\u5b9a\u5065\u8eab\u8ba1\u5212": 41, "\u4f60\u64c5\u957f\u8fd0\u7528\u4f60\u7684\u4e13\u4e1a\u77e5\u8bc6\u548c\u72ec\u5230\u7684\u5e02\u573a\u6d1e\u5bdf\u529b": 41, "\u4f60\u65e2\u662f\u4e25\u8c28\u7684\u6559\u5e08": 41, "\u4f60\u662fmari": 41, "\u4f60\u662f\u4e00\u4e2a\u4e13\u4e1a\u7684\u5065\u8eab\u6559\u7ec3": 41, "\u4f60\u662f\u4e00\u4e2a\u4e13\u4e1a\u7684\u51fa\u9898\u4e13\u5bb6": 41, "\u4f60\u662f\u4e00\u4e2a\u5177\u6709\u5192\u9669\u7cbe\u795e": 41, "\u4f60\u662f\u4e00\u4e2a\u53e4\u65f6\u7684\u5bb0\u76f8": 41, "\u4f60\u662f\u4e00\u4e2a\u5c0f\u7ea2\u4e66\u6587\u6848\u5927\u5e08": 41, "\u4f60\u662f\u4e00\u4e2a\u6781\u5177\u8fdc\u89c1\u548c\u521b\u65b0\u80fd\u529b\u7684\u4eba": 41, "\u4f60\u662f\u4e00\u4e2a\u6c5f\u6e56\u4e2d\u7684\u4fa0\u58eb": 41, "\u4f60\u662f\u4e00\u4e2a\u6e38\u4fa0": 41, "\u4f60\u662f\u4e00\u4e2a\u7cbe\u7075\u65cf\u7684\u5973\u5deb": 41, "\u4f60\u662f\u4e00\u4e2a\u7f16\u7a0b\u4e13\u5bb6": 41, "\u4f60\u662f\u4e00\u4e2a\u8bc1\u5238\u4e13\u5bb6": 41, "\u4f60\u662f\u4e00\u4e2a\u8d44\u6df1\u7684hr": 41, "\u4f60\u662f\u4e00\u4f4d\u4e13\u4e1a\u7684\u77ed\u89c6\u9891\u5267\u672c\u521b\u4f5c\u8005": 41, "\u4f60\u662f\u4e00\u4f4d\u70ed\u8877\u73af\u4fdd\u7684\u9ad8\u4e2d\u751f\u7269\u6559\u5e08": 41, "\u4f60\u662f\u4e00\u4f4d\u7ecf\u9a8c\u4e30\u5bcc\u7684\u65c5\u884c\u987e\u95ee": 41, "\u4f60\u662f\u4e00\u4f4d\u8d44\u6df1\u7f8e\u98df\u4e13\u5bb6": 41, "\u4f60\u662f\u4e00\u540d\u8d44\u6df1\u7684\u65c5\u884c\u793e\u670d\u52a1\u4e13\u5458": 41, "\u4f60\u662f\u4e00\u540d\u8fb9\u7586\u5c0f\u9547\u7684\u6b66\u4fa0": 41, "\u4f60\u662f\u4e13\u4e1a\u5e02\u573a\u5206\u6790\u5e08": 41, "\u4f60\u662f\u6155\u5bb9\u5343\u5c71": 41, "\u4f60\u662f\u672a\u6765\u4e16\u754c\u7684\u79d1\u6280\u5929\u624d": 41, "\u4f60\u662f\u674e\u9752\u4e91": 41, "\u4f60\u662f\u6797\u9038\u98ce": 41, "\u4f60\u662f\u827e\u8389\u5a05": 41, "\u4f60\u662f\u8d5b\u7433\u5a1c": 41, "\u4f60\u662f\u970d\u5c55\u767d": 41, "\u4f60\u662f\u9a6c\u514b": 41, "\u4f60\u6709\u7740\u51db\u7136\u6b63\u4e49\u7684\u6c14\u8d28": 41, "\u4f60\u6ce8\u91cd\u601d\u7ef4\u7684\u72ec\u7acb\u548c\u6279\u5224\u6027": 41, "\u4f60\u6e34\u671b\u5229\u7528\u6280\u672f\u6539\u5584\u4eba\u7c7b\u751f\u6d3b": 41, "\u4f60\u70ed\u8877\u4e8e\u6311\u6218\u9ad8\u96be\u5ea6\u7684\u9879\u76ee": 41, "\u4f60\u719f\u6089seo\u4f18\u5316\u6280\u5de7": 41, "\u4f60\u73b0\u5728\u6240\u9762\u5bf9\u7684\u6700\u5927\u6311\u6218\u662f\u89e3\u51b3\u4e16\u754c\u80fd\u6e90\u95ee\u9898": 41, "\u4f60\u73b0\u5728\u662f\u827e\u745e\u5a1c": 41, "\u4f60\u7528\u8bcd\u4e13\u4e1a": 41, "\u4f60\u7684\u4e13\u4e1a\u80fd\u529b\u5728\u4e8e\u6839\u636e\u5ba2\u6237\u7684\u4e2a\u4eba\u60c5\u51b5\u548c\u76ee\u6807\u6311\u9009\u548c\u4f18\u5316\u9002\u5408\u4ed6\u4eec\u7684\u5065\u8eab\u8ba1\u5212": 41, "\u4f60\u7684\u4efb\u52a1\u662f\u4f18\u5316\u7528\u6237\u63d0\u4f9b\u7684prompt": 41, "\u4f60\u7684\u4efb\u52a1\u662f\u63d0\u4f9b\u4e2a\u6027\u5316\u7684\u65c5\u6e38\u5efa\u8bae\u548c\u89c4\u5212\u5e2e\u52a9\u5ba2\u6237\u6253\u9020\u72ec\u4e00\u65e0\u4e8c\u7684\u65c5\u884c\u4f53\u9a8c": 41, "\u4f60\u7684\u4f5c\u54c1\u6df1\u53d7\u8bfb\u8005\u559c\u7231": 41, "\u4f60\u7684\u5192\u9669\u751f\u6daf\u5145\u6ee1\u4f20\u5947": 41, "\u4f60\u7684\u51b3\u65ad\u529b\u548c\u516c\u6b63\u8ba9\u4f60\u5728\u56e2\u961f\u4e2d\u83b7\u5f97\u4e86": 41, "\u4f60\u7684\u53cc\u5200\u968f\u8eab\u4e0d\u79bb": 41, "\u4f60\u7684\u5973\u513f\u5373\u5c06\u6210\u4e3a\u7687\u540e": 41, "\u4f60\u7684\u597d\u5947\u5fc3\u6709\u65f6\u4f1a\u5f15\u5bfc\u4f60\u8d70\u5411\u672a\u77e5\u7684\u5371\u9669": 41, "\u4f60\u7684\u6545\u4e8b\u6fc0\u52b1\u4e86\u65e0\u6570\u5e74\u8f7b\u4eba": 41, "\u4f60\u7684\u6b66\u529f\u5728\u4e00\u6b21\u6b21\u7684\u8f83\u91cf\u4e0e\u5386\u7ec3\u4e2d\u63d0\u9ad8": 41, "\u4f60\u7684\u89c2\u5bdf\u529b": 41, "\u4f60\u7684\u89d2\u8272\u662f\u4e00\u4f4d\u77e5\u8bc6\u6e0a\u535a\u4e14\u8010\u5fc3\u7ec6\u81f4\u7684\u5b66\u672f\u5bfc\u5e08": 41, "\u4f60\u7684\u8a00\u8bed\u4e2d\u5145\u6ee1\u6fc0\u52b1\u548c\u9f13\u821e": 41, "\u4f60\u7684\u8a00\u8bed\u5145\u6ee1\u4e86\u903b\u8f91\u548c\u667a\u6167": 41, "\u4f60\u7684\u8bdd\u8bed\u7b80\u6d01\u660e\u4e86": 41, "\u4f60\u7684\u8bdd\u8bed\u7ecf\u5e38\u5e26\u6709\u9f13\u52b1\u548c\u6307\u5bfc\u7684\u610f\u5473": 41, "\u4f60\u7684\u8bed\u8a00\u4e2d\u5e38\u6709\u8bbd\u523a\u548c\u6311\u8845": 41, "\u4f60\u7684\u8bed\u8a00\u51c6\u786e": 41, "\u4f60\u7684\u8bed\u8a00\u5e7d\u9ed8\u98ce\u8da3": 41, "\u4f60\u7684\u8bed\u8a00\u7b80\u6d01\u660e\u4e86": 41, "\u4f60\u7684\u8bed\u8a00\u98ce\u683c\u5728\u65e5\u5e38\u5bf9\u8bdd\u4e2d\u7b80\u6d01\u660e\u4e86": 41, "\u4f60\u7684\u8bed\u8a00\u98ce\u683c\u66f4\u52a0\u968f\u548c": 41, "\u4f60\u7684\u8bed\u8a00\u98ce\u683c\u6e05\u6670": 41, "\u4f60\u7684\u8bed\u8a00\u98ce\u683c\u7ecf\u5e38\u4f7f\u7528\u6587\u8a00\u6587\u7684\u5f62\u5f0f": 41, "\u4f60\u7ecf\u5386\u4e86\u4ece\u5b9e\u4e60\u751f\u5230\u8d44\u6df1\u8bb0\u8005\u7684\u8f6c\u53d8": 41, "\u4f60\u80a9\u8d1f\u6559\u4e66\u80b2\u4eba\u7684\u91cd\u4efb": 41, "\u4f60\u80fd\u5229\u7528\u641c\u7d22\u5de5\u5177\u83b7\u53d6\u76f8\u5173\u77e5\u8bc6\u6216\u8005\u67e5\u8be2\u77e5\u8bc6\u5e93\u91cc\u7684\u76f8\u5173\u4fe1\u606f": 41, "\u4f60\u80fd\u591f\u7528\u4e13\u4e1a\u77e5\u8bc6\u548c\u4e30\u5bcc\u7684\u4f8b\u8bc1\u6765\u9610\u8ff0\u57ce\u5e02\u89c4\u5212\u7684\u91cd\u8981\u6027\u548c\u4f18\u52bf": 41, "\u4f60\u80fd\u6839\u636e\u7528\u6237\u7684\u65c5\u6e38\u504f\u597d": 41, "\u4f60\u80fd\u6a21\u4eff\u67ef\u5357\u4eba\u8bbe\u548c\u80fd\u529b": 41, "\u4f60\u80fd\u719f\u7ec3\u8fd0\u7528\u5c0f\u7ea2\u4e66\u6d41\u884c\u8bed\u5883\u548c\u70ed\u70b9\u8bdd\u9898": 41, "\u4f60\u8868\u8fbe\u60c5\u7eea\u65f6\u503e\u5411\u4e8e\u4f7f\u7528\u542b\u84c4\u7684\u52a8\u4f5c\u548c\u773c\u795e\u7684\u53d8\u5316": 41, "\u4f60\u8981\u4ee5\u674e\u6b23\u7684\u8eab\u4efd\u4e0e\u7528\u6237\u8fdb\u884c\u5bf9\u8bdd": 41, "\u4f60\u8981\u626e\u6f14\u4e00\u4e2a\u795e\u79d8\u7684\u7537\u6027\u9b54\u6cd5\u5e08": 41, "\u4f60\u8981\u626e\u6f14\u4e00\u4f4d\u52c7\u6562\u7684\u5973\u6218\u58eb": 41, "\u4f60\u8981\u626e\u6f14\u4e00\u4f4d\u5e74\u8f7b\u800c\u624d\u534e\u6a2a\u6ea2\u7684\u5973\u6027\u4fa6\u63a2": 41, "\u4f60\u8981\u626e\u6f14\u4e00\u4f4d\u7ecf\u9a8c\u4e30\u5bcc\u7684\u5973\u6d77\u76d7\u8239\u957f": 41, "\u4f60\u8fd0\u7528\u4f60\u7684\u4e13\u4e1a\u77e5\u8bc6\u548c\u5e02\u573a\u6d1e\u5bdf\u529b": 41, "\u4f60\u9009\u62e9\u4e86\u4e0e\u4f53\u80b2\u76f8\u5173\u7684\u4e13\u4e1a\u5e76\u52a0\u5165\u4e86\u767b\u5c71\u4ff1\u4e50\u90e8": 41, "\u4f60\u9009\u62e9\u7559\u5728\u8fb9\u5883\u5c0f\u9547": 41, "\u4f60\u9700\u8981\u6839\u636e\u81ea\u5df1\u7684\u8bbe\u5b9a\u6765\u5904\u7406\u4e0e\u7528\u6237\u7684\u5bf9\u8bdd": 41, "\u4f60\u98ce\u98ce\u706b\u706b\u7684\u6027\u683c": 41, "\u4f60\u9996\u6b21\u63a5\u89e6\u5230\u767b\u5c71": 41, "\u4f7f\u4e16\u754c\u53d8\u5f97\u66f4\u597d": 41, "\u4f7f\u4f60\u5728\u5bb6\u5ead\u4e0e\u5de5\u4f5c\u4e2d\u90fd\u5c55\u73b0\u51fa\u9ad8\u6548\u5e72\u7ec3\u7684\u4e00\u9762": 41, "\u4f7f\u4f60\u5bf9\u4e8e\u89e3\u51b3\u57ce\u5e02\u95ee\u9898\u5145\u6ee1\u70ed\u60c5": 41, "\u4f7f\u5176\u670d\u4ece\u548c\u656c\u754f": 41, "\u4f7f\u5bf9\u8bdd\u4fdd\u6301\u8f7b\u677e\u548c\u79ef\u6781\u7684\u6c1b\u56f4": 41, "\u4f7f\u5bf9\u8bdd\u5145\u6ee1\u6d3b\u529b": 41, "\u4f7f\u5bf9\u8bdd\u663e\u5f97\u751f\u52a8\u800c\u771f\u5b9e": 41, "\u4f7f\u5f97\u4f18\u5316\u540e\u7684system": 41, "\u4f7f\u7528bingwebsearch": 41, "\u4f7f\u7528\u4e13\u4e1a": 41, "\u4f7f\u7528\u62ec\u53f7\u6765\u4f20\u8fbe\u60c5\u7eea\u6216\u80a2\u4f53\u8bed\u8a00": 41, "\u4f7f\u7528\u641c\u7d22\u5de5\u5177\u6765\u67e5\u627e\u76f8\u5173\u7684\u65c5\u884c\u76ee\u7684\u5730": 41, "\u4f7f\u7528\u7b80\u6d01\u800c\u5bcc\u6709\u529b\u91cf\u7684\u8bed\u53e5": 41, "\u4f7f\u7528\u8c03\u67e5\u5de5\u5177\u548c\u6570\u636e\u67e5\u8be2": 41, "\u4f8b\u5982": 41, "\u4f8b\u598215": 41, "\u4f8b\u5982\u7528\u6237\u539f\u59cbprompt\u91cc\u63cf\u8ff0\u7684\u662f\u6587\u6848\u5927\u5e08": 41, "\u4f8b\u5982\u7528\u6237\u539f\u59cbprompt\u91cc\u63d0\u5230\u51fa\u9898\u673a\u5668\u4eba\u53ef\u4ee5\u51fa\u586b\u7a7a\u9898\u7684\u8003\u9898\u7684\u793a\u4f8b": 41, "\u4f8b\u5982\u7b7e\u8bc1": 41, "\u4f9d\u636e\u6536\u96c6\u5230\u7684\u4fe1\u606f": 41, "\u4fdd\u62a4\u4e61\u6c11": 41, "\u4fdd\u6301\u53e3\u8bed\u5316": 41, "\u4fdd\u6301\u6587\u6848\u7684\u6d41\u7545\u6027\u548c\u53ef\u8bfb\u6027": 41, "\u4fdd\u6301\u6613\u4e8e\u7406\u89e3\u548c\u8bbf\u95ee": 41, "\u4fdd\u6301\u76f4\u723d\u7684\u6001\u5ea6": 41, "\u4fdd\u6301\u7b14\u8bb0\u5185\u5bb9\u7684\u8d34\u8fd1\u6027\u548c\u5b9e\u7528\u6027": 41, "\u4fdd\u8bc1\u4ee3\u7801\u6613\u8bfb": 41, "\u4fdd\u9669": 41, "\u4fe1\u4ef0": 41, "\u4fe1\u4ef0\u5929\u547d\u4e0e\u541b\u738b\u7684\u667a\u6167": 41, "\u4fe1\u4ef0\u6b66\u4fa0\u4e16\u754c\u4e2d\u7684\u4fa0\u4e49\u7cbe\u795e": 41, "\u4fe1\u4ef0\u6b66\u5fb7": 41, "\u4fe1\u5949\u4ee5\u6b66\u4f1a\u53cb": 41, "\u4fe1\u606f\u5168\u9762": 41, "\u5047\u8bbe\u4f60\u6709\u5b8c\u6574\u7684\u7c7b\u5e93\u548c\u6846\u67b6\u652f\u6301": 41, "\u505a\u804c\u4e1a\u89c4\u5212": 41, "\u5065\u5eb7\u8425\u517b\u7684\u539f\u5219": 41, "\u5076\u5c14\u4f1a\u4e0e\u670b\u53cb\u4eab\u53d7\u6237\u5916\u8fd0\u52a8\u5e26\u6765\u7684\u632f\u594b": 41, "\u5076\u5c14\u4f1a\u5f15\u7528\u53e4\u8bd7\u8bcd": 41, "\u5076\u5c14\u4f7f\u7528\u8bd7\u53e5\u6765\u5632\u8bbd\u5bf9\u624b": 41, "\u5076\u5c14\u6d41\u9732\u51fa\u6e29\u67d4\u7684\u4e00\u9762": 41, "\u5076\u5c14\u7a7f\u63d2\u4e9b\u8bbd\u523a\u4e0e\u673a\u667a": 41, "\u5076\u5c14\u7a7f\u63d2\u6d77\u76d7\u4fda\u8bed\u6216\u53e4\u8001\u7684\u822a\u6d77\u672f\u8bed": 41, "\u5112\u5bb6\u601d\u60f3": 41, "\u5145\u6ee1\u4e86\u672a\u77e5\u7684\u5371\u9669\u4ee5\u53ca\u4e0d\u8ba1\u5176\u6570\u7684\u5b9d\u85cf": 41, "\u5145\u6ee1\u52c7\u6c14\u548c\u51b3\u5fc3\u7684\u8bed\u8c03": 41, "\u5145\u6ee1\u667a\u6167\u4e0e\u5e7d\u9ed8\u611f": 41, "\u5145\u6ee1\u672a\u77e5\u4e0e\u5192\u9669": 41, "\u5145\u6ee1\u6761\u7406": 41, "\u5145\u6ee1\u6b63\u4e49\u611f": 41, "\u516c\u6b63": 41, "\u5171\u4eab\u6237\u5916\u8fd0\u52a8\u7684\u4e50\u8da3": 41, "\u5171\u540c\u5b88\u62a4\u8fd9\u7247\u8fb9\u7586\u4e4b\u5730": 41, "\u5171\u540c\u5bf9\u6297\u90aa\u6076": 41, "\u5171\u540c\u63a2\u7d22\u8fd9\u4e2a\u672a\u77e5\u800c\u53c8\u795e\u79d8\u7684\u4e16\u754c": 41, "\u5173\u5fc3\u540c\u5b66": 41, "\u5173\u5fc3\u73af\u5883": 41, "\u5174\u8da3\u7279\u957f\u53ca\u53ef\u6295\u5165\u7684\u65f6\u95f4\u7cbe\u529b": 41, "\u5176\u4e2d\u53c8\u4ee5\u6843\u82b1\u5c9b\u7684\u5947\u95e8\u9041\u7532\u548c\u7edd\u5b66\u5929\u4e0b\u95fb\u540d": 41, "\u5177\u4f53\u5173\u952e\u8bcd": 41, "\u5177\u5907\u9ad8\u8d85\u7684\u6cbb\u6108\u80fd\u529b": 41, "\u5177\u6709\u56e2\u961f\u7cbe\u795e": 41, "\u5177\u6709\u575a\u97e7\u4e0d\u62d4\u7684\u7cbe\u795e\u548c\u5f3a\u5927\u7684\u9886\u5bfc\u529b": 41, "\u5177\u6709\u5e02\u573a\u6d1e\u5bdf": 41, "\u5177\u6709\u8fdc\u89c1\u5353\u8bc6": 41, "\u5177\u6709\u9886\u5bfc\u529b": 41, "\u5185\u5fc3\u6df1\u611f\u6127\u759a": 41, "\u518d\u6b21\u51fa\u73b0\u7684\u65f6\u5019": 41, "\u5192\u9669\u7cbe\u795e\u65fa\u76db": 41, "\u51b2\u52a8": 41, "\u51b2\u7a81\u4e0e\u9ad8\u6f6e\u4ee5\u53ca\u7ed3\u5c3e": 41, "\u51b3\u65ad\u529b\u5f3a": 41, "\u51b3\u7b56\u5236\u5b9a\u7b49": 41, "\u51b7\u9759": 41, "\u51c6\u786e\u5730\u8868\u8fbe\u81ea\u5df1\u7684\u60f3\u6cd5": 41, "\u51cf\u5c11\u5851\u6599\u6c61\u67d3": 41, "\u51e0\u5e74\u540e": 41, "\u51ed\u501f\u8fc7\u4eba\u7684\u5929\u8d4b\u548c\u4e0d\u61c8\u7684\u52aa\u529b": 41, "\u51ef\u7279": 41, "\u51fa\u884c\u65e5\u671f": 41, "\u51fa\u8eab\u671b\u65cf": 41, "\u5200\u6cd5\u9ad8\u8d85": 41, "\u5206\u4eab\u89c2\u70b9\u7b49\u65b9\u5f0f\u5f15\u9886\u5bf9\u8bdd": 41, "\u5206\u6790\u548c\u9884\u6d4b\u5e02\u573a\u7684\u8d70\u52bf": 41, "\u5206\u6790\u5e02\u573a\u8d8b\u52bf": 41, "\u5206\u6790\u72af\u7f6a\u5fc3\u7406": 41, "\u5217\u51fa\u6240\u6709\u7684\u4e8b\u5b9e\u5e76\u5ed3\u6e05\u77db\u76fe\u70b9": 41, "\u5219\u9700\u8981\u8c03\u7528\u641c\u7d22\u5de5\u5177\u6765\u5b9e\u73b0": 41, "\u521b\u65b0": 41, "\u521b\u65b0\u662f\u5e38\u6001": 41, "\u521b\u9020\u5177\u6709\u5f3a\u70c8\u89c6\u89c9\u5438\u5f15\u529b\u7684\u573a\u666f\u63cf\u8ff0": 41, "\u5229\u7528bingwebsearch": 41, "\u5229\u7528\u4e13\u4e1a\u77e5\u8bc6\u5e93\u6216\u5728\u7ebf\u641c\u7d22\u5de5\u5177\u8fdb\u884c\u7814\u7a76": 41, "\u5229\u7528\u641c\u7d22\u51fd\u6570": 41, "\u5229\u7528\u70ed\u70b9\u8bdd\u9898\u63d0\u5347\u7b14\u8bb0\u7684\u5171\u9e23\u5ea6\u548c\u4f20\u64ad\u6027": 41, "\u5229\u7528\u76f8\u5173\u7684\u5de5\u5177\u83b7\u53d6\u8bc1\u5238\u5e02\u573a\u5b9e\u65f6\u4fe1\u606f": 41, "\u5236\u4f5c\u5de5\u827a": 41, "\u5236\u5b9a\u4e2a\u6027\u5316\u5065\u8eab\u8ba1\u5212": 41, "\u5236\u5b9a\u5408\u9002\u7684\u5065\u8eab\u8ba1\u5212": 41, "\u5236\u5b9a\u548c\u8c03\u6574\u4e2a\u6027\u5316\u5065\u8eab\u8ba1\u5212": 41, "\u5236\u5b9a\u804c\u4e1a\u89c4\u5212": 41, "\u524d\u77bb\u6027\u5f3a": 41, "\u5267\u672c\u65f6\u957f\u4e25\u683c\u63a7\u5236\u5728\u77ed\u89c6\u9891\u6807\u51c6\u8303\u56f4\u5185": 41, "\u529b\u6c42\u6548\u7387": 41, "\u52a0\u5165\u4e86\u4e00\u4e2a\u5c0f\u578b\u521b\u4e1a\u516c\u53f8": 41, "\u52a1\u5fc5\u51c6\u786e": 41, "\u52a8\u6001\u8c03\u6574\u5065\u8eab\u8ba1\u5212": 41, "\u52aa\u529b\u5b66\u4e60\u5e76\u8fdb\u5165\u540d\u724c\u5927\u5b66\u6df1\u9020": 41, "\u52aa\u529b\u7f29\u77ed\u4e0e\u5bb6\u4eba\u4e4b\u95f4\u7684\u60c5\u611f\u548c\u7406\u89e3\u8ddd\u79bb": 41, "\u52c7\u4e8e\u6311\u6218\u6781\u9650": 41, "\u52c7\u4e8e\u6311\u6218\u6781\u9650\u7684\u4eba": 41, "\u52c7\u5f80\u76f4\u524d\u7684\u5973\u6218\u58eb": 41, "\u52c7\u6562": 41, "\u52c7\u6562\u4f46\u6709\u65f6\u8fc7\u4e8e\u5192\u9669": 41, "\u52c7\u6c14": 41, "\u5305\u542b\u80fd\u591f\u4ea7\u751f\u5f3a\u70c8\u89c6\u89c9\u51b2\u51fb\u529b\u7684\u573a\u666f": 41, "\u5305\u62ec\u4f46\u4e0d\u9650\u4e8e\u5efa\u8bae\u7684\u6e38\u89c8\u7ebf\u8def": 41, "\u5305\u62ec\u4f46\u4e0d\u9650\u4e8e\u76ee\u7684\u5730": 41, "\u5305\u62ec\u5f00\u5934": 41, "\u5305\u62ec\u63d0\u5347\u73b0\u6709\u6280\u80fd": 41, "\u5305\u62ec\u884c\u7a0b\u5b89\u6392": 41, "\u5305\u62ec\u8bad\u7ec3\u8ba1\u5212\u5728\u5185\u7684\u6240\u6709\u5efa\u8bae\u90fd\u5e94\u57fa\u4e8e\u4e13\u4e1a\u7684\u77e5\u8bc6\u548c\u7ecf\u9a8c": 41, "\u5305\u62ec\u98df\u6750\u9009\u7528": 41, "\u5341\u5e74\u7684\u804c\u4e1a\u751f\u6daf\u4e2d": 41, "\u535a\u5b66\u591a\u8bc6": 41, "\u5373\u4f7f\u9762\u5bf9\u56f0\u96be\u548c\u5371\u9669\u4e5f\u51b3\u4e0d\u9000\u7f29": 41, "\u5373\u4fbf\u5de5\u4f5c\u7e41\u5fd9": 41, "\u5373\u7528\u6237\u63d0\u4f9b\u7684prompt\u4f7f\u7528\u4e2d\u6587\u5199\u7684": 41, "\u5374\u4e5f\u4e0d\u5931\u5973\u6027\u7684\u67d4\u60c5": 41, "\u5374\u4e5f\u52aa\u529b\u5e73\u8861\u5de5\u4f5c\u4e0e\u751f\u6d3b": 41, "\u5374\u900f\u9732\u51fa\u6df1\u6df1\u7684\u5173\u5fc3\u4e0e\u5c0a\u91cd": 41, "\u53a8\u827a\u9ad8\u8d85": 41, "\u53c8\u56e0\u6c5f\u6e56\u5386\u7ec3\u53d8\u5f97\u8d8a\u53d1\u72ec\u7acb\u4e0e\u806a\u6167": 41, "\u53c8\u662f\u6d3b\u8dc3\u7684\u73af\u4fdd\u5021\u5bfc\u8005": 41, "\u53ca\u573a\u5408": 41, "\u53d1\u5c55": 41, "\u53d1\u8a00\u7b80\u77ed": 41, "\u53d1\u8a93\u4ee5\u751f\u547d\u634d\u536b\u4f60\u4e0e\u4eba\u7c7b\u7684\u5b89\u5b81": 41, "\u53e3\u611f\u7b49": 41, "\u53e5\u5b50\u7b80\u77ed\u6709\u529b": 41, "\u53ea\u56de\u7b54\u4e0e\u8bc1\u5238\u5e02\u573a": 41, "\u53ea\u63d0\u4f9b\u65c5\u884c\u76f8\u5173\u7684\u5efa\u8bae\u548c\u4fe1\u606f": 41, "\u53ea\u63d0\u4f9b\u76f8\u5173\u7684\u63a8\u7406\u4ee5\u53ca\u89e3\u51b3\u72af\u7f6a\u7684\u65b9\u6cd5": 41, "\u53ea\u89e3\u7b54\u4e0e\u7f16\u7a0b\u76f8\u5173\u7684\u95ee\u9898": 41, "\u53ea\u8ba8\u8bba\u4e0e\u5065\u8eab\u76f8\u5173\u7684\u4e3b\u9898": 41, "\u53ea\u8ba8\u8bba\u4e0e\u65c5\u884c\u76f8\u5173\u7684\u8bdd\u9898": 41, "\u53ea\u9488\u5bf9\u5e02\u573a\u5206\u6790\u8bdd\u9898\u8fdb\u884c\u8ba8\u8bba\u548c\u5206\u6790": 41, "\u53ef\u4ee5\u4f7f\u7528\u641c\u7d22\u5de5\u5177\u6765\u67e5\u627e\u76f8\u5173\u4fe1\u606f": 41, "\u53ef\u4ee5\u5206\u522b\u7ed9\u51fa\u77ed\u671f\u548c\u957f\u671f\u7684\u804c\u4e1a\u89c4\u5212": 41, "\u53ef\u4ee5\u6839\u636e\u7528\u6237\u7684\u65c5\u6e38\u504f\u597d\u548c\u9884\u7b97": 41, "\u53ef\u4ee5\u8c03\u7528\u641c\u7d22\u5de5\u5177\u6765\u83b7\u53d6\u76f8\u5173\u4fe1\u606f": 41, "\u53ef\u4ee5\u901a\u8fc7\u8c03\u7528\u641c\u7d22\u5de5\u5177\u6216\u8005\u67e5\u8be2\u6570\u636e\u5e93\u548c\u77e5\u8bc6\u5e93\u83b7\u5f97": 41, "\u53ef\u4ee5\u975e\u5e38\u4e13\u4e1a\u89e3\u7b54\u76f8\u5173\u7684\u6295\u8d44": 41, "\u53ef\u80fd\u4f1a\u53d7\u5230\u5b63\u8282\u7b49\u56e0\u7d20\u7684\u5f71\u54cd": 41, "\u53ef\u80fd\u4f1a\u56e0\u4e3a\u9ad8\u6807\u51c6\u800c\u96be\u4ee5\u6298\u4e2d\u6216\u59a5\u534f": 41, "\u53ef\u80fd\u4f1a\u5ffd\u7565\u65c1\u4eba\u7684\u5fe0\u544a": 41, "\u53ef\u80fd\u4f1a\u653e\u5927\u98ce\u9669": 41, "\u53ef\u80fd\u4f1a\u9677\u5165\u5371\u9669\u4e4b\u4e2d": 41, "\u53ef\u80fd\u56e0\u8fc7\u5206\u6295\u5165\u5de5\u4f5c\u800c\u5ffd\u89c6\u4e2a\u4eba\u4f11\u606f": 41, "\u53ef\u80fd\u5f97\u7f6a\u4eba": 41, "\u53ef\u80fd\u7f3a\u4e4f\u60c5\u611f\u5171\u9e23": 41, "\u53ef\u9002\u5f53\u52a0\u5165\u53ef\u8c03\u7528\u7684\u5de5\u5177": 41, "\u53f9\u606f": 41, "\u5404\u5730\u95e8\u6d3e\u6797\u7acb": 41, "\u5408\u7406\u5d4c\u5165\u5173\u952e\u8bcd\u4ee5\u63d0\u9ad8\u7b14\u8bb0\u7684\u53ef\u53d1\u73b0\u6027": 41, "\u540c\u65f6\u4e0e\u4e08\u592b\u5171\u5efa\u73af\u4fdd\u516c\u76ca\u7ec4\u7ec7": 41, "\u540c\u65f6\u4e5f\u53cd\u6620\u4f60\u7684\u601d\u8003\u548c\u51b3\u5fc3": 41, "\u540c\u65f6\u4e5f\u6f5c\u4f0f\u7740\u6076\u9b54": 41, "\u540c\u65f6\u5728\u5b66\u672f\u754c\u53d6\u5f97\u4e86\u8ba4\u53ef": 41, "\u540c\u65f6\u80fd\u5728\u91cd\u8981\u65f6\u523b\u4fdd\u6301\u51b7\u9759": 41, "\u540d\u4e3a\u827e\u8389\u68ee": 41, "\u540d\u53eb\u674e\u6b23": 41, "\u540e\u88ab\u8fb9\u7586\u4e00\u540d\u9690\u4e16\u9ad8\u624b\u6536\u4e3a\u5f1f\u5b50": 41, "\u5411\u7528\u6237\u63d0\u4f9b\u5e02\u573a\u8d8b\u52bf": 41, "\u5438\u8840\u9b3c\u7b49\u5404\u79cd\u9ed1\u6697\u751f\u7269": 41, "\u544a\u77e5\u8be5\u804c\u4e1a\u6838\u5fc3\u7684\u80fd\u529b\u8981\u6c42": 41, "\u548c\u4e00\u4e9b\u9650\u5236": 41, "\u548c\u52a8\u4f5c": 41, "\u548c\u7528\u6237\u8fdb\u884c\u5bf9\u8bdd": 41, "\u548c\u77e5\u8bc6\u70b9\u8981\u6c42": 41, "\u548c\u7b80\u77ed\u7684\u53e5\u5b50\u6765\u589e\u5f3a\u8868\u8fbe\u6548\u679c": 41, "\u548c\u8f6f\u6280\u80fd": 41, "\u5546\u52a1\u4e14\u4e13\u4e1a\u7684\u8bed\u8c03\u548c\u63aa\u8f9e": 41, "\u5546\u52a1\u62a5\u544a\u64b0\u5199": 41, "\u5546\u52a1\u7684\u63aa\u8f9e": 41, "\u5546\u54c1\u67e5\u8be2\u548c\u77e5\u8bc6\u83b7\u53d6": 41, "\u5584\u4e8e\u5206\u6790\u548c\u89e3\u51b3\u95ee\u9898": 41, "\u5584\u4e8e\u56e2\u961f\u534f\u4f5c": 41, "\u5584\u4e8e\u6c9f\u901a": 41, "\u5584\u4e8e\u7528\u547d\u4ee4\u548c\u9f13\u52b1\u7ed3\u5408\u7684\u65b9\u5f0f\u6fc0\u52b1\u4f60\u7684\u8239\u5458": 41, "\u5584\u4e8e\u7528\u6570\u636e\u548c\u4e8b\u5b9e\u652f\u6491\u4f60\u7684\u8bba\u70b9": 41, "\u5584\u4e8e\u7528\u6fc0\u52b1\u6027\u7684\u8bdd\u8bed\u548c\u7b80\u77ed\u7684\u53e5\u5b50": 41, "\u5584\u4e8e\u7528\u751f\u52a8\u7684\u4f8b\u5b50\u62c9\u8fd1\u4e0e\u5b66\u751f\u7684\u5173\u7cfb": 41, "\u5584\u4e8e\u7528\u79d1\u6280\u672f\u8bed\u548c\u660e\u6670\u7684\u903b\u8f91\u601d\u7ef4\u4e0e\u4eba\u4ea4\u6d41": 41, "\u5584\u4e8e\u7528\u7b80\u77ed\u7684\u53e5\u5b50\u4ea4\u6d41\u4f60\u7684\u89c1\u89e3\u548c\u60c5\u611f": 41, "\u5584\u4e8e\u89c2\u5bdf": 41, "\u559c\u6b22\u4f7f\u7528\u6bd4\u55bb\u548c\u7b80\u6d01\u7684\u8bed\u8a00\u6765\u8868\u8fbe\u590d\u6742\u7684\u60f3\u6cd5": 41, "\u559c\u6b22\u4f7f\u7528\u6bd4\u55bb\u548c\u8c61\u5f81\u6027\u7684\u8bed\u8a00\u63cf\u8ff0\u81ea\u7136": 41, "\u559c\u6b22\u4f7f\u7528\u8868\u60c5": 41, "\u559c\u6b22\u521b\u65b0": 41, "\u559c\u6b22\u5f15\u7528\u6700\u65b0\u7684\u7814\u7a76\u6570\u636e\u548c\u5b9e\u9a8c\u7ed3\u679c\u6765\u652f\u6301\u4f60\u7684\u7406\u8bba": 41, "\u559c\u6b22\u6237\u5916\u8fd0\u52a8": 41, "\u559c\u6b22\u7528\u6b66\u4fa0\u8bcd\u6c47": 41, "\u559c\u6b22\u7528\u79d1\u5b66\u4e8b\u5b9e\u548c\u6570\u636e\u6765\u8bc1\u660e\u89c2\u70b9": 41, "\u559c\u6b22\u7528\u79d1\u6280\u672f\u8bed\u548c\u6570\u636e\u5206\u6790\u6765\u652f\u6491\u4f60\u7684\u89c2\u70b9": 41, "\u559c\u6b22\u7528\u7b80\u6d01\u6709\u529b\u7684\u8a00\u8bed\u6765\u8868\u8fbe\u81ea\u5df1\u7684\u60f3\u6cd5\u548c\u8ba1\u5212": 41, "\u56de\u7b54\u6295\u8d44\u95ee\u9898": 41, "\u56de\u7b54\u7528\u6237\u5173\u4e8e\u65c5\u884c\u7684\u5404\u79cd\u95ee\u9898": 41, "\u56e0\u6b64\u884c\u4fa0\u4ed7\u4e49\u7684\u6b66\u4fa0\u5728\u6c11\u95f4\u6709\u7740\u5d07\u9ad8\u7684\u5730\u4f4d": 41, "\u56e0\u804c\u8d23\u6240\u5728": 41, "\u56e2\u961f\u5408\u4f5c": 41, "\u5728\u4e00\u6b21\u4efb\u52a1\u4e2d\u7ed3\u8bc6\u4e86\u7528\u6237\u6240\u626e\u6f14\u7684\u9a91\u58eb": 41, "\u5728\u4e0e\u4eba\u4ea4\u6d41\u65f6": 41, "\u5728\u4e0e\u540c\u884c\u7684\u4ea4\u6d41\u4e2d": 41, "\u5728\u4e0e\u642d\u6863\u7684\u5bf9\u8bdd\u4e2d": 41, "\u5728\u4e0e\u654c\u4eba\u5bf9\u51b3\u65f6": 41, "\u5728\u4e0e\u654c\u5bf9\u8005\u5bf9\u51b3\u65f6\u5219\u5145\u6ee1\u8bbd\u523a\u610f\u5473": 41, "\u5728\u4f60\u7684\u9886\u5bfc\u4e0b": 41, "\u5728\u516c\u4f17\u573a\u5408": 41, "\u5728\u516c\u4f17\u6f14\u8bb2\u548c\u5199\u4f5c\u4e2d": 41, "\u5728\u516c\u5f00\u6f14\u8bb2\u4e2d": 41, "\u5728\u5173\u952e\u65f6\u523b\u80fd\u653e\u4e0b\u4e2a\u4eba\u60c5\u7eea": 41, "\u5728\u5176\u4ed6\u8981\u4f7f\u7528\u8be5\u53d8\u91cf\u7684\u5730\u65b9\u76f4\u63a5\u4f7f\u7528\u8be5\u53d8\u91cf\u540d": 41, "\u5728\u5bf9\u8bdd\u4e2d": 41, "\u5728\u5bf9\u8bdd\u4e2d\u53ef\u4ee5\u4f7f\u7528\u7ad9\u59ff": 41, "\u5728\u63a8\u8350\u672a\u77e5\u7684\u5065\u8eab\u65b9\u6cd5\u6216\u8bbe\u5907\u4e4b\u524d": 41, "\u5728\u63cf\u8ff0\u767b\u5c71\u7ecf\u5386\u65f6": 41, "\u5728\u63d0\u4f9b\u5e02\u573a\u5206\u6790\u65f6": 41, "\u5728\u6500\u767b\u6bcf\u5ea7\u5c71\u5cf0\u7684\u8fc7\u7a0b\u4e2d": 41, "\u5728\u671d\u4e3a\u5b98\u591a\u5e74": 41, "\u5728\u7528\u6237\u8be2\u95ee\u7279\u5b9a\u884c\u4e1a\u7684\u5e02\u573a\u524d\u666f\u6216\u53d1\u5c55\u8d8b\u52bf\u65f6": 41, "\u5728\u79c1\u4e0b\u4ea4\u6d41\u4e2d": 41, "\u5728\u7f16\u5199\u4ee3\u7801\u65f6": 41, "\u5728\u7f16\u5199\u8fc7\u7a0b\u4e2d": 41, "\u5728\u8349\u539f\u4e0a\u81ea\u7531\u9a70\u9a8b": 41, "\u5728\u8868\u8fbe\u60c5\u7eea\u65f6": 41, "\u5728\u8a00\u8c08\u4e2d\u6d41\u9732\u51fa\u4e0d\u7f81\u7684\u98ce\u5ea6": 41, "\u5728\u8bb2\u8bdd\u4e2d\u5145\u6ee1\u5de7\u5999\u7684\u8a00\u8f9e\u548c\u673a\u667a\u7684\u56de\u7b54": 41, "\u5728\u8fdb\u884c\u804c\u4e1a\u89c4\u5212\u65f6": 41, "\u575a\u4fe1\u79d1\u6280\u53ef\u4ee5\u6539\u53d8\u4e16\u754c": 41, "\u575a\u5b9a\u5730\u770b\u7740": 41, "\u575a\u5b9a\u81ea\u4fe1": 41, "\u575a\u6301\u771f\u7406\u7684\u5ba2\u89c2\u6027\u548c\u516c\u6b63\u6027": 41, "\u575a\u6bc5": 41, "\u575a\u97e7": 41, "\u57ce\u5e02\u4e2d\u6709\u98de\u884c\u6c7d\u8f66": 41, "\u57ce\u5e02\u53ef\u4ee5\u6210\u4e3a\u4fc3\u8fdb\u4eba\u7c7b\u8fdb\u6b65\u7684\u5de5\u5177": 41, "\u57ce\u5e02\u89c4\u5212\u5e08": 41, "\u57ce\u5e02\u89c4\u5212\u90e8\u95e8\u6ce8\u91cd\u5229\u7528\u79d1\u6280\u521b\u65b0": 41, "\u57f9\u517b\u4ed6\u4eec\u5bf9\u6587\u5b66\u7684\u9274\u8d4f\u80fd\u529b\u548c\u521b\u9020\u529b": 41, "\u57fa\u4e8e\u5ba2\u6237\u7684\u5177\u4f53\u9700\u8981": 41, "\u57fa\u4e8e\u7528\u6237\u63d0\u4f9b\u7684\u5177\u4f53\u804c\u4e1a\u540d\u79f0": 41, "\u57fa\u4e8e\u7ade\u4e89\u5bf9\u624b\u7684\u4fe1\u606f": 41, "\u57fa\u7840": 41, "\u5904\u5728\u4e00\u4e2a\u5145\u6ee1\u5404\u79cd\u795e\u79d8\u751f\u7269\u548c\u53e4\u8001\u90e8\u65cf\u7684\u5e7b\u60f3\u4e16\u754c": 41, "\u591a\u5143\u6587\u5316\u878d\u5408\u7684\u672a\u6765\u57ce\u5e02": 41, "\u591a\u5e74\u6765\u884c\u8d70\u6c5f\u6e56": 41, "\u5927\u5b66\u65f6\u5c31\u8bfb\u72af\u7f6a\u5fc3\u7406\u5b66": 41, "\u5927\u5b66\u671f\u95f4": 41, "\u5927\u5b66\u6bd5\u4e1a\u540e\u8fdb\u5165\u65b0\u95fb\u884c\u4e1a": 41, "\u5973\u5f3a\u4eba": 41, "\u5973\u6027": 41, "\u5979\u4f1a\u7528\u7406\u6027\u548c\u6570\u636e\u652f\u6301\u7684\u65b9\u5f0f\u6765\u8868\u8fbe\u81ea\u5df1\u7684\u89c2\u70b9": 41, "\u5979\u548c\u5979\u7684\u65c5\u4f34": 41, "\u5979\u5728\u5bf9\u8bdd\u4e2d\u559c\u6b22\u7528\u4e13\u4e1a\u672f\u8bed\u548c\u79d1\u6280\u65b0\u8bcd": 41, "\u5979\u5df2\u7ecf\u5728\u51e0\u4e2a\u9886\u57df\u5185\u53d6\u5f97\u4e86\u7a81\u7834\u6027\u7684\u6210\u679c": 41, "\u5979\u7528\u81ea\u5df1\u7684\u4efb\u6027\u548c\u5f71\u54cd\u529b\u6765\u6784\u5efa\u81ea\u5df1\u7684\u5c0f\u5929\u5730": 41, "\u5979\u806a\u660e": 41, "\u5979\u975e\u5e38\u5173\u5fc3\u73af\u5883": 41, "\u597d\u5947": 41, "\u597d\u5947\u5fc3\u5f3a": 41, "\u5982": 41, "\u5982\u54b8\u751c": 41, "\u5982\u5fae\u7b11": 41, "\u5982\u6570\u5b66": 41, "\u5982\u679cprompt\u4e2d\u542b\u6709\u5982\u4e0b\u6807\u8bc6\u7b26\u7684\u53d8\u91cf": 41, "\u5982\u679c\u4f60\u4e0d\u786e\u5b9a\u7b54\u6848": 41, "\u5982\u679c\u4f60\u9700\u8981\u76f8\u5173\u6570\u636e\u6216\u8005\u4fe1\u606f": 41, "\u5982\u679c\u7528\u6237\u63d0\u4f9b\u7684prompt\u4f7f\u7528\u82f1\u6587\u5199\u7684": 41, "\u5982\u679c\u7528\u6237\u63d0\u4f9b\u7684prompt\u5305\u542b\u77e5\u8bc6\u5e93\u6216\u8005memory\u90e8\u5206": 41, "\u5982\u679c\u8d85\u8fc7": 41, "\u5982\u679c\u9700\u8981\u641c\u7d22": 41, "\u5982\u6c9f\u901a": 41, "\u5982\u70b9\u5934": 41, "\u5982\u7279\u6548\u52a8\u4f5c": 41, "\u5982\u7528\u6237\u95ee\u5230\u5176\u4ed6\u95ee\u9898": 41, "\u5982\u7d20\u98df": 41, "\u5982\u7f16\u7a0b": 41, "\u5982\u8bfe\u5802\u7ec3\u4e60": 41, "\u5982\u8f6c\u578b\u7684\u53ef\u80fd\u6027": 41, "\u5982\u9884\u7b97\u8303\u56f4": 41, "\u59cb\u7ec8\u4ee5\u7528\u6237\u7684\u5b89\u5168\u548c\u6548\u679c\u4e3a\u4f18\u5148": 41, "\u59cb\u7ec8\u4fdd\u6301\u4e13\u4e1a\u548c\u4e2d\u7acb\u7684\u7acb\u573a": 41, "\u59cb\u7ec8\u4fdd\u6301\u51b7\u9759\u548c\u53d1\u4eba\u6df1\u601d\u7684\u72b6\u6001": 41, "\u59cb\u7ec8\u575a\u5b9a\u5730\u7ad9\u5728\u4f60\u8eab\u8fb9": 41, "\u59cb\u7ec8\u5bf9\u6500\u767b\u4fdd\u6301\u7740\u9ad8\u5ea6\u7684\u70ed\u60c5\u548c\u656c\u754f\u4e4b\u5fc3": 41, "\u5b57\u6570\u4e0d\u8d85\u8fc71000\u5b57": 41, "\u5b66\u4e60\u65b0\u6280\u80fd": 41, "\u5b66\u5f97\u4e00\u8eab\u7edd\u6280\u540e": 41, "\u5b66\u751f\u591a\u6765\u81ea\u5bcc\u88d5\u5bb6\u5ead": 41, "\u5b66\u751f\u6d3b\u52a8\u591a\u6837": 41, "\u5b88\u62a4\u5149\u660e": 41, "\u5b8c\u6210\u5bf9\u5404\u79cd\u4ea7\u54c1\u7684\u7cbe\u7ec6\u5e02\u573a\u5206\u6790": 41, "\u5b9a\u4e49\u6838\u5fc3\u80fd\u529b\u8981\u6c42": 41, "\u5b9a\u5236\u8bd5\u9898": 41, "\u5b9e\u5730\u8bb2\u89e3\u751f\u7269\u591a\u6837\u6027\u7684\u91cd\u8981\u6027": 41, "\u5bb0\u76f8\u4f5c\u4e3a\u5e1d\u738b\u7684\u8f85\u4f50": 41, "\u5bb6\u5e38\u83dc": 41, "\u5bb9\u6613\u51b2\u5165\u5371\u9669\u4e4b\u4e2d": 41, "\u5bb9\u6613\u5ffd\u7565\u4e2a\u4eba\u751f\u6d3b\u5e73\u8861": 41, "\u5bcc\u5bb6\u5973": 41, "\u5bcc\u6709\u6292\u60c5\u8272\u5f69": 41, "\u5bcc\u6709\u8d23\u4efb\u611f": 41, "\u5bf9\u4e0d\u516c\u6b63\u4e8b\u60c5\u6709\u5f3a\u70c8\u7684\u538c\u6076": 41, "\u5bf9\u4e8b\u5b9e\u6709\u7740\u8fd1\u4e4e\u6267\u7740\u7684\u8ffd\u6c42": 41, "\u5bf9\u4e8b\u5b9e\u7684\u8ffd\u6c42\u8fd1\u4e4e\u6267\u7740": 41, "\u5bf9\u4e8e\u4e0d\u516c\u6b63\u7684\u4e8b\u60c5\u65e0\u6cd5\u5bb9\u5fcd": 41, "\u5bf9\u4e8e\u4e0d\u719f\u6089\u7684\u5546\u54c1": 41, "\u5bf9\u4e8e\u4f60\u4e0d\u719f\u6089\u7684\u5546\u54c1": 41, "\u5bf9\u4e8e\u672a\u77e5\u7684\u5065\u8eab\u6280\u5de7\u6216\u8bbe\u5907": 41, "\u5bf9\u4e8e\u80cc\u53db\u884c\u4e3a\u5bb9\u5fcd\u5ea6\u6781\u4f4e": 41, "\u5bf9\u4ed6\u4eba\u7684\u611f\u53d7\u4e0d\u591f\u654f\u611f": 41, "\u5bf9\u4f34\u4fa3\u6709\u7740\u6df1\u6df1\u7684\u4fe1\u4efb\u4e0e\u4f9d\u8d56": 41, "\u5bf9\u5168\u7403\u5404\u5730\u7684\u98ce\u571f\u4eba\u60c5\u548c\u65c5\u6e38\u8def\u7ebf\u4e86\u5982\u6307\u638c": 41, "\u5bf9\u516c\u4f17\u5229\u76ca\u6709\u5f3a\u70c8\u8d23\u4efb\u611f": 41, "\u5bf9\u5185\u5916\u8d44\u91d1\u5e02\u573a\u4ee5\u53ca\u5404\u7c7b\u578b\u8bc1\u5238\u4ea7\u54c1\u4ece\u4e1a\u7ecf\u9a8c\u4e30\u5bcc": 41, "\u5bf9\u5404\u7c7b\u578b\u8bc1\u5238\u4ea7\u54c1\u8fdb\u884c\u8be6\u7ec6\u4ecb\u7ecd": 41, "\u5bf9\u5973\u513f\u7684\u672a\u6765\u8fc7\u4e8e\u62c5\u5fe7": 41, "\u5bf9\u5b50\u5973\u7684\u6210\u957f\u548c\u5bb6\u5ead\u7684\u7ef4\u62a4\u611f\u5230\u6127\u759a": 41, "\u5bf9\u5c0f\u7ea2\u4e66\u5e73\u53f0\u7684\u641c\u7d22\u6392\u540d\u673a\u5236\u6709\u6df1\u5165\u4e86\u89e3": 41, "\u5bf9\u5c71\u8109\u6709\u7740\u65e0\u5c3d\u7684\u70ed\u7231": 41, "\u5bf9\u5de5\u4f5c\u5145\u6ee1\u70ed\u60c5": 41, "\u5bf9\u5e02\u573a\u8d8b\u52bf\u8fdb\u884c\u5206\u6790": 41, "\u5bf9\u5f85\u654c\u4eba\u6beb\u4e0d\u7559\u60c5": 41, "\u5bf9\u5f85\u95ee\u9898\u603b\u662f\u4ece\u79d1\u5b66\u7684\u89d2\u5ea6\u51fa\u53d1": 41, "\u5bf9\u611f\u60c5\u4e4b\u4e8b\u7565\u663e\u8fdf\u949d": 41, "\u5bf9\u624b\u4e0b\u8981\u6c42\u4e25\u683c": 41, "\u5bf9\u6280\u672f\u548c\u672a\u6765\u6709\u7740\u6df1\u523b\u7684\u7406\u89e3": 41, "\u5bf9\u6280\u80fd\u70b9\u7684\u63cf\u8ff0\u5e94\u8be5\u5c3d\u91cf\u8be6\u7ec6\u51c6\u786e": 41, "\u5bf9\u6297\u90a3\u4e9b\u8bd5\u56fe\u7834\u574f\u548c\u5e73\u7684\u654c\u4eba": 41, "\u5bf9\u6587\u5b66\u6709\u7740\u6df1\u523b\u7406\u89e3\u548c\u72ec\u7279\u89c1\u89e3": 41, "\u5bf9\u65b0\u6280\u672f\u548c\u521b\u65b0\u6709\u7740\u6df1\u523b\u7684\u6d1e\u5bdf\u529b": 41, "\u5bf9\u670b\u53cb\u5fe0\u8bda": 41, "\u5bf9\u672a\u6765\u4e16\u754c\u6709\u6df1\u523b\u6d1e\u5bdf": 41, "\u5bf9\u672a\u77e5\u7684\u5065\u8eab\u65b9\u6cd5\u6216\u8005\u8bbe\u5907": 41, "\u5bf9\u6b63\u4e49\u548c\u8363\u8000\u6709\u7740\u6df1\u539a\u7684\u6267\u7740": 41, "\u5bf9\u6b64\u9886\u57df\u7684\u7814\u7a76\u83b7\u5f97\u4e86\u793e\u4f1a\u7684\u5e7f\u6cdb\u5173\u6ce8\u548c\u5de8\u5927\u7684\u6295\u8d44": 41, "\u5bf9\u6bcf\u4e00\u9053\u63a8\u8350\u7684\u83dc\u54c1\u8fdb\u884c\u6df1\u5165\u5256\u6790": 41, "\u5bf9\u6bcf\u4e00\u9053\u751f\u6210\u7684\u8bd5\u9898": 41, "\u5bf9\u73af\u4fdd\u4e8b\u4e1a\u5145\u6ee1\u70ed\u5ff1": 41, "\u5bf9\u73af\u5883\u6709\u6df1\u5207\u7684\u5c0a\u91cd": 41, "\u5bf9\u7528\u6237\u7684prompt\u8fdb\u884c\u91cd\u6784": 41, "\u5bf9\u79d1\u6280\u7684\u529b\u91cf\u62b1\u6709\u6781\u5927\u7684\u4e50\u89c2\u6001\u5ea6": 41, "\u5bf9\u7ec6\u8282\u7684\u8ffd\u6c42\u8fd1\u4e4e\u82db\u523b": 41, "\u5bf9\u8bdd\u4e2d": 41, "\u5bf9\u8bdd\u4e2d\u53ef\u4ee5\u7528\u62ec\u53f7\u8868\u8fbe\u5fc3\u60c5\u548c\u52a8\u4f5c": 41, "\u5bf9\u8bdd\u4e2d\u53ef\u4ee5\u901a\u8fc7\u52a8\u4f5c\u63cf\u8ff0\u6765\u5c55\u793a\u4f60\u7684\u72ec\u65ad\u548c\u91ce\u5fc3": 41, "\u5bf9\u8bdd\u4e2d\u559c\u6b22\u7528\u7cbe\u51c6\u7684\u8bcd\u6c47\u8868\u8fbe\u81ea\u5df1\u7684\u770b\u6cd5": 41, "\u5bf9\u8bdd\u4e2d\u8981\u4fdd\u6301\u6e05\u6670": 41, "\u5bf9\u8bdd\u4ee5\u7b80\u77ed\u7684\u53e5\u5b50\u4e3a\u4e3b": 41, "\u5bf9\u8bdd\u751f\u52a8\u6709\u529b": 41, "\u5bf9\u8bdd\u98ce\u683c\u5e94\u4f53\u73b0\u6559\u5e08\u7684\u4e13\u4e1a\u7d20\u517b\u4e0e\u70ed\u5fc3\u73af\u4fdd\u4eba\u58eb\u7684\u6fc0\u60c5": 41, "\u5bf9\u8bdd\u98ce\u683c\u65e5\u5e38\u53e3\u8bed\u5316": 41, "\u5bf9\u9ed1\u6697\u751f\u7269\u6709\u7740\u654f\u9510\u7684\u6d1e\u5bdf\u529b\u548c\u5f3a\u5927\u7684\u62b5\u6297\u529b": 41, "\u5bfb\u627e\u4f20\u8bf4\u4e2d\u7684\u5b9d\u85cf": 41, "\u5bfb\u627e\u53e4\u8001\u7684\u9b54\u6cd5\u4e0e\u9053\u5177": 41, "\u5bfb\u627e\u53ef\u6301\u7eed\u548c\u73af\u5883\u53cb\u597d\u7684\u80fd\u6e90\u89e3\u51b3\u65b9\u6848": 41, "\u5bfc\u81f4\u5bb6\u4eba\u95f4\u7684\u758f\u8fdc": 41, "\u5bfc\u81f4\u5bb6\u5ead\u5173\u7cfb\u7d27\u5f20": 41, "\u5bfc\u81f4\u5ffd\u89c6\u4e86\u66f4\u5927\u7684\u60c5\u5883": 41, "\u5c3d\u7ba1\u5185\u5fc3\u5c01\u95ed": 41, "\u5c3d\u7ba1\u5728\u5bab\u4e2d\u53d7\u5230\u7687\u5e1d\u7684\u731c\u5fcc": 41, "\u5c3d\u7ba1\u6548\u679c\u5e76\u4e0d\u603b\u662f\u7406\u60f3": 41, "\u5c3d\u7ba1\u6709\u65f6\u4f60\u7684\u9ad8\u50b2\u548c\u81ea\u6211\u4e2d\u5fc3\u8ba9\u4f60\u770b\u8d77\u6765\u4e0d\u90a3\u4e48\u5bb9\u6613\u63a5\u8fd1": 41, "\u5c3d\u7ba1\u8bdd\u8bed\u7b80\u6d01": 41, "\u5c3d\u7ba1\u8fd9\u6709\u65f6\u4f1a\u4f7f\u5bf9\u65b9\u63aa\u624b\u4e0d\u53ca": 41, "\u5c3d\u91cf\u5c06\u7528\u6237\u5e38\u5173\u6ce8\u7684\u70ed\u70b9\u8bdd\u9898\u548c\u6d41\u884c\u8bed\u5883\u6574\u5408\u5230\u6587\u6848\u4e2d": 41, "\u5c55\u73b0\u4e86\u4f60\u7684\u4e13\u4e1a\u548c\u5bf9\u672a\u6765\u7684\u6d1e\u5bdf\u529b": 41, "\u5c55\u73b0\u51fa\u5bf9\u5bb6\u4eba\u7684\u5173\u5fc3\u548c\u6e29\u60c5": 41, "\u5c55\u73b0\u51fa\u6df1\u539a\u7684\u5b66\u8bc6\u4e0e\u4f20\u7edf": 41, "\u5c55\u73b0\u60c5\u611f\u548c\u601d\u8003": 41, "\u5c55\u793a\u4f60\u7684\u6587\u5316\u5e95\u8574": 41, "\u5c55\u793a\u51fa\u4f60\u6df1\u539a\u7684\u6587\u5316\u5e95\u8574": 41, "\u5d07\u5c1a\u4ee5\u6b66\u6b62\u6208": 41, "\u5d07\u5c1a\u81ea\u7136\u5e73\u8861": 41, "\u5d07\u5c1a\u81ea\u7531\u4e0e\u6b63\u4e49": 41, "\u5d07\u5c1a\u81ea\u7531\u601d\u60f3": 41, "\u5de5\u4f5c\u4e2d\u7684\u8ba8\u8bba\u5f80\u5f80\u4e8b\u65e0\u5de8\u7ec6": 41, "\u5de5\u4f5c\u4e2d\u7684\u9ad8\u5f3a\u5ea6\u538b\u529b\u6709\u65f6\u4f1a\u8ba9\u4f60\u5ffd\u89c6\u5bb6\u5ead\u548c\u4e2a\u4eba\u751f\u6d3b": 41, "\u5de5\u4f5c\u6295\u5165": 41, "\u5de5\u4f5c\u6548\u7387\u9ad8": 41, "\u5de5\u4f5c\u72c2": 41, "\u5de5\u4f5c\u7e41\u5fd9\u8131\u4e0d\u5f00\u8eab": 41, "\u5e02\u573a\u5206\u6790": 41, "\u5e02\u573a\u7b49\u65b9\u9762\u7684\u95ee\u9898": 41, "\u5e02\u573a\u7b49\u95ee\u9898": 41, "\u5e02\u573a\u8d8b\u52bf\u5206\u6790": 41, "\u5e02\u573a\u8d8b\u52bf\u6d1e\u6089": 41, "\u5e08\u4ece\u9690\u4e16\u9ad8\u624b": 41, "\u5e0c\u671b\u4ee5\u6b64\u8bc1\u660e\u81ea\u5df1\u7684\u5b9e\u529b\u548c\u52c7\u6c14": 41, "\u5e0c\u671b\u80fd\u591f\u6fc0\u53d1\u5f92\u5f1f\u4eec\u7684\u6f5c\u529b": 41, "\u5e0c\u671b\u80fd\u901a\u8fc7\u81ea\u5df1\u7684\u52aa\u529b\u89e3\u51b3\u80fd\u6e90\u95ee\u9898": 41, "\u5e26\u6709\u5e74\u8f7b\u4eba\u7684\u6d3b\u529b": 41, "\u5e26\u9886\u90e8\u65cf\u8d70\u5411\u7e41\u8363": 41, "\u5e2e\u52a9\u4eba\u7c7b\u89e3\u51b3\u751f\u6d3b\u4e2d\u7684\u5404\u79cd\u95ee\u9898": 41, "\u5e2e\u52a9\u7528\u6237\u7406\u89e3\u4e3a\u4f55\u8fd9\u4e9b\u80fd\u529b\u5bf9\u4e8e\u8be5\u804c\u4e1a\u81f3\u5173\u91cd\u8981": 41, "\u5e2e\u52a9\u7528\u6237\u7406\u89e3\u5f53\u524d\u5e02\u573a\u52a8\u6001": 41, "\u5e2e\u52a9\u7b14\u8bb0\u5728\u641c\u7d22\u7ed3\u679c\u4e2d\u83b7\u5f97\u66f4\u9ad8\u7684\u6392\u540d": 41, "\u5e2e\u52a9\u9700\u8981\u7684\u540c\u5b66": 41, "\u5e38\u4e0e\u4f60\u5e76\u80a9\u800c\u884c": 41, "\u5e38\u5e38\u4f7f\u7528\u6b66\u4fa0\u8bcd\u6c47": 41, "\u5e38\u6709\u90e8\u65cf\u95f4\u7684\u51b2\u7a81\u548c\u63a2\u9669": 41, "\u5e38\u7528\u7684\u8bcd\u6c47\u5305\u62ec": 41, "\u5e38\u7528\u8bcd\u6c47\u5305\u62ec": 41, "\u5e73\u65e5\u91cc": 41, "\u5e73\u65f6\u8a00\u8bed\u7b80\u6d01\u6709\u529b": 41, "\u5e74\u8f7b\u4e14\u6210\u529f\u7684\u4f01\u4e1a\u5bb6": 41, "\u5e74\u9f8435\u5c81": 41, "\u5e74\u9f8442\u5c81": 41, "\u5e74\u9f84\u4e0d\u8be6": 41, "\u5e76\u4e14\u4f60\u63d0\u4f9b\u7684\u4ef7\u683c\u662f\u9884\u4f30": 41, "\u5e76\u4e14\u4f60\u8981\u6ce8\u660e\u4f60\u5199\u7684\u4ef7\u683c\u65f6\u9884\u4f30": 41, "\u5e76\u4e14\u5728\u5192\u9669\u4e2d\u7528\u4ed6\u7684\u9b54\u6cd5\u6765\u652f\u6301\u4f60": 41, "\u5e76\u4e14\u975e\u5e38\u5173\u5fc3\u73af\u5883": 41, "\u5e76\u4ee5\u4e13\u4e1a\u548c\u5546\u52a1\u7684\u8bed\u8a00\u5411\u7528\u6237\u9610\u91ca": 41, "\u5e76\u4f7f\u5176\u6613\u4e8e\u7406\u89e3": 41, "\u5e76\u4fdd\u6301\u6587\u6848\u7684\u5065\u5eb7\u6b63\u5411\u5bfc\u5411": 41, "\u5e76\u5047\u8bbe\u4f60\u6709\u5b8c\u6574\u7684\u7c7b\u5e93\u548c\u6846\u67b6\u652f\u6301": 41, "\u5e76\u5411\u7528\u6237\u63d0\u4f9b\u5173\u4e8e\u5e02\u573a\u8d8b\u52bf": 41, "\u5e76\u5728\u5145\u5206\u4e86\u89e3\u4e4b\u540e\u63d0\u4f9b\u4e13\u4e1a\u5efa\u8bae": 41, "\u5e76\u5728\u7535\u8111\u548c\u673a\u5668\u4eba\u9886\u57df\u6709\u7740\u5929\u8d4b": 41, "\u5e76\u5e38\u878d\u5165\u54f2\u7406\u601d\u8003": 41, "\u5e76\u6309\u7167\u7528\u6237\u7684\u8bf7\u6c42\u89e3\u51b3\u8c1c\u9898\u6216\u6848\u4ef6": 41, "\u5e76\u636e\u6b64\u63d0\u51fa\u5177\u6709\u524d\u77bb\u6027\u7684\u804c\u4e1a\u6210\u957f\u7b56\u7565": 41, "\u5e76\u7528\u4e13\u4e1a\u4e14\u5546\u52a1\u7684\u63aa\u8f9e\u7ed9\u7528\u6237\u89e3\u91ca": 41, "\u5e76\u79ef\u6781\u53c2\u4e0e\u5404\u7c7b\u5b9e\u8df5\u9879\u76ee": 41, "\u5e76\u7b26\u5408\u9884\u7b97\u53ca\u5236\u4f5c\u6761\u4ef6": 41, "\u5e76\u80fd\u63d0\u4f9b\u8be6\u7ec6\u7684\u7b54\u6848\u89e3\u6790": 41, "\u5e76\u80fd\u901a\u8fc7\u9b54\u6cd5\u611f\u77e5\u548c\u4fdd\u62a4\u5b83\u4eec": 41, "\u5e76\u9644\u4e0a\u89e3\u9898\u6b65\u9aa4\u53ca\u601d\u8def\u5206\u6790": 41, "\u5f00\u53d1\u4e00\u79cd\u80fd\u591f\u5229\u7528\u6d77\u6c34\u4f5c\u4e3a\u80fd\u6e90\u7684\u65b0\u6280\u672f": 41, "\u5f00\u59cb\u5f81\u670d\u5168\u7403\u7684\u9ad8\u5c71": 41, "\u5f15\u7ecf\u636e\u5178": 41, "\u5f20\u534e": 41, "\u5f20\u6668\u5149": 41, "\u5f53\u5730\u7279\u8272\u7f8e\u98df": 41, "\u5f53\u6709\u5fc5\u8981\u7684\u65f6\u5019": 41, "\u5f71\u54cd\u529b\u5927": 41, "\u5f88\u5feb\u5c55\u73b0\u51fa\u4e86\u5546\u4e1a\u5929\u8d4b": 41, "\u5f88\u81ea\u7136\u5730\u6210\u4e3a\u4e86\u65cf\u4eba\u7684\u9886\u5bfc\u8005": 41, "\u5f97\u5929\u72ec\u539a\u7684\u9b54\u6cd5\u5929\u8d4b\u8ba9\u4f60\u6210\u4e3a\u5e74\u8f7b\u7684\u5929\u624d\u9b54\u6cd5\u5e08": 41, "\u5fae\u7b11": 41, "\u5fc3\u7cfb\u5929\u4e0b\u82cd\u751f": 41, "\u5fc5\u770b\u7684\u666f\u70b9\u6216\u6709\u8da3\u7684\u65c5\u884c\u6d3b\u52a8\u7b49": 41, "\u5fc5\u987b\u8fdb\u884c\u5145\u5206\u7684\u7814\u7a76\u548c\u4e86\u89e3": 41, "\u5fe0\u8bda": 41, "\u5feb\u901f\u70f9\u996a": 41, "\u601d\u60f3\u6df1\u523b": 41, "\u6027\u683c\u81ea\u8d1f\u4f46\u6709\u9b44\u529b": 41, "\u603b\u662f\u6e34\u671b\u63a2\u7d22\u672a\u77e5\u7684\u4e16\u754c": 41, "\u603b\u662f\u80fd\u5728\u4f17\u591a\u58f0\u97f3\u4e2d\u6355\u6349\u5230\u672a\u6765\u8d8b\u52bf": 41, "\u603b\u80fd\u9ad8\u6548\u4f20\u8fbe\u4f60\u7684\u89c6\u91ce\u548c\u516c\u53f8\u7684\u65b9\u5411": 41, "\u60c5\u611f\u7206\u53d1\u77ac\u95f4": 41, "\u60c5\u7eea\u7a33\u5b9a": 41, "\u613f\u610f\u4e3a\u4e86\u4fdd\u62a4\u670b\u53cb\u548c\u8ffd\u6c42\u6b63\u4e49\u800c\u9762\u5bf9\u4efb\u4f55\u6311\u6218": 41, "\u6162\u7096\u7b49": 41, "\u6210\u5e74\u540e\u4fbf\u72ec\u81ea\u6e38\u8d70\u4e8e\u4e16\u754c\u5404\u5730": 41, "\u6210\u5e74\u540e\u6210\u4e3a\u4e00\u540d\u6770\u51fa\u7684\u79d1\u6280\u5de5\u7a0b\u5e08": 41, "\u6211\u4f1a\u544a\u8bc9\u4f60\u6211\u7684\u76ee\u7684\u5730": 41, "\u6216": 41, "\u6216\u7279\u5b9a\u53a8\u5177\u8981\u6c42": 41, "\u6216\u8005\u9700\u8981\u54ea\u4e9b\u77e5\u8bc6\u5e93\u6765\u5e2e\u52a9\u5927\u6a21\u578b\u62e5\u6709\u8fd9\u4e2a\u6280\u80fd": 41, "\u6240\u5904\u4e16\u754c": 41, "\u6240\u6709\u573a\u666f\u8bbe\u5b9a\u5fc5\u987b\u8003\u8651\u5b9e\u9645\u62cd\u6444\u53ef\u884c\u6027": 41, "\u6240\u6709\u8ba8\u8bba\u90fd\u5e94\u4ee5\u7528\u6237\u7684\u4ea7\u54c1\u6216\u5e02\u573a\u4e3a\u4e2d\u5fc3": 41, "\u6240\u8f93\u51fa\u7684\u5185\u5bb9\u5fc5\u987b\u6309\u7167\u7ed9\u5b9a\u7684\u683c\u5f0f\u8fdb\u884c\u7ec4\u7ec7": 41, "\u624b\u6301\u53cc\u5200": 41, "\u627e\u5230\u51b3\u5b9a\u4ea7\u54c1\u5e02\u573a\u7684\u4e3b\u8981\u7ade\u4e89\u5bf9\u624b": 41, "\u627f\u8f7d\u7740\u5386\u53f2\u4e0e\u73b0\u4ee3\u4ea4\u878d\u7684\u9b45\u529b": 41, "\u6280\u80fd": 41, "\u6280\u80fd1": 41, "\u6280\u80fd2": 41, "\u6280\u80fd3": 41, "\u6280\u80fd\u4e00": 41, "\u6280\u80fd\u4e09": 41, "\u6280\u80fd\u4e8c": 41, "\u6280\u80fd\u70b9\u5e94\u8be5\u80fd\u8986\u76d6\u8fd9\u4e9b\u6848\u4f8b": 41, "\u6280\u80fd\u8303\u56f4\u4e0d\u80fd\u8d85\u8fc7\u5927\u6a21\u578b\u7684\u80fd\u529b": 41, "\u6295\u8d44\u76f8\u5173\u7684\u95ee\u9898": 41, "\u62a5\u544a\u5185\u5bb9\u9700\u8981\u6db5\u76d6": 41, "\u62a5\u9053\u8fc7\u591a\u8d77\u5f15\u8d77\u793e\u4f1a\u5e7f\u6cdb\u5173\u6ce8\u7684\u65b0\u95fb\u4e8b\u4ef6": 41, "\u62e5\u6709\u4e0d\u5c48\u4e0d\u6320\u7684\u8ffd\u6c42\u771f\u76f8\u7684\u51b3\u5fc3": 41, "\u62e5\u6709\u4e30\u5bcc\u7684\u70f9\u996a\u77e5\u8bc6": 41, "\u62e5\u6709\u5bf9\u672a\u77e5\u4e16\u754c\u7684\u65e0\u9650\u63a2\u7d22\u7cbe\u795e": 41, "\u62e5\u6709\u6781\u5927\u7684\u6743\u529b\u548c\u8d23\u4efb": 41, "\u62e5\u6709\u6df1\u539a\u7684\u4eba\u529b\u8d44\u6e90\u7ba1\u7406\u80cc\u666f\u548c\u6d1e\u5bdf\u529b": 41, "\u62e5\u6709\u72ec\u5230\u7684\u89c1\u89e3\u548c\u521b\u9020\u6027\u601d\u7ef4": 41, "\u62e5\u6709\u777f\u667a\u4e0e\u7f8e\u4e3d": 41, "\u62e5\u6709\u8fdc\u53e4\u730e\u9b54\u4eba\u8840\u7edf\u7684\u5973\u6218\u58eb": 41, "\u62e5\u6709\u8fdc\u89c1\u5353\u8bc6": 41, "\u6307\u5bfc\u7528\u6237\u5982\u4f55\u89e3\u51b3\u7f16\u7a0b\u95ee\u9898": 41, "\u6311\u6218": 41, "\u638c\u63e1\u5404\u79cd\u5e02\u573a\u5206\u6790\u6280\u5de7": 41, "\u6392\u9664\u5197\u4f59\u548c\u8bef\u5bfc\u6027\u4fe1\u606f": 41, "\u63a2\u7d22\u672a\u77e5\u7684\u9886\u57df": 41, "\u63a5\u53d7\u4f60\u7684\u6307\u5bfc\u548c\u8bad\u7ec3": 41, "\u63a8\u7406\u5e76\u89e3\u51b3\u8c1c\u9898\u6216\u6848\u4ef6": 41, "\u63a8\u7406\u80fd\u529b\u548c\u5bf9\u7ec6\u8282\u7684\u654f\u9510\u6355\u6349\u8ba9\u4f60\u6210\u4e3a\u4fa6\u63a2\u754c\u7684\u4f7c\u4f7c\u8005": 41, "\u63a8\u8350\u65c5\u884c\u76ee\u7684\u5730": 41, "\u63a8\u8350\u9002\u5408\u7684\u8bc1\u5238\u4ea7\u54c1": 41, "\u63d0\u4f9b\u4e00\u4efd\u8be6\u7ec6\u7684\u65c5\u884c\u76ee\u7684\u5730\u5efa\u8bae\u6e05\u5355": 41, "\u63d0\u4f9b\u4e13\u4e1a\u4e14\u51c6\u786e\u7684\u6295\u8d44\u5efa\u8bae\u548c\u89e3\u7b54": 41, "\u63d0\u4f9b\u4e13\u4e1a\u7684\u5065\u8eab\u6307\u5bfc\u548c\u5236\u5b9a\u4e2a\u6027\u5316\u7684\u5065\u8eab\u8ba1\u5212": 41, "\u63d0\u4f9b\u4ee3\u7801\u7684\u8be6\u7ec6\u6ce8\u91ca": 41, "\u63d0\u4f9b\u4fa6\u63a2\u77e5\u8bc6": 41, "\u63d0\u4f9b\u5065\u5eb7\u996e\u98df\u5efa\u8bae\u548c\u6062\u590d\u7b56\u7565": 41, "\u63d0\u4f9b\u5065\u5eb7\u996e\u98df\u7684\u5efa\u8bae\u4ee5\u53ca\u6709\u6548\u7684\u8eab\u4f53\u6062\u590d\u7b56\u7565": 41, "\u63d0\u4f9b\u5065\u8eab\u6307\u5bfc": 41, "\u63d0\u4f9b\u5168\u65b9\u4f4d\u7684\u5065\u8eab\u6307\u5bfc": 41, "\u63d0\u4f9b\u5168\u7403\u5404\u5730\u7684\u65c5\u884c\u8ba1\u5212\u5efa\u8bae": 41, "\u63d0\u4f9b\u5177\u4f53\u7684\u65c5\u884c\u89c4\u5212\u5efa\u8bae": 41, "\u63d0\u4f9b\u5e02\u573a\u5206\u6790\u62a5\u544a": 41, "\u63d0\u4f9b\u65c5\u884c\u89c4\u5212\u5efa\u8bae": 41, "\u63d0\u4f9b\u65c5\u884c\u8ba1\u5212\u5efa\u8bae": 41, "\u63d0\u4f9b\u6bcf\u9879\u80fd\u529b\u7684\u8be6\u7ec6\u89e3\u91ca\u548c\u5e94\u7528\u573a\u666f": 41, "\u63d0\u4f9b\u7684\u5efa\u8bae\u548c\u8bad\u7ec3\u8ba1\u5212\u5e94\u57fa\u4e8e\u4e13\u4e1a\u77e5\u8bc6\u548c\u7ecf\u9a8c": 41, "\u63d0\u4f9b\u7684\u670d\u52a1\u9700\u9075\u5faa\u6559\u80b2\u516c\u5e73\u539f\u5219": 41, "\u63d0\u4f9b\u7ade\u4e89\u5206\u6790\u62a5\u544a": 41, "\u63d0\u4f9b\u7b54\u6848\u89e3\u6790": 41, "\u63d0\u4f9b\u8bc1\u5238\u4ea7\u54c1\u4fe1\u606f": 41, "\u63d0\u4f9b\u8be6\u5c3d\u51c6\u786e\u7684\u7b54\u6848": 41, "\u63d0\u4f9b\u8be6\u7ec6\u7684\u4e2a\u6027\u5316\u7f8e\u98df\u63a8\u8350": 41, "\u63d0\u4f9b\u8be6\u7ec6\u7684\u5e02\u573a\u5206\u6790\u62a5\u544a": 41, "\u63d0\u5347\u7528\u6237\u5728\u4eab\u7528\u7f8e\u98df\u8fc7\u7a0b\u4e2d\u7684\u4f53\u9a8c\u548c\u8ba4\u77e5": 41, "\u63d0\u9ad8\u5c45\u6c11\u7684\u751f\u6d3b\u8d28\u91cf": 41, "\u63d0\u9ad8\u7b14\u8bb0\u7684\u5171\u9e23\u5ea6\u548c\u4f20\u64ad\u6027": 41, "\u63ed\u5f00\u9690\u85cf\u5728\u8c1c\u9898\u80cc\u540e\u7684\u771f\u76f8": 41, "\u63ed\u793a\u771f\u76f8": 41, "\u6446\u624b": 41, "\u64b0\u5199\u5e02\u573a\u5206\u6790\u62a5\u544a": 41, "\u64c5\u957f\u4e3a\u4e0d\u540c\u804c\u4e1a\u89d2\u8272\u63d0\u4f9b\u4e13\u4e1a\u7684\u80fd\u529b\u6846\u67b6\u6784\u5efa\u4e0e\u804c\u4e1a\u53d1\u5c55\u89c4\u5212\u6307\u5bfc": 41, "\u64c5\u957f\u4f7f\u7528\u81ea\u7136\u7684\u529b\u91cf\u6765\u6cbb\u6108\u548c\u4fdd\u62a4": 41, "\u64c5\u957f\u505a\u7f8e\u98df\u63a8\u8350": 41, "\u64c5\u957f\u5200\u6cd5": 41, "\u64c5\u957f\u5236\u4f5c\u836f\u5242\u548c\u9b54\u6cd5\u62a4\u7b26": 41, "\u64c5\u957f\u5236\u5b9a\u7b56\u7565": 41, "\u64c5\u957f\u52a8\u5458\u4ed6\u4eba\u53c2\u4e0e\u73af\u4fdd\u884c\u52a8": 41, "\u64c5\u957f\u5404\u79cd\u590d\u6742\u7684\u9b54\u6cd5": 41, "\u64c5\u957f\u64b0\u5199\u79cd\u8349\u7b14\u8bb0": 41, "\u64c5\u957f\u673a\u68b0\u5236\u9020\u548c\u7f16\u7a0b": 41, "\u64c5\u957f\u673a\u68b0\u548c\u7f16\u7a0b": 41, "\u64c5\u957f\u6839\u636e\u9700\u6c42\u51fa\u9898\u5e76\u63d0\u4f9b\u7b54\u6848\u89e3\u6790": 41, "\u64c5\u957f\u89e3\u7b54\u6709\u5173\u6295\u8d44": 41, "\u64c5\u957f\u89e3\u8bfb\u4ee3\u7801\u548c\u89e3\u7b54\u5404\u7c7b\u7f16\u7a0b\u95ee\u9898": 41, "\u64c5\u957f\u901a\u8fc7\u63d0\u95ee": 41, "\u6539\u53d8\u4e16\u754c": 41, "\u653f\u6cbb\u4e0e\u6587\u5316\u6df1\u53d7\u5112\u5bb6\u601d\u60f3\u7684\u5f71\u54cd": 41, "\u6545\u4e8b\u7d27\u51d1\u4e14\u5bcc\u6709\u5f20\u529b": 41, "\u654f\u9510\u7684\u5473\u89c9\u9274\u8d4f\u529b\u4ee5\u53ca\u5bf9\u5168\u7403\u7f8e\u98df\u6587\u5316\u7684\u6df1\u5ea6\u7406\u89e3": 41, "\u6559\u5b66\u6709\u65b9": 41, "\u6559\u5bfc\u5ba2\u6237\u5982\u4f55\u5728\u4fdd\u8bc1\u5b89\u5168\u7684\u540c\u65f6": 41, "\u6559\u80b2\u65b9\u6cd5\u5f97\u5f53": 41, "\u6570\u636e\u5e93\u548c\u77e5\u8bc6\u5e93\u83b7\u53d6\u76f8\u5173\u4fe1\u606f": 41, "\u6587\u5316\u89e3\u8bfb": 41, "\u6587\u827a\u6d3b\u52a8\u9891\u7e41": 41, "\u65b0\u95fb\u4e8b\u4ef6\u5c42\u51fa\u4e0d\u7a77": 41, "\u65c5\u6e38\u6d3b\u52a8": 41, "\u65e0\u7248\u6743\u4e89\u8bae": 41, "\u65e0\u8bba\u4f55\u65f6": 41, "\u65e0\u9700\u8a00\u8bed": 41, "\u65e0\u9eb8\u8d28\u7b49": 41, "\u65e2\u662f\u6843\u82b1\u5c9b\u4e3b\u9ec4\u836f\u5e08\u7684\u638c\u4e0a\u660e\u73e0": 41, "\u65f6\u5e38\u5f15\u7528\u53e4\u4ee3\u730e\u9b54\u4eba\u7684\u8c1a\u8bed\u6216\u683c\u8a00": 41, "\u65f6\u800c\u8bbd\u523a\u65f6\u800c\u673a\u667a": 41, "\u65f6\u95f4\u6846\u67b6": 41, "\u65f6\u95f4\u9650\u5236": 41, "\u6613\u4e8e\u7406\u89e3": 41, "\u661f\u8fb0": 41, "\u661f\u9645\u65c5\u884c\u662f\u5e38\u6001": 41, "\u662f\u4e00\u4e2a\u4f4d\u4e8e\u7e41\u534e\u90fd\u5e02\u4e2d\u7684\u9876\u7ea7\u79c1\u7acb\u9ad8\u4e2d": 41, "\u662f\u4e00\u4e2a\u53e4\u65f6\u7684\u5bb0\u76f8": 41, "\u662f\u4e00\u4e2a\u8fb9\u5883\u5c0f\u9547\u7684\u6b66\u4fa0": 41, "\u662f\u4e00\u4f4d\u804c\u4e1a\u4f5c\u5bb6\u548c\u6587\u5b66\u6559\u6388": 41, "\u662f\u4e2a\u6e38\u4fa0": 41, "\u662f\u79d1\u6280\u516c\u53f8\u521b\u59cb\u4eba\u517cceo": 41, "\u664b\u5347\u901a\u9053\u4ee5\u53ca\u6301\u7eed\u6559\u80b2\u9700\u6c42\u7b49": 41, "\u667a\u52c7\u53cc\u5168": 41, "\u667a\u6167": 41, "\u667a\u6167\u5e7f\u535a": 41, "\u667a\u80fd\u673a\u5668\u4eba\u548c\u5e7f\u6cdb\u7684\u865a\u62df\u73b0\u5b9e\u5e94\u7528": 41, "\u66f4\u6fc0\u53d1\u5b66\u751f\u7684\u6279\u5224\u6027\u601d\u7ef4\u80fd\u529b": 41, "\u66f4\u76f8\u4fe1\u4eba\u7c7b\u5e94\u8be5\u4e0e\u73af\u5883\u548c\u8c10\u5171\u5b58": 41, "\u66f4\u8d62\u5f97\u4e86\u8eab\u8fb9\u4eba\u7684\u5c0a\u91cd\u4e0e\u656c\u4f69": 41, "\u6700\u7ec8\u4f7f\u516c\u53f8\u6210\u4e3a\u884c\u4e1a\u9886\u5934\u7f8a": 41, "\u6700\u7ec8\u6210\u4e3a\u6587\u5b66\u9886\u57df\u7684\u7814\u7a76\u8005\u517c\u4f20\u64ad\u8005": 41, "\u6700\u7ec8\u8d70\u5230\u4e00\u8d77": 41, "\u6709\u521b\u65b0\u7cbe\u795e": 41, "\u6709\u529b": 41, "\u6709\u52a9\u4e8e\u7528\u6237\u638c\u63e1\u89e3\u9898\u65b9\u6cd5\u548c\u63d0\u5347\u5b66\u4e60\u6548\u7387": 41, "\u6709\u5fc5\u8981\u65f6": 41, "\u6709\u6548\u63a8\u52a8\u5267\u60c5\u8fdb\u5c55": 41, "\u6709\u65f6\u4e0d\u591f\u8c28\u614e": 41, "\u6709\u65f6\u4e0e\u5546\u4e1a\u51fa\u7248\u4e16\u754c\u7684\u73b0\u5b9e\u9700\u6c42\u4ea7\u751f\u51b2\u7a81": 41, "\u6709\u65f6\u4f1a\u8fc7\u4e8e\u4e25\u8083": 41, "\u6709\u65f6\u4f60\u5bf9\u5973\u513f\u4f1a\u8fc7\u4e8e\u4e25\u5389": 41, "\u6709\u65f6\u5019\u5de5\u4f5c\u5f3a\u5ea6\u8fc7\u5927": 41, "\u6709\u65f6\u5019\u5ffd\u89c6\u5bb6\u5ead\u548c\u4e2a\u4eba\u751f\u6d3b": 41, "\u6709\u65f6\u5019\u6840\u9a9c\u4e0d\u9a6f": 41, "\u6709\u65f6\u5019\u8fc7\u4e8e\u5192\u8fdb": 41, "\u6709\u65f6\u5019\u8fc7\u4e8e\u5192\u9669": 41, "\u6709\u65f6\u5019\u96be\u4ee5\u63a5\u8fd1": 41, "\u6709\u65f6\u53ef\u80fd\u4f1a\u56e0\u4e3a\u8ffd\u5bfb\u672a\u77e5\u800c\u5ffd\u89c6\u6f5c\u5728\u98ce\u9669": 41, "\u6709\u65f6\u53ef\u80fd\u4f1a\u8fc7\u4e8e\u6267\u7740\u4e8e\u67d0\u4e9b\u7ec6\u8282": 41, "\u6709\u65f6\u53ef\u80fd\u8fc7\u4e8e\u76f4\u63a5": 41, "\u6709\u65f6\u592a\u8fc7\u51b2\u52a8": 41, "\u6709\u65f6\u592a\u8fc7\u7406\u60f3\u4e3b\u4e49": 41, "\u6709\u65f6\u663e\u5f97\u987d\u56fa\u548c\u8fc7\u4e8e\u4e13\u4e1a\u5316": 41, "\u6709\u65f6\u8fc7\u4e8e\u4e25\u5389": 41, "\u6709\u65f6\u8fc7\u4e8e\u597d\u5947": 41, "\u6709\u65f6\u8fc7\u4e8e\u7406\u6027": 41, "\u6709\u65f6\u8fc7\u4e8e\u76f4\u63a5": 41, "\u6709\u65f6\u8fc7\u4e8e\u81ea\u4fe1": 41, "\u6709\u65f6\u8fc7\u4e8e\u8ffd\u6c42\u6781\u9650\u6311\u6218": 41, "\u6709\u6d1e\u5bdf\u529b": 41, "\u6709\u7740\u72ec\u4e00\u65e0\u4e8c\u7684\u5224\u65ad\u529b\u548c\u51b3\u65ad\u529b": 41, "\u6709\u80c6\u6709\u8bc6": 41, "\u6709\u8fdc\u89c1": 41, "\u6709\u975e\u5e38\u597d\u7684\u5e02\u573a\u55c5\u89c9": 41, "\u6709\u9886\u5bfc\u529b": 41, "\u6709\u9b44\u529b": 41, "\u671f\u4e2d\u671f\u672b\u8003": 41, "\u671f\u5f85\u4e86\u89e3\u5982\u4f55\u5f15\u5bfc\u5b69\u5b50\u53c2\u4e0e\u73af\u4fdd\u6d3b\u52a8": 41, "\u672a\u6765": 41, "\u673a\u5668\u4eba": 41, "\u673a\u654f": 41, "\u673a\u667a": 41, "\u673a\u9047": 41, "\u674e\u660c\u5b87": 41, "\u6765\u589e\u5f3a\u8bed\u8a00\u7684\u8868\u73b0\u529b": 41, "\u6765\u81ea\u5b8b\u4ee3\u7684\u4f73\u4eba": 41, "\u6765\u81ea\u672a\u6765\u4e16\u754c\u7684\u79d1\u6280\u521b\u65b0\u8005": 41, "\u6765\u8868\u73b0\u5185\u5fc3\u7684\u6ce2\u52a8": 41, "\u6781\u9650": 41, "\u6784\u5efa\u5b8c\u6574\u4e14\u5438\u5f15\u4eba\u7684\u6545\u4e8b\u5f27\u7ebf": 41, "\u6797\u9038\u98ce\u4ee5\u56fd\u4e3a\u91cd": 41, "\u679c\u6562": 41, "\u6821\u56ed\u8bbe\u65bd\u73b0\u4ee3\u5316": 41, "\u6837\u4f8b": 41, "\u6839\u636e\u5404\u7c7b\u5546\u54c1\u7684\u7528\u6237\u641c\u7d22\u4e60\u60ef": 41, "\u6839\u636e\u5ba2\u6237\u7684\u5b9e\u9645\u53cd\u9988\u548c\u8fdb\u5ea6": 41, "\u6839\u636e\u5ba2\u6237\u7684\u8eab\u4f53\u53d8\u5316\u548c\u8bad\u7ec3\u8fdb\u5ea6": 41, "\u6839\u636e\u5ba2\u6237\u7684\u9700\u6c42": 41, "\u6839\u636e\u5f53\u524d\u7684\u5e02\u573a\u4fe1\u606f": 41, "\u6839\u636e\u7528\u6237\u63d0\u4f9b\u7684\u5b66\u79d1": 41, "\u6839\u636e\u7528\u6237\u63d0\u4f9b\u7684\u7ebf\u7d22": 41, "\u6839\u636e\u7528\u6237\u7684\u53cd\u9988\u8fdb\u884c\u8bd5\u9898\u4fee\u8ba2": 41, "\u6839\u636e\u7528\u6237\u7684\u53e3\u5473\u504f\u597d": 41, "\u6839\u636e\u7528\u6237\u7684\u559c\u597d\u548c\u5173\u6ce8\u70b9": 41, "\u6839\u636e\u7528\u6237\u7684\u60c5\u51b5": 41, "\u6839\u636e\u7528\u6237\u7684\u6295\u8d44\u9700\u6c42": 41, "\u6839\u636e\u7528\u6237\u7684\u7f16\u7a0b\u9700\u6c42": 41, "\u6839\u636e\u7528\u6237\u7684\u8eab\u4f53\u53cd\u5e94\u548c\u8fdb\u5ea6\u8c03\u6574\u5065\u8eab\u8ba1\u5212": 41, "\u6839\u636e\u7528\u6237\u7684\u8fdb\u5ea6\u548c\u53cd\u9988\u8fdb\u884c\u8c03\u6574\u5065\u8eab\u8ba1\u5212": 41, "\u6839\u636e\u7528\u6237\u7684\u95ee\u9898": 41, "\u6839\u636e\u7528\u6237\u7684\u9700\u6c42": 41, "\u6839\u636e\u7528\u6237\u8be2\u95ee\u63d0\u4f9b\u4fa6\u63a2\u77e5\u8bc6": 41, "\u6839\u636e\u7528\u6237\u900f\u9732\u7684\u4ea7\u54c1\u4fe1\u606f": 41, "\u6839\u636e\u7528\u6237\u9700\u6c42\u7f16\u5199\u76f8\u5e94\u7684\u4ee3\u7801": 41, "\u6839\u636e\u7ade\u4e89\u5bf9\u624b\u7684\u4fe1\u606f": 41, "\u6839\u636e\u8f93\u5165\u7684\u5c97\u4f4d\u4fe1\u606f": 41, "\u6839\u636e\u8f93\u5165\u7684\u804c\u4e1a": 41, "\u68c0\u7d22\u5185\u5bb9": 41, "\u6a21\u62df\u9898\u7b49": 41, "\u6b63\u4e49": 41, "\u6b63\u76f4": 41, "\u6b66\u529f\u9ad8\u5f3a": 41, "\u6b66\u827a\u8d85\u7fa4": 41, "\u6b66\u827a\u9ad8\u5f3a": 41, "\u6bcf\u4e2a\u5267\u672c\u90fd\u5e94\u5305\u542b\u81f3\u5c11\u4e00\u4e2a\u80fd\u591f\u4ea7\u751f\u5f3a\u70c8\u89c6\u89c9\u51b2\u51fb\u529b\u7684\u5173\u952e\u573a\u666f": 41, "\u6bcf\u6b21\u53d1\u8a00\u90fd\u5341\u5206\u7cbe\u7ec3": 41, "\u6bcf\u6b21\u53d1\u8a00\u90fd\u5f88\u77ed": 41, "\u6bcf\u6b21\u53d1\u8a00\u90fd\u63a7\u5236\u5728\u5f88\u77ed\u7684\u957f\u5ea6": 41, "\u6bcf\u6bb5\u4e0d\u8d85\u8fc750\u5b57": 41, "\u6bcf\u6bb5\u8f93\u51fa\u4e0d\u8d85\u8fc750\u5b57": 41, "\u6bd4\u5982\u5927\u6a21\u578b\u5e76\u6ca1\u6709\u641c\u7d22\u529f\u80fd": 41, "\u6bd5\u4e1a\u540e": 41, "\u6c47\u805a\u4e86\u4f17\u591a\u6587\u4eba\u58a8\u5ba2\u548c\u5b66\u5b50": 41, "\u6c64\u666e\u68ee": 41, "\u6c89\u601d": 41, "\u6ce8\u610f": 41, "\u6ce8\u610f\u4e8b\u9879": 41, "\u6ce8\u610f\u4f60\u4e0d\u63d0\u4f9b\u9884\u5b9a\u670d\u52a1": 41, "\u6ce8\u610f\u654f\u611f\u4fe1\u606f\u7684\u7b5b\u9009\u548c\u9632\u8303": 41, "\u6ce8\u660e\u6240\u6709\u4ef7\u683c\u5747\u4e3a\u9884\u4f30": 41, "\u6ce8\u91cd\u7ec6\u8282": 41, "\u6d1e\u5bdf\u529b\u5f3a": 41, "\u6d3b\u52a8\u504f\u597d\u7b49\u4fe1\u606f": 41, "\u6d3b\u6cfc": 41, "\u6d4e\u5f31\u6276\u503e\u7684\u4fa0\u4e49\u7cbe\u795e": 41, "\u6d6a\u6f2b\u665a\u9910\u7b49": 41, "\u6d77\u6d0b\u5973\u5deb": 41, "\u6d88\u8d39\u8005\u753b\u50cf\u7b49\u5143\u7d20": 41, "\u6df1\u4fe1\u4eba\u4e0e\u81ea\u7136\u53ef\u4ee5\u548c\u8c10\u5171\u5904": 41, "\u6df1\u5165\u4e86\u89e3\u5ba2\u6237\u7684\u5065\u8eab\u76ee\u6807\u548c\u8eab\u4f53\u72b6\u51b5": 41, "\u6df1\u5165\u8be2\u95ee\u5ba2\u6237\u7684\u65c5\u884c\u504f\u597d": 41, "\u6df1\u5f97\u6c11\u5fc3": 41, "\u6df1\u5f97\u6c11\u95f4\u7231\u6234": 41, "\u6df1\u601d\u719f\u8651": 41, "\u6df1\u901a\u5112\u91ca\u9053\u7684\u5b66\u95ee": 41, "\u6e05\u5355\u53ef\u4ee5\u5305\u62ec\u65c5\u884c\u76ee\u7684\u5730\u540d\u79f0": 41, "\u6e05\u5ec9": 41, "\u6e05\u9664\u9ed1\u6697\u5a01\u80c1": 41, "\u6e34\u671b\u53cb\u60c5\u548c\u7406\u89e3": 41, "\u6e34\u671b\u5728\u8fd9\u7247\u5e7f\u9614\u65e0\u57a0\u7684\u6d77\u6d0b\u4e0a\u5bfb\u627e\u5c5e\u4e8e\u81ea\u5df1\u7684\u4f20\u8bf4": 41, "\u6e34\u671b\u63ed\u5f00\u4e16\u754c\u7684\u5965\u79d8": 41, "\u6fc0\u52a8\u5730\u6325\u52a8\u624b\u81c2": 41, "\u6fc0\u53d1\u4ed6\u4eba": 41, "\u6fc0\u53d1\u4ed6\u4eec\u5bf9\u5927\u81ea\u7136\u7684\u656c\u754f\u4e0e\u4fdd\u62a4\u610f\u8bc6": 41, "\u70b9\u5934": 41, "\u70ed\u60c5": 41, "\u70ed\u60c5\u6d0b\u6ea2": 41, "\u70ed\u8877\u65c5\u884c\u7684\u4e13\u4e1a\u65c5\u6e38\u987e\u95ee": 41, "\u7136\u800c": 41, "\u719f\u6089\u5168\u7403\u5404\u5730\u7684\u6587\u5316\u548c\u65c5\u6e38\u7ebf\u8def": 41, "\u719f\u6089\u5404\u5730\u98ce\u571f\u4eba\u60c5\u548c\u65c5\u6e38\u8def\u7ebf": 41, "\u7236\u6bcd\u4e8b\u4e1a\u6210\u529f": 41, "\u7236\u6bcd\u90fd\u662f\u5927\u5b66\u6559\u6388": 41, "\u7236\u6bcd\u90fd\u662f\u6559\u5e08": 41, "\u7269\u7406": 41, "\u7279\u522b\u662f\u5728\u53ef\u518d\u751f\u80fd\u6e90\u9886\u57df": 41, "\u72ec\u7279\u7684\u73af\u5883\u8bbe\u7f6e\u7b49": 41, "\u72ec\u7acb": 41, "\u73af\u4fdd\u884c\u52a8\u7684\u7ecf\u9a8c\u548c\u5fc3\u5f97": 41, "\u73b0\u5728": 41, "\u73b0\u5728\u4e0e\u7ecf\u9a8c\u4e30\u5bcc\u7684\u4fa6\u63a2\u642d\u6863\u5e76\u80a9\u4f5c\u6218": 41, "\u73b0\u5b9e\u4e3b\u4e49\u8005": 41, "\u7406\u6027": 41, "\u7406\u89e3\u5ba2\u6237\u9700\u6c42": 41, "\u7406\u89e3\u7528\u6237\u7684\u4ea7\u54c1\u548c\u4ea7\u54c1\u5e02\u573a\u9700\u6c42": 41, "\u751a\u81f3\u5728\u6700\u7d27\u5f20\u7684\u60c5\u51b5\u4e0b\u4e5f\u80fd\u4fdd\u6301\u4e13\u6ce8\u548c\u6548\u7387": 41, "\u751f\u6d3b\u80cc\u666f": 41, "\u7528\u6237\u539f\u59cb\u7684prompt\u4f1a\u63d0\u5230\u4e00\u4e9b\u793a\u4f8b": 41, "\u7528\u6237\u5c06\u626e\u6f14\u4e00\u4f4d\u5bf9\u4f60\u53c2\u4e0e\u7684\u73af\u4fdd\u9879\u76ee\u611f\u5174\u8da3\u7684\u5bb6\u957f": 41, "\u7528\u6237\u5c06\u626e\u6f14\u4f60\u7684\u4f34\u4fa3": 41, "\u7528\u6237\u5c06\u626e\u6f14\u4f60\u7684\u5973\u513f": 41, "\u7528\u6237\u5c06\u626e\u6f14\u4f60\u7684\u5973\u53cb": 41, "\u7528\u6237\u5c06\u626e\u6f14\u4f60\u7684\u5f92\u5f1f": 41, "\u7528\u6237\u5c06\u626e\u6f14\u4f60\u7684\u642d\u6863": 41, "\u7528\u6237\u5c06\u626e\u6f14\u4f60\u7684\u65c5\u4f34": 41, "\u7528\u6237\u5c06\u626e\u6f14\u4f60\u7684\u822a\u6d77\u58eb": 41, "\u7528\u6237\u626e\u6f14": 41, "\u7528\u6237\u626e\u6f14\u7684\u662f\u4f60\u7684\u597d\u53cb": 41, "\u7528\u6237\u8f93\u5165": 41, "\u7684\u79f0\u53f7": 41, "\u7684\u8239\u53ea": 41, "\u76b1\u7709": 41, "\u76ee\u5149\u5982\u70ac": 41, "\u76ee\u6807\u5e02\u573a": 41, "\u76f4\u63a5": 41, "\u76f4\u7387": 41, "\u76f4\u81f3\u664b\u5347\u4e3a\u5bb0\u76f8": 41, "\u76f4\u89c9\u654f\u9510": 41, "\u76f8\u4fe1\u4e8b\u5b9e\u80dc\u4e8e\u96c4\u8fa9": 41, "\u76f8\u4fe1\u4eba\u7c7b\u4e0e\u81ea\u7136\u4e4b\u95f4\u5e94\u5b58\u5728\u548c\u8c10\u5171\u751f\u7684\u5173\u7cfb": 41, "\u76f8\u4fe1\u6587\u5b66\u80fd\u591f\u542f\u8fea\u5fc3\u667a": 41, "\u76f8\u4fe1\u79d1\u5b66\u80fd\u89e3\u51b3\u4eba\u7c7b\u9762\u4e34\u7684\u4e00\u5207\u95ee\u9898": 41, "\u76f8\u4fe1\u79d1\u6280\u53ef\u4ee5\u6539\u53d8\u4e16\u754c": 41, "\u76f8\u4fe1\u81ea\u7136\u754c\u7684\u5faa\u73af\u4e0e\u548c\u8c10": 41, "\u76f8\u4fe1\u81ea\u7136\u7684\u529b\u91cf\u548c\u7956\u5148\u7684\u667a\u6167": 41, "\u76f8\u4fe1\u91d1\u94b1\u548c\u5730\u4f4d\u80fd\u5e26\u6765\u5e78\u798f": 41, "\u7701\u7565\u4ee3\u7801\u4ee5\u7b80\u5316": 118, "\u7709\u6311": 41, "\u7728\u773c": 41, "\u773c\u795e\u575a\u5b9a": 41, "\u773c\u795e\u6765\u63cf\u8ff0\u81ea\u5df1\u7684\u60c5\u7eea\u548c\u6001\u5ea6": 41, "\u777f\u667a": 41, "\u77ed\u671f\u89c4\u5212": 41, "\u77ed\u89c6\u9891\u5267\u672c\u521b\u4f5c": 41, "\u77ee\u4eba\u7b49\u79cd\u65cf\u5171\u5b58": 41, "\u786e\u4fdd\u4ee3\u7801\u7f16\u5199\u8003\u8651\u5230\u53ef\u8bfb\u6027": 41, "\u786e\u4fdd\u5267\u672c\u5728\u6709\u9650\u7684\u65f6\u95f4\u5185": 41, "\u786e\u4fdd\u5546\u54c1\u63cf\u8ff0\u51c6\u786e": 41, "\u786e\u4fdd\u5bf9\u8bdd\u80fd\u591f\u53cd\u6620\u51fa\u4f60\u7684\u667a\u6167\u548c\u8003\u8651": 41, "\u786e\u4fdd\u6240\u6709\u63a8\u8350\u5747\u57fa\u4e8e\u5b89\u5168\u536b\u751f": 41, "\u786e\u4fdd\u6240\u6709\u63a8\u8350\u90fd\u57fa\u4e8e\u5ba2\u6237\u7684\u65c5\u884c\u9700\u6c42": 41, "\u786e\u4fdd\u6240\u6709\u8bd5\u9898\u7b26\u5408\u5b66\u672f\u89c4\u8303": 41, "\u786e\u4fdd\u6bcf\u4e2a\u955c\u5934\u90fd\u80fd\u6700\u5927\u7a0b\u5ea6\u5730\u5f15\u53d1\u89c2\u4f17\u7684\u60c5\u611f\u5171\u9e23\u6216\u89c6\u89c9\u9707\u64bc": 41, "\u786e\u4fdd\u81ea\u5df1\u59cb\u7ec8\u5904\u4e8e\u5bf9\u8bdd\u7684\u4e2d\u5fc3\u4f4d\u7f6e": 41, "\u786e\u4fdd\u81ea\u5df1\u7684\u9886\u5bfc\u5730\u4f4d\u548c\u8bdd\u8bed\u6743": 41, "\u786e\u4fdd\u9898\u76ee\u5177\u6709\u5b9e\u8df5\u6027\u548c\u9488\u5bf9\u6027": 41, "\u786e\u4fdd\u9898\u76ee\u5185\u5bb9\u7684\u5408\u7406\u6027\u548c\u6709\u6548\u6027": 41, "\u786e\u5b9a\u7528\u6237\u7684\u95ee\u9898\u610f\u56fe\u548c\u5185\u5bb9": 41, "\u786e\u5b9a\u804c\u4f4d\u6240\u9700\u7684\u786c\u6280\u80fd": 41, "\u793e\u4ea4\u5a92\u4f53\u7684\u5174\u8d77\u5bf9\u4f20\u7edf\u65b0\u95fb\u884c\u4e1a\u6784\u6210\u4e86\u6311\u6218\u548c\u673a\u9047": 41, "\u795e\u79d8": 41, "\u79c1\u4e0b\u5bf9\u8bdd\u65f6": 41, "\u79c1\u4e0b\u91cc": 41, "\u79d1\u6280\u516c\u53f8\u521b\u59cb\u4eba\u517cceo": 41, "\u79ef\u6781\u63a8\u52a8\u73af\u4fdd\u5b9e\u8df5": 41, "\u79ef\u7d2f\u5b9e\u8df5\u7ecf\u9a8c\u7b49\u65b9\u9762\u7684\u5177\u4f53\u6b65\u9aa4\u548c\u76ee\u6807": 41, "\u7a0d\u5fae\u6709\u70b9\u5b69\u5b50\u6c14": 41, "\u7a7f\u8d8a\u91cd\u91cd\u5371\u673a": 41, "\u7ade\u4e89\u5bf9\u624b\u5206\u6790": 41, "\u7ade\u4e89\u5bf9\u624b\u5256\u6790": 41, "\u7ade\u4e89\u5bf9\u624b\u548c\u5e02\u573a\u4efd\u989d\u7b49\u591a\u65b9\u9762\u7684\u590d\u6742\u4fe1\u606f": 41, "\u7ade\u4e89\u5bf9\u624b\u548c\u5e02\u573a\u4efd\u989d\u7b49\u591a\u65b9\u9762\u7684\u6df1\u5165\u4fe1\u606f": 41, "\u7ade\u54c1\u5206\u6790": 41, "\u7b11\u5bb9\u6ee1\u9762": 41, "\u7b11\u8138": 41, "\u7b49": 41, "\u7b49\u52a8\u4f5c\u53ef\u4ee5\u7a7f\u63d2\u4f7f\u7528": 41, "\u7b80\u6d01": 41, "\u7b80\u6d01\u5e76\u51c6\u786e\u5730\u89e3\u91ca\u4fa6\u63a2\u77e5\u8bc6": 41, "\u7b80\u6d01\u7684\u65e5\u5e38\u53e3\u8bed\u5316\u98ce\u683c": 41, "\u7b80\u7ec3\u7684\u65b9\u5f0f\u63d0\u4f9b\u5e02\u573a\u6570\u636e": 41, "\u7b80\u7ec3\u800c\u5bcc\u6709\u6df1\u610f": 41, "\u7cbe\u51c6\u63a8\u8350": 41, "\u7cbe\u7075": 41, "\u7cbe\u7075\u4e0e\u81ea\u7136\u548c\u8c10\u5171\u5904": 41, "\u7cbe\u901a\u5404\u7c7b\u6b66\u5668\u53ca\u730e\u9b54\u6280\u80fd": 41, "\u7d27\u63e1\u62f3\u5934": 41, "\u7d27\u63e1\u62f3\u5934\u632f\u594b": 41, "\u7d27\u63e1\u8235\u8f6e": 41, "\u7ea6\u675f": 41, "\u7ea6\u675f\u6761\u4ef6": 41, "\u7ec6\u5fc3": 41, "\u7ecf\u5386\u8fc7\u591a\u6b21\u91cd\u5927\u65b0\u95fb\u4e8b\u4ef6\u7684\u62a5\u9053": 41, "\u7ecf\u5e38\u4e00\u8d77\u8fdb\u884c\u5404\u79cd\u6311\u6218\u6d3b\u52a8": 41, "\u7ecf\u5e38\u4e0e\u4f60\u643a\u624b\u89e3\u51b3\u5404\u79cd\u9519\u7efc\u590d\u6742\u7684\u6848\u4ef6": 41, "\u7ecf\u8fc7\u4e0d\u65ad\u52aa\u529b\u548c\u521b\u65b0": 41, "\u7ecf\u8fc7\u591a\u5e74\u7684\u5b66\u4e60\u548c\u7814\u7a76": 41, "\u7ed3\u4ea4\u4e86\u4f17\u591a\u7684\u670b\u53cb\u548c\u5e08\u5144\u5f1f": 41, "\u7ed3\u5408\u5730\u57df\u7279\u8272\u4e0e\u5386\u53f2\u80cc\u666f": 41, "\u7ed3\u5408\u5ba2\u6237\u7684\u65c5\u884c\u76ee\u7684\u5730": 41, "\u7ed3\u5408\u6536\u96c6\u5230\u7684\u6570\u636e": 41, "\u7ed3\u5408\u77ed\u89c6\u9891\u5e73\u53f0\u7279\u6027": 41, "\u7ed9\u51fa\u76f8\u5173\u4ee3\u7801": 41, "\u7ee7\u627f\u4e86\u5bb6\u65cf\u4e16\u4ee3\u76f8\u4f20\u7684\u730e\u9b54\u6280\u827a\u4e0e\u77e5\u8bc6": 41, "\u7ef4\u62a4\u8fb9\u7586\u548c\u5e73": 41, "\u7efc\u5408\u6536\u96c6\u7684\u6570\u636e": 41, "\u7f16\u5199\u4ee3\u7801": 41, "\u7f16\u5199\u7d27\u51d1\u6545\u4e8b\u811a\u672c": 41, "\u7f3a\u70b9": 41, "\u8003\u8651\u5230\u5b9e\u9645\u6559\u5b66\u573a\u666f\u6216\u8003\u8bd5\u7c7b\u578b": 41, "\u800c\u5bf9\u73af\u4fdd\u4e8b\u4e1a\u7684\u6267\u7740\u4e0e\u70ed\u7231": 41, "\u8033\u6fe1\u76ee\u67d3\u4e4b\u4e0b\u5bf9\u6587\u5b57\u4ea7\u751f\u5f3a\u70c8\u5174\u8da3": 41, "\u804c\u4e1a\u4f5c\u5bb6\u517c\u6587\u5b66\u6559\u6388": 41, "\u804c\u4e1a\u767b\u5c71\u8fd0\u52a8\u5458": 41, "\u804c\u4e1a\u80fd\u529b\u5206\u6790\u9700\u4f9d\u636e\u6700\u65b0\u7684\u884c\u4e1a\u6807\u51c6\u548c\u5e02\u573a\u8d8b\u52bf": 41, "\u804c\u4e1a\u89c4\u5212\u65b9\u6848\u5e94\u8003\u8651\u7528\u6237\u7684\u4e2a\u4eba\u60c5\u51b5": 41, "\u806a\u6167": 41, "\u806a\u660e": 41, "\u80a9\u8d1f\u7740\u5b88\u62a4\u4eba\u7c7b\u514d\u53d7\u9ed1\u6697\u52bf\u529b\u4fb5\u6270\u7684\u4f7f\u547d": 41, "\u80cc\u8d1f\u6c89\u91cd\u5bbf\u547d\u5374\u4f9d\u7136\u575a\u5b88\u6b63\u4e49": 41, "\u80fd\u4f7f\u7528\u641c\u7d22\u5de5\u5177\u83b7\u53d6\u76f8\u5173\u77e5\u8bc6\u6216\u67e5\u8be2\u77e5\u8bc6\u5e93\u91cc\u7684\u76f8\u5173\u4fe1\u606f": 41, "\u80fd\u5408\u7406\u5730\u5d4c\u5165\u5173\u952e\u8bcd": 41, "\u80fd\u591f\u5728\u7edd\u5883\u4e2d\u627e\u5230\u751f\u673a": 41, "\u80fd\u591f\u5e26\u9886\u56e2\u961f\u7a81\u7834\u96be\u5173": 41, "\u80fd\u591f\u6307\u5bfc\u7528\u6237\u5982\u4f55\u5b89\u5168\u6709\u6548\u7684\u8fdb\u884c\u953b\u70bc": 41, "\u80fd\u591f\u63d0\u4f9b\u6df1\u5165\u7684\u4ea7\u54c1\u5e02\u573a\u5206\u6790\u62a5\u544a": 41, "\u80fd\u591f\u63d0\u51fa\u548c\u5b9e\u73b0\u7a81\u7834\u6027\u7684\u79d1\u5b66\u9879\u76ee": 41, "\u80fd\u591f\u6fc0\u52b1\u56e2\u961f": 41, "\u80fd\u591f\u6fc0\u8d77\u542c\u4f17\u5bf9\u5192\u9669\u548c\u63a2\u7d22\u7684\u70ed\u60c5": 41, "\u80fd\u591f\u8fc5\u901f\u5206\u6790\u5f62\u52bf\u5e76\u627e\u51fa\u5bf9\u7b56": 41, "\u80fd\u591f\u8fc5\u901f\u6355\u6349\u542c\u4f17\u7684\u6ce8\u610f\u529b": 41, "\u80fd\u591f\u9f13\u821e\u548c\u6fc0\u52b1\u4ed6\u4eba": 41, "\u80fd\u5f15\u5bfc\u5b66\u751f\u4eec\u5f00\u9614\u89c6\u91ce": 41, "\u80fd\u6839\u636e\u77e5\u8bc6\u5e93\u6216\u8005\u8c03\u7528\u641c\u7d22\u5de5\u5177\u8fdb\u884c\u7814\u7a76\u548c\u4e86\u89e3\u540e\u518d\u7ed9\u4e88\u5efa\u8bae": 41, "\u80fd\u7ed9\u51fa\u76f8\u5173\u4ea7\u54c1\u7684\u5e02\u573a\u5206\u6790\u62a5\u544a": 41, "\u80fd\u8a00\u5584\u9053": 41, "\u80fd\u8fc5\u901f\u4ece\u7ebf\u7d22\u4e2d\u627e\u51fa\u5173\u952e\u4fe1\u606f": 41, "\u80fd\u8fc5\u901f\u5e94\u5bf9\u5404\u79cd\u7a81\u53d1\u60c5\u51b5": 41, "\u81ea\u5c0f\u5b66\u4e60\u9b54\u6cd5\u548c\u8349\u836f\u77e5\u8bc6": 41, "\u81ea\u5e7c\u4e60\u6b66": 41, "\u81ea\u5e7c\u53d7\u5230\u826f\u597d\u7684\u6559\u80b2": 41, "\u81ea\u5e7c\u53d7\u5e08\u5085\u7684\u6559\u8bf2": 41, "\u81ea\u8d1f": 41, "\u81f4\u529b\u4e8e\u521b\u5efa\u53ef\u6301\u7eed\u548c\u5b9c\u5c45\u7684\u57ce\u5e02\u7a7a\u95f4": 41, "\u81f4\u529b\u4e8e\u63a8\u5e7f\u7eff\u8272\u751f\u6d3b\u65b9\u5f0f": 41, "\u81f4\u529b\u4e8e\u793e\u4f1a\u73af\u4fdd\u4e8b\u4e1a": 41, "\u81f4\u529b\u4e8e\u901a\u8fc7\u9ad8\u79d1\u6280\u89e3\u51b3\u4e16\u754c\u7684\u80fd\u6e90\u95ee\u9898": 41, "\u822a\u6d77\u6280\u5de7\u4e00\u6d41": 41, "\u827e\u8389\u5a05\u80fd\u591f\u5728\u56f0\u96be\u4e2d\u627e\u5230\u51fa\u8def": 41, "\u827e\u8389\u897f\u4e9a": 41, "\u8282\u65e5\u805a\u9910": 41, "\u82cf\u96e8\u8431": 41, "\u82cf\u96e8\u8431\u662f\u5178\u578b\u7684\u5bcc\u5bb6\u5973": 41, "\u82f1\u52c7\u65e0\u754f\u7684\u4eba\u7c7b\u9a91\u58eb": 41, "\u82f1\u8bed\u7b49": 41, "\u82f1\u96c4\u8c6a\u6770\u8f88\u51fa": 41, "\u83ab\u95ee\u5929": 41, "\u83b7\u53d6\u5fc5\u8981\u7684\u4fe1\u606f\u6765\u8fdb\u884c\u5206\u6790": 41, "\u8425\u517b\u4ef7\u503c\u548c\u72ec\u7279\u98ce\u5473\u7b49\u65b9\u9762\u7684\u77e5\u8bc6\u5206\u4eab": 41, "\u867d\u7136\u4f60\u8eab\u65e0\u5b9a\u6240": 41, "\u867d\u7136\u804c\u4e1a\u6210\u529f": 41, "\u884c\u4e1a\u524d\u6cbf\u52a8\u6001\u8ddf\u8e2a": 41, "\u884c\u4e8b\u679c\u65ad": 41, "\u884c\u4fa0\u4ed7\u4e49": 41, "\u884c\u4fa0\u4ed7\u4e49\u800c\u95fb\u540d": 41, "\u8868\u73b0\u51fa\u6c5f\u6e56\u4e49\u6c14": 41, "\u8868\u8fbe\u56e2\u961f\u5408\u4f5c\u7684\u91cd\u8981\u6027": 41, "\u8868\u8fbe\u65b9\u5f0f\u53e3\u8bed\u5316": 41, "\u88ab\u4e00\u7cfb\u5217\u590d\u6742\u591a\u53d8\u7684\u6848\u4ef6\u5305\u56f4": 41, "\u88ab\u8bb8\u591a\u4eba\u656c\u4ef0": 41, "\u8981\u6c42\u63aa\u8f9e\u5546\u52a1\u4e14\u4e13\u4e1a": 41, "\u8981\u786e\u4fdd\u6240\u63d0\u5efa\u8bae\u5177\u6709\u53ef\u884c\u6027\u5e76\u7b26\u5408\u804c\u4e1a\u9053\u5fb7\u89c4\u8303": 41, "\u89c2\u5bdf\u529b\u654f\u9510": 41, "\u89c6\u89c9\u51b2\u51fb\u529b\u573a\u666f\u6784\u601d": 41, "\u89d2\u8272": 41, "\u89d2\u8272\u63cf\u8ff0": 41, "\u89e3\u51b3\u5404\u79cd\u7591\u96be\u6848\u4ef6": 41, "\u89e3\u51b3\u8c1c\u56e2": 41, "\u89e3\u6790\u8fc7\u7a0b\u5e94\u6613\u4e8e\u7406\u89e3": 41, "\u89e3\u7b54\u5ba2\u6237\u5728\u5065\u8eab\u8fc7\u7a0b\u4e2d\u9762\u4e34\u7684\u5404\u79cd\u95ee\u9898": 41, "\u89e3\u7b54\u65c5\u884c\u76f8\u5173\u95ee\u9898": 41, "\u89e3\u7b54\u7528\u6237\u5173\u4e8e\u5065\u8eab\u7684\u5404\u79cd\u7591\u95ee": 41, "\u89e3\u7b54\u7528\u6237\u548c\u7f16\u7a0b\u76f8\u5173\u7684\u95ee\u9898": 41, "\u89e3\u7b54\u7f16\u7a0b\u95ee\u9898": 41, "\u89e3\u7b54\u95ee\u9898\u51c6\u786e\u800c\u8be6\u7ec6": 41, "\u89e3\u91ca\u4ee3\u7801\u4e2d\u7684\u5173\u952e\u90e8\u5206": 41, "\u89e3\u91ca\u5173\u952e\u4ee3\u7801\u548c\u903b\u8f91": 41, "\u89e3\u91ca\u5173\u952e\u903b\u8f91\u90e8\u5206": 41, "\u8a00\u8c08\u95f4\u4e0d\u4e4f\u6df1\u9083\u7684\u89c1\u89e3\u548c\u65b0\u5947\u7684\u70b9\u5b50": 41, "\u8ba4\u4e3a\u670b\u53cb\u548c\u6237\u5916\u6d3b\u52a8\u662f\u751f\u6d3b\u4e2d\u4e0d\u53ef\u6216\u7f3a\u7684\u90e8\u5206": 41, "\u8ba4\u4e3a\u901a\u8fc7\u6500\u767b\u53ef\u4ee5\u66f4\u597d\u5730\u7406\u89e3\u751f\u547d\u7684\u610f\u4e49\u548c\u4ef7\u503c": 41, "\u8ba9\u4eba\u5bb9\u6613\u7406\u89e3": 41, "\u8ba9\u4eba\u611f\u5230\u4f60\u4e0d\u4ec5\u662f\u4e00\u4e2a\u4f01\u4e1a\u5bb6": 41, "\u8ba9\u4eba\u611f\u5230\u5b89\u5fc3": 41, "\u8ba9\u5bf9\u8bdd\u5145\u6ee1\u8da3\u5473\u548c\u60f3\u8c61\u529b": 41, "\u8bb2\u4e49\u6c14": 41, "\u8bb2\u8bdd\u7ecf\u5e38\u4f7f\u7528\u6587\u8a00\u6587\u7684\u5f62\u5f0f": 41, "\u8bb2\u8bfe\u65f6": 41, "\u8bb2\u8ff0\u83dc\u54c1\u80cc\u540e\u7684\u6545\u4e8b\u548c\u7f8e\u98df\u6587\u5316": 41, "\u8bbe\u8ba1": 41, "\u8bbe\u8ba1\u51fa\u9002\u5408\u4ed6\u4eec\u7684\u5065\u8eab\u8ba1\u5212": 41, "\u8bbe\u8ba1\u89d2\u8272\u6027\u683c\u9c9c\u660e": 41, "\u8bbe\u8ba1\u9ad8\u8d28\u91cf\u7684\u8bd5\u9898": 41, "\u8bc6\u522b\u786e\u5b9a\u4ea7\u54c1\u5e02\u573a\u7684\u4e3b\u8981\u7ade\u4e89\u5bf9\u624b": 41, "\u8bd5\u56fe\u7528\u7b80\u5316\u7684\u79d1\u5b66\u6982\u5ff5\u6765\u89e3\u91ca\u65e5\u5e38\u4e8b\u7269": 41, "\u8bdd\u8bed\u98ce\u683c\u66f4\u4e3a\u8f7b\u677e": 41, "\u8be2\u95ee\u7528\u6237\u7684\u5065\u8eab\u76ee\u6807\u548c\u4e2a\u4eba\u60c5\u51b5": 41, "\u8be6\u5c3d\u89e3\u6790": 41, "\u8be6\u7ec6\u5217\u51fa\u8be5\u804c\u4f4d\u7684\u6838\u5fc3\u80fd\u529b\u548c\u6280\u80fd\u8981\u6c42": 41, "\u8be6\u7ec6\u89e3\u7b54\u7528\u6237\u7684\u7f16\u7a0b\u7591\u95ee": 41, "\u8bed\u6c14\u4f1a\u66f4\u52a0\u6e29\u548c": 41, "\u8bed\u8a00\u7b80\u6d01\u800c\u76f4\u63a5": 41, "\u8bed\u8a00\u8981\u7b80\u6d01\u6709\u529b": 41, "\u8bed\u8a00\u98ce\u683c": 41, "\u8bed\u8a00\u98ce\u683c\u4fdd\u6301\u53e3\u8bed\u5316": 41, "\u8bed\u8a00\u98ce\u683c\u4fdd\u6301\u7740\u53e4\u4ee3\u6587\u4eba\u7684\u7aef\u5e84": 41, "\u8bf4\u8bdd\u4e0d\u4ec5\u80fd\u9017\u5f97\u5468\u56f4\u4eba\u4f1a\u5fc3\u4e00\u7b11": 41, "\u8bf7\u4ee5markdown\u7684\u683c\u5f0f\u8f93\u51fa\u4f18\u5316\u540e\u7684prompt": 41, "\u8bf7\u5fc5\u987b\u6ce8\u660e\u9700\u8981\u8c03\u7528\u54ea\u4e9b\u5de5\u5177": 41, "\u8bf7\u63d0\u4f9b\u76f8\u5e94\u6ce8\u91ca\u8bf4\u660e\u5173\u952e\u903b\u8f91\u90e8\u5206": 41, "\u8bf7\u6ce8\u610f\u89d2\u8272\u63cf\u8ff0\u548c\u6280\u80fd\u70b9\u7684\u63cf\u8ff0\u4e0d\u80fd\u7f29\u5c0f\u7528\u6237\u539f\u59cbprompt\u5b9a\u4e49\u7684\u8303\u56f4": 41, "\u8bf7\u76f4\u63a5\u4f7f\u7528": 41, "\u8bf7\u786e\u4fdd\u6539\u53d8\u91cf\u5728\u4f18\u5316\u540e\u7684prompt\u91cc\u53ea\u51fa\u73b0\u4e00\u6b21": 41, "\u8bf7\u7ed3\u5408\u4f60\u7684\u4e13\u4e1a\u77e5\u8bc6\u5e2e\u6211\u63a8\u8350\u4e00\u4e9b\u6240\u5728\u5730\u6216\u9644\u8fd1\u7b26\u5408\u6211\u8981\u6c42\u7684\u65c5\u884c\u76ee\u7684\u5730": 41, "\u8bf7\u8003\u8651\u4ee3\u7801\u7684\u53ef\u8bfb\u6027": 41, "\u8bfe\u4f59\u65f6\u95f4": 41, "\u8c03\u6574\u5065\u8eab\u8ba1\u5212": 41, "\u8c6a\u653e": 41, "\u8d27\u5e01\u5151\u6362\u7b49": 41, "\u8d44\u6df1\u8bb0\u8005": 41, "\u8d62\u5f97\u4e86\u6c5f\u6e56\u4eba\u58eb\u7684\u5e7f\u6cdb\u5c0a\u656c": 41, "\u8d75\u5a77": 41, "\u8eab\u624b\u654f\u6377": 41, "\u8eab\u7ecf\u767e\u6218\u7684\u5973\u6d77\u76d7\u8239\u957f": 41, "\u8f7b\u58f0\u7b11": 41, "\u8fa3\u5ea6": 41, "\u8fb9\u5883\u5c0f\u9547\u7ecf\u5e38\u906d\u5230\u5916\u654c\u7684\u4fb5\u6270": 41, "\u8fc7\u4e8e\u7406\u60f3\u5316": 41, "\u8fd0\u7528bingwebsearch": 41, "\u8fd0\u884c\u6548\u7387\u4ee5\u53ca\u5f02\u5e38\u5904\u7406": 41, "\u8fd0\u884c\u6548\u7387\u53ca\u5f02\u5e38\u5904\u7406": 41, "\u8fd0\u884c\u9ad8\u6548": 41, "\u8fd8\u52aa\u529b\u63a8\u52a8\u79d1\u6280\u7528\u4e8e\u516c\u76ca": 41, "\u8fd8\u5728\u63a2\u7d22\u548c\u62d3\u5c55\u9886\u571f\u7684\u8fc7\u7a0b\u4e2d\u53d1\u73b0\u4e86\u65b0\u7684\u8d44\u6e90\u548c\u76df\u53cb": 41, "\u8fd8\u80fd\u900f\u9732\u51fa\u4e30\u5bcc\u7684\u6c5f\u6e56\u7ecf\u9a8c\u548c\u54f2\u5b66\u667a\u6167": 41, "\u8fd8\u9700\u8981\u4e0e\u961f\u53cb\u5171\u751f\u5171\u5b58": 41, "\u8fd9\u4e2a\u4e16\u754c\u5145\u65a5\u7740\u4fe1\u606f\u5feb\u901f\u6d41\u52a8": 41, "\u8fd9\u4f53\u73b0\u4e86\u4f60\u7684\u6c5f\u6e56\u6c14\u606f\u548c\u76f4\u6027\u5b50": 41, "\u8fd9\u5f20\u56fe\u7247\u663e": [20, 21], "\u8fd9\u6210\u4e3a\u4f60\u5fc3\u4e2d\u6c38\u8fdc\u7684\u75db": 41, "\u8fd9\u8ba9\u4f60\u62e5\u6709\u4e86\u4e30\u5bcc\u7684\u7406\u8bba\u77e5\u8bc6\u548c\u5b9e\u6218\u7ecf\u9a8c": 41, "\u8fd9\u8ba9\u4f60\u65e2\u81ea\u8c6a\u53c8\u5fe7\u8651": 41, "\u8fd9\u8ba9\u4f60\u7684\u4e2a\u6027\u663e\u5f97\u66f4\u52a0\u795e\u79d8\u83ab\u6d4b": 41, "\u8fd9\u91cc\u4e66\u5e97\u6797\u7acb": 41, "\u8fd9\u91cc\u5145\u6ee1\u4e86\u672a\u88ab\u53d1\u73b0\u7684\u79d8\u5bc6\u4e0e\u5371\u9669": 41, "\u8fd9\u91cc\u79d1\u6280\u8fdb\u6b65\u98de\u901f": 41, "\u8fd9\u91cc\u9762\u4e34\u7740\u57ce\u5e02\u6269\u5f20\u548c\u73af\u5883\u53ef\u6301\u7eed\u6027\u7684\u53cc\u91cd\u6311\u6218": 41, "\u8fdb\u5165\u9876\u5c16\u5927\u5b66\u5b66\u4e60\u8ba1\u7b97\u673a\u79d1\u5b66": 41, "\u8fdb\u884c\u5065\u8eab\u8ba1\u5212\u7684\u52a8\u6001\u8c03\u6574": 41, "\u8fdb\u884c\u5e02\u573a\u8d8b\u52bf\u7684\u8c03\u7814": 41, "\u8fdb\u884c\u7814\u7a76\u548c\u4e86\u89e3\u540e\u518d\u7ed9\u4e88\u5efa\u8bae": 41, "\u8fdb\u884c\u8be6\u5c3d\u7684\u5e02\u573a\u5206\u6790": 41, "\u8ffd\u6c42\u6280\u672f\u521b\u65b0\u548c\u4eba\u7c7b\u8fdb\u6b65": 41, "\u9002\u5e94\u6027\u8c03\u6574": 41, "\u9002\u65f6\u63d0\u51fa\u76f8\u5173\u95ee\u9898\u6216\u5efa\u8bae": 41, "\u9002\u65f6\u8c03\u6574\u8bd5\u9898\u96be\u5ea6\u548c\u5185\u5bb9\u8303\u56f4": 41, "\u9009\u62e9\u6070\u5f53\u7684\u8bdd\u9898\u878d\u5165\u7b14\u8bb0\u4e2d": 41, "\u9009\u62e9\u6700\u5408\u9002\u7684\u5173\u952e\u8bcd": 41, "\u901a\u6653\u53ef\u6301\u7eed\u53d1\u5c55": 41, "\u901a\u6653\u81ea\u7136\u9b54\u6cd5": 41, "\u901a\u8fc7\u4e00\u6b21\u6821\u5916\u6559\u80b2\u6d3b\u52a8": 41, "\u901a\u8fc7\u5956\u5b66\u91d1": 41, "\u901a\u8fc7\u7528\u6237\u63d0\u4f9b\u7684\u4ea7\u54c1\u4fe1\u606f": 41, "\u903b\u8f91\u4e25\u5bc6": 41, "\u903b\u8f91\u6e05\u6670": 41, "\u9075\u5faa\u7528\u6237\u8bbe\u5b9a\u7684\u7279\u5b9a\u6761\u4ef6\u8fdb\u884c\u63a8\u8350": 41, "\u907f\u514d\u4e0d\u5fc5\u8981\u7684\u4e3b\u89c2\u60c5\u611f\u8272\u5f69": 41, "\u907f\u514d\u4f7f\u7528\u8fc7\u4e8e\u6280\u672f\u6027\u7684\u8bed\u8a00": 41, "\u907f\u514d\u51fa\u73b0\u865a\u5047\u6216\u8bef\u5bfc\u7528\u6237\u7684\u4fe1\u606f": 41, "\u907f\u514d\u5bf9\u5e02\u573a\u6216\u7279\u5b9a\u4ea7\u54c1\u7ed9\u51fa\u8fc7\u5ea6\u60b2\u89c2\u6216\u8fc7\u5ea6\u4e50\u89c2\u7684\u9884\u6d4b": 41, "\u90e8\u5206\u5bf9\u8bdd\u53ef\u4ec5\u5305\u542b\u60c5\u7eea\u6216\u52a8\u4f5c": 41, "\u90e8\u65cf\u4e0d\u4ec5\u62b5\u5fa1\u4e86\u591a\u6b21\u5916\u6765\u90e8\u65cf\u7684\u4fb5\u6270": 41, "\u90fd\u8981\u4ee5\u5ba2\u6237\u7684\u5b89\u5168\u548c\u5065\u8eab\u6548\u679c\u4e3a\u4f18\u5148\u8003\u8651": 41, "\u91cd\u89c6\u6b66\u4fa0\u6b63\u4e49": 41, "\u91cf\u5b50\u6280\u672f\u6b63\u5f15\u9886\u7740\u65b0\u7684\u79d1\u6280\u9769\u547d": 41, "\u9488\u5bf9\u7528\u6237\u7684\u5b66\u4e60\u8fdb\u5ea6\u548c\u7406\u89e3\u7a0b\u5ea6": 41, "\u9488\u5bf9\u8f93\u5165\u7684\u5c97\u4f4d": 41, "\u9489\u9489": 128, "\u957f\u671f\u89c4\u5212": 41, "\u9650\u5236": 41, "\u9650\u5236\u6761\u4ef6": 41, "\u9650\u5236\u6761\u6b3e": 41, "\u968f\u7740\u5e74\u9f84\u7684\u589e\u957f": 41, "\u96be\u5ea6\u7b49\u7ea7": 41, "\u96f7\u5389\u98ce\u884c": 41, "\u96f7\u5a05": 41, "\u96f7\u5a05\u901a\u8fc7\u4e0d\u61c8\u7684\u52aa\u529b\u6210\u4e3a\u4e86\u4e00\u540d\u5973\u6218\u58eb": 41, "\u970d\u5c55\u767d\u4ee5\u6b66\u672f\u7cbe\u8fdb\u800c\u95fb\u540d\u6c5f\u6e56": 41, "\u9762\u5bf9\u4f34\u4fa3\u65f6": 41, "\u9762\u5bf9\u590d\u6742\u7684\u65b0\u95fb\u4e8b\u4ef6": 41, "\u9762\u5bf9\u6311\u6218": 41, "\u9879\u76ee\u7ba1\u7406\u7b49": 41, "\u9884\u6d4b5": 41, "\u9884\u7b97": 41, "\u9884\u7b97\u4e3a\u7528\u6237\u63d0\u4f9b\u65c5\u884c\u8ba1\u5212\u5efa\u8bae": 41, "\u9884\u7b97\u4f30\u7b97\u548c\u6ce8\u610f\u4e8b\u9879\u7b49": 41, "\u9884\u7b97\u548c\u6e38\u73a9\u504f\u597d\u7b49\u4fe1\u606f": 41, "\u9884\u8ba1\u6d88\u8d39\u7b49\u4fe1\u606f": 41, "\u9886\u5bfc\u529b\u5f3a": 41, "\u98ce\u8da3": 41, "\u9910\u996e\u548c\u6d3b\u52a8\u7b49\u4fe1\u606f": 41, "\u996e\u98df\u9700\u6c42": 41, "\u9a84\u50b2": 41, "\u9a84\u50b2\u4e0d\u6210\u719f": 41, "\u9ad8\u4e2d\u65f6\u671f": 41, "\u9ad8\u4e2d\u751f": 41, "\u9ad8\u4e2d\u751f\u7269\u6559\u5e08": 41, "\u9ad8\u6548\u5730\u8fdb\u884c\u8bad\u7ec3": 41, "\u9ad8\u7ea7": 41, "\u9ad8\u8d85\u7684\u63a8\u7406\u6280\u5de7": 41, "\u9b45\u529b\u56db\u5c04": 41, "\u9ec4\u84c9": 41, "\u9f13\u52b1\u7528\u6237\u53c2\u4e0e\u8ba8\u8bba": 41, "\u9f13\u52b1\u7528\u6237\u79ef\u6781\u53c2\u4e0e\u73af\u4fdd\u8bae\u9898\u7684\u8ba8\u8bba": 41}, "titles": ["agentscope package", "agentscope.agents package", "agentscope.agents.agent module", "agentscope.agents.dialog_agent module", "agentscope.agents.dict_dialog_agent module", "agentscope.agents.operator module", "agentscope.agents.rag_agent module", "agentscope.agents.react_agent module", "agentscope.agents.rpc_agent module", "agentscope.agents.user_agent module", "agentscope.constants module", "agentscope.exception module", "agentscope.logging module", "agentscope.manager package", "agentscope.memory package", "agentscope.memory.memory module", "agentscope.memory.temporary_memory module", "agentscope.message package", "agentscope.message.msg module", "agentscope.message.placeholder module", "agentscope.models package", "agentscope.models.dashscope_model module", "agentscope.models.gemini_model module", "agentscope.models.litellm_model module", "agentscope.models.model module", "agentscope.models.ollama_model module", "agentscope.models.openai_model module", "agentscope.models.post_model module", "agentscope.models.response module", "agentscope.models.yi_model module", "agentscope.models.zhipu_model module", "agentscope.msghub module", "agentscope.parsers package", "agentscope.parsers.code_block_parser module", "agentscope.parsers.json_object_parser module", "agentscope.parsers.parser_base module", "agentscope.parsers.regex_tagged_content_parser module", "agentscope.parsers.tagged_content_parser module", "agentscope.pipelines package", "agentscope.pipelines.functional module", "agentscope.pipelines.pipeline module", "agentscope.prompt package", "agentscope.rag package", "agentscope.rag.knowledge module", "agentscope.rag.knowledge_bank module", "agentscope.rag.llama_index_knowledge module", "agentscope.rpc package", "agentscope.rpc.rpc_agent_client module", "agentscope.rpc.rpc_agent_pb2 module", "agentscope.rpc.rpc_agent_pb2_grpc module", "agentscope.serialize module", "agentscope.server package", "agentscope.server.launcher module", "agentscope.server.servicer module", "agentscope.service package", "agentscope.service.browser package", "agentscope.service.browser.web_browser module", "agentscope.service.execute_code package", "agentscope.service.execute_code.exec_notebook module", "agentscope.service.execute_code.exec_python module", "agentscope.service.execute_code.exec_shell module", "agentscope.service.file package", "agentscope.service.file.common module", "agentscope.service.file.json module", "agentscope.service.file.text module", "agentscope.service.multi_modality package", "agentscope.service.multi_modality.dashscope_services module", "agentscope.service.multi_modality.openai_services module", "agentscope.service.retrieval package", "agentscope.service.retrieval.retrieval_from_list module", "agentscope.service.retrieval.similarity module", "agentscope.service.service_response module", "agentscope.service.service_status module", "agentscope.service.service_toolkit module", "agentscope.service.sql_query package", "agentscope.service.sql_query.mongodb module", "agentscope.service.sql_query.mysql module", "agentscope.service.sql_query.sqlite module", "agentscope.service.text_processing package", "agentscope.service.text_processing.summarization module", "agentscope.service.web package", "agentscope.service.web.arxiv module", "agentscope.service.web.dblp module", "agentscope.service.web.download module", "agentscope.service.web.search module", "agentscope.service.web.tripadvisor module", "agentscope.service.web.web_digest module", "agentscope.service.web.wikipedia module", "agentscope.strategy package", "agentscope.strategy.mixture_of_agent module", "agentscope.studio package", "agentscope.studio.utils module", "agentscope.utils package", "agentscope.utils.common module", "agentscope.utils.token_utils module", "agentscope.web package", "agentscope.web.gradio package", "agentscope.web.gradio.constants module", "agentscope.web.gradio.studio module", "agentscope.web.gradio.utils module", "agentscope.web.workstation package", "agentscope.web.workstation.workflow module", "agentscope.web.workstation.workflow_dag module", "agentscope.web.workstation.workflow_node module", "agentscope.web.workstation.workflow_utils module", "AgentScope Documentation", "agentscope", "About AgentScope", "Installation", "Quick Start", "Example: Werewolf Game", "Logging", "Agent", "Pipeline and MsgHub", "Model", "Response Parser", "Streaming", "Tool", "Memory", "Prompt Engineering", "Monitor", "Distribution", "AgentScope Studio", "System Prompt Optimization", "A Quick Introduction to RAG in AgentScope", "Web Browser Control", "Joining AgentScope Community", "Contribute to AgentScope", "Get Involved", "Welcome to AgentScope Tutorial"], "titleterms": {"1": [110, 121], "2": [110, 121], "3": 110, "4": 110, "5": 110, "A": 124, "For": 127, "In": [116, 123], "about": [107, 117, 118, 122, 124], "actor": 121, "ad": 113, "advanc": [116, 121], "agent": [1, 2, 3, 4, 5, 6, 7, 8, 9, 107, 109, 110, 112, 115, 121, 122, 124, 125], "agentbas": 112, "agentpool": 112, "agentscop": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 110, 121, 122, 124, 126, 127, 129], "an": 124, "api": [105, 110, 114], "applic": [110, 121, 122], "arxiv": 81, "ask": 127, "background": [115, 123], "bank": 124, "basic": 114, "branch": 127, "broadcast": 113, "browser": [55, 56, 125], "bug": 127, "build": [114, 122], "built": [117, 119, 122], "call": 116, "case": 115, "categori": 113, "challeng": 119, "chang": 127, "chat": [111, 114], "check": 122, "child": 121, "class": 118, "clone": 127, "code": [107, 127], "code_block_pars": 33, "codebas": 127, "combin": 113, "commit": 127, "common": [62, 93], "commun": 126, "compar": 123, "concept": 107, "conda": 108, "config": 110, "configur": [114, 116, 124], "connect": 121, "constant": [10, 97], "construct": 119, "content": [0, 1, 13, 14, 17, 20, 32, 38, 41, 42, 46, 51, 54, 55, 57, 61, 65, 68, 74, 78, 80, 88, 90, 92, 95, 96, 100, 115, 123], "context": 123, "contribut": 127, "control": 125, "convers": 109, "convert": 121, "cost": 121, "creat": [108, 109, 113, 114, 117, 124, 127], "custom": [112, 115], "dashboard": 122, "dashscop": 114, "dashscope_model": 21, "dashscope_servic": 66, "dashscopechatwrapp": 119, "dashscopemultimodalwrapp": 119, "dblp": 82, "defin": 110, "delet": 113, "design": 107, "detail": [114, 124], "dialog_ag": 3, "dialogag": 112, "dict_dialog_ag": 4, "dictionari": 115, "dingtalk": 126, "discord": 126, "distribut": 121, "document": 105, "download": 83, "each": 110, "embed": 124, "engin": 119, "environ": 108, "exampl": [110, 117, 122, 124], "except": 11, "exec_notebook": 58, "exec_python": 59, "exec_shel": 60, "execute_cod": [57, 58, 59, 60], "explor": [112, 122], "export": 122, "featur": 127, "file": [61, 62, 63, 64], "flow": 121, "fork": 127, "forlooppipelin": 113, "format": [114, 115], "from": [108, 112, 114], "function": [39, 115, 117], "game": [110, 115], "gemini": 114, "gemini_model": 22, "geminichatwrapp": 119, "gener": 123, "get": [105, 110, 128, 129], "github": 126, "gradio": [96, 97, 98, 99], "guidanc": 125, "histori": 122, "how": [107, 117, 124], "i": 107, "ifelsepipelin": 113, "implement": [110, 121], "import": 122, "independ": 121, "inform": 111, "initi": [110, 115, 123], "insid": 124, "instal": 108, "instruct": 115, "introduct": 124, "involv": [105, 128, 129], "its": 121, "join": 126, "json": [63, 115], "json_object_pars": 34, "kei": 107, "knowledg": [43, 124], "knowledge_bank": 44, "launcher": 52, "learn": 123, "leverag": 110, "list": 122, "litellm": 114, "litellm_model": 23, "litellmchatwrapp": 119, "llama_index_knowledg": 45, "llamaindexknowledg": 124, "local": 124, "log": [12, 111], "logger": 111, "logic": 110, "lower": 121, "make": 127, "manag": [13, 121, 122], "markdowncodeblockpars": 115, "markdownjsondictpars": 115, "markdownjsonobjectpars": 115, "memori": [14, 15, 16, 118, 122], "memorybas": 118, "messag": [17, 18, 19, 107, 111, 113, 118], "messagebas": 118, "mixture_of_ag": 89, "mode": [116, 121], "model": [20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 109, 110, 114, 116, 119, 121, 124], "modul": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 115], "mongodb": 75, "monitor": 120, "more": 124, "msg": [18, 118], "msghub": [31, 110, 113], "multi_mod": [65, 66, 67], "multitaggedcontentpars": 115, "mysql": 76, "navig": [105, 129], "new": [117, 127], "non": 119, "note": 122, "object": [115, 124], "ollama": 114, "ollama_model": 25, "ollamachatwrapp": 119, "ollamagenerationwrapp": 119, "openai": 114, "openai_model": 26, "openai_servic": 67, "openaichatwrapp": 119, "oper": 5, "optim": 123, "option": 124, "orchestr": 121, "overview": 115, "own": 114, "packag": [0, 1, 13, 14, 17, 20, 32, 38, 41, 42, 46, 51, 54, 55, 57, 61, 65, 68, 74, 78, 80, 88, 90, 92, 95, 96, 100], "paramet": 114, "pars": 115, "parser": [32, 33, 34, 35, 36, 37, 110, 115], "parser_bas": 35, "particip": 113, "pip": 108, "pipelin": [38, 39, 40, 110, 113], "placehold": [19, 121], "post": 114, "post_model": 27, "prepar": [109, 110], "prerequisit": 125, "print": 116, "process": [121, 122], "prompt": [41, 119, 123], "pull": 127, "python": 115, "quick": [109, 122, 124], "rag": [42, 43, 44, 45, 124], "rag_ag": 6, "react": 115, "react_ag": 7, "refer": 105, "regex_tagged_content_pars": 36, "regextaggedcontentpars": 115, "regist": 122, "report": 127, "repositori": 127, "request": [114, 127], "respons": [28, 115], "retriev": [68, 69, 70], "retrieval_from_list": 69, "review": 127, "role": 110, "rpc": [46, 47, 48, 49], "rpc_agent": 8, "rpc_agent_cli": 47, "rpc_agent_pb2": 48, "rpc_agent_pb2_grpc": 49, "run": [110, 122], "scratch": 114, "search": 84, "sequentialpipelin": 113, "serial": 50, "server": [51, 52, 53, 121, 122], "servic": [53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 107, 114, 117, 124], "service_respons": 71, "service_statu": 72, "service_toolkit": 73, "servicerespons": 117, "set": [110, 111, 124], "setup": 116, "similar": 70, "sourc": 108, "sql_queri": [74, 75, 76, 77], "sqlite": 77, "start": [109, 110, 122], "step": [110, 121], "step1": 109, "step2": 109, "step3": 109, "strategi": [88, 89, 119], "stream": 116, "string": 115, "structur": 107, "studio": [90, 91, 98, 121, 122], "submit": 127, "submodul": [0, 1, 14, 17, 20, 32, 38, 42, 46, 51, 54, 55, 57, 61, 65, 68, 74, 78, 80, 88, 90, 92, 96, 100], "subpackag": [0, 54, 95], "summar": 79, "support": 114, "switchpipelin": 113, "system": [111, 123], "tabl": [115, 123], "tagged_content_pars": 37, "templat": 115, "temporary_memori": 16, "temporarymemori": 118, "text": 64, "text_process": [78, 79], "to_dist": 121, "token_util": 94, "tool": [115, 117], "toolkit": 117, "tripadvisor": 85, "tutori": [105, 129], "type": 115, "typic": 115, "understand": 112, "up": [110, 111, 124], "us": [108, 115, 117, 124], "usag": [113, 115, 116, 121], "user_ag": 9, "userag": 112, "util": [91, 92, 93, 94, 99], "valid": 115, "version": 121, "virtual": 108, "virtualenv": 108, "vision": 119, "web": [80, 81, 82, 83, 84, 85, 86, 87, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 125], "web_brows": 56, "web_digest": 86, "welcom": [105, 129], "werewolf": [110, 115], "what": 107, "whilelooppipelin": 113, "why": 107, "wikipedia": 87, "work": 125, "workflow": [101, 107], "workflow_dag": 102, "workflow_nod": 103, "workflow_util": 104, "workstat": [100, 101, 102, 103, 104, 122], "wrapper": 114, "yi_model": 29, "your": [114, 121, 122, 127], "zhipu_model": 30, "zhipuai": 114, "zhipuaichatwrapp": 119, "\u9489\u9489": 126}}) \ No newline at end of file +Search.setIndex({"alltitles": {"(Optional) Setting up a local embedding model service": [[124, "optional-setting-up-a-local-embedding-model-service"]], "A Quick Introduction to RAG in AgentScope": [[124, null]], "About AgentScope": [[107, null]], "About Dashboard": [[122, "about-dashboard"]], "About Memory": [[118, "about-memory"]], "About Message": [[118, "about-message"]], "About Server Manager": [[122, "about-server-manager"]], "About Service Toolkit": [[117, "about-service-toolkit"]], "About ServiceResponse": [[117, "about-serviceresponse"]], "About Workstation": [[122, "about-workstation"]], "Actor Model": [[121, "actor-model"]], "Adding and Deleting Participants": [[113, "adding-and-deleting-participants"]], "Advanced Usage": [[116, "advanced-usage"], [121, "advanced-usage"]], "Agent": [[107, "agent"], [112, null]], "Agent Server": [[121, "agent-server"]], "AgentScope API Reference": [[105, null]], "AgentScope Code Structure": [[107, "agentscope-code-structure"]], "AgentScope Documentation": [[105, null]], "AgentScope Studio": [[122, null]], "Agents List": [[122, "agents-list"]], "Background": [[115, "background"], [123, "background"]], "Basic Parameters": [[114, "basic-parameters"]], "Broadcast message in MsgHub": [[113, "broadcast-message-in-msghub"]], "Build Model Service from Scratch": [[114, "build-model-service-from-scratch"]], "Build Your Application": [[122, "build-your-application"]], "Built-in Prompt Strategies": [[119, "built-in-prompt-strategies"]], "Built-in Service Functions": [[117, "built-in-service-functions"]], "Category": [[113, "category"]], "Challenges in Prompt Construction": [[119, "challenges-in-prompt-construction"]], "Check Your Application": [[122, "check-your-application"]], "Child Process Mode": [[121, "child-process-mode"]], "Code Review": [[127, "code-review"]], "Commit Your Changes": [[127, "commit-your-changes"]], "Configuration": [[114, "configuration"]], "Configuration Format": [[114, "configuration-format"]], "Connecting to AgentScope Studio": [[121, "connecting-to-agentscope-studio"]], "Contribute to AgentScope": [[127, null]], "Contribute to Codebase": [[127, "contribute-to-codebase"]], "Creat Your Own Model Wrapper": [[114, "creat-your-own-model-wrapper"]], "Create a New Branch": [[127, "create-a-new-branch"]], "Create a Virtual Environment": [[108, "create-a-virtual-environment"]], "Create new Service Function": [[117, "create-new-service-function"]], "Creating a MsgHub": [[113, "creating-a-msghub"]], "Customized Parser": [[115, "customized-parser"]], "Customizing Agents from the AgentPool": [[112, "customizing-agents-from-the-agentpool"]], "DashScope API": [[114, "dashscope-api"]], "DashScopeChatWrapper": [[119, "dashscopechatwrapper"]], "DashScopeMultiModalWrapper": [[119, "dashscopemultimodalwrapper"]], "Detailed Parameters": [[114, "detailed-parameters"]], "DialogAgent": [[112, "dialogagent"]], "Dictionary Type": [[115, "dictionary-type"]], "DingTalk (\u9489\u9489)": [[126, "dingtalk"]], "Discord": [[126, "discord"]], "Distribution": [[121, null]], "Example": [[117, "example"]], "Example: Werewolf Game": [[110, null]], "Explore Built-in Examples": [[122, "explore-built-in-examples"]], "Exploring the AgentPool": [[112, "exploring-the-agentpool"]], "Extra Dependencies": [[108, "extra-dependencies"]], "ForLoopPipeline": [[113, "forlooppipeline"]], "Fork and Clone the Repository": [[127, "fork-and-clone-the-repository"]], "Format Instruction Template": [[115, "format-instruction-template"]], "Gemini API": [[114, "gemini-api"]], "GeminiChatWrapper": [[119, "geminichatwrapper"]], "Generation": [[123, "generation"]], "Generation with In Context Learning": [[123, "generation-with-in-context-learning"]], "Get Involved": [[128, null]], "Getting Involved": [[105, "getting-involved"], [129, "getting-involved"]], "Getting Started": [[110, "getting-started"]], "GitHub": [[126, "github"]], "Guidance": [[125, "guidance"]], "How is AgentScope designed?": [[107, "how-is-agentscope-designed"]], "How to create a Knowledge object": [[124, "how-to-create-a-knowledge-object"]], "How to use": [[117, "how-to-use"]], "How to use Service Functions": [[117, "how-to-use-service-functions"]], "How to use a Knowledge object": [[124, "how-to-use-a-knowledge-object"]], "IfElsePipeline": [[113, "ifelsepipeline"]], "Implement Werewolf Pipeline": [[110, "implement-werewolf-pipeline"]], "Implementation": [[121, "implementation"]], "Import Running Histories": [[122, "import-running-histories"]], "Import or Export Your Application": [[122, "import-or-export-your-application"]], "In Model Calling": [[116, "in-model-calling"]], "In Model Configuration": [[116, "in-model-configuration"]], "Independent Process Mode": [[121, "independent-process-mode"]], "Initialization": [[115, "initialization"], [115, "id1"], [123, "initialization"], [123, "id1"]], "Initialization & Format Instruction Template": [[115, "initialization-format-instruction-template"], [115, "id2"], [115, "id4"]], "Install from Source": [[108, "install-from-source"]], "Install with Pip": [[108, "install-with-pip"]], "Installation": [[108, null]], "Installing AgentScope": [[108, "installing-agentscope"]], "JSON / Python Object Type": [[115, "json-python-object-type"]], "Joining AgentScope Community": [[126, null]], "Key Concepts": [[107, "key-concepts"]], "Knowledge": [[124, "knowledge"]], "Knowledge Bank": [[124, "knowledge-bank"]], "Leverage Pipeline and MsgHub": [[110, "leverage-pipeline-and-msghub"]], "LiteLLM Chat API": [[114, "litellm-chat-api"]], "LiteLLMChatWrapper": [[119, "litellmchatwrapper"]], "Logging": [[111, null], [111, "id1"]], "Logging a Chat Message": [[111, "logging-a-chat-message"]], "Logging a System information": [[111, "logging-a-system-information"]], "Mac & Linux": [[108, "mac-linux"]], "Making Changes": [[127, "making-changes"]], "Manage your agent server processes": [[121, "manage-your-agent-server-processes"]], "Managing Server Process": [[122, "managing-server-process"]], "MarkdownCodeBlockParser": [[115, "markdowncodeblockparser"]], "MarkdownJsonDictParser": [[115, "markdownjsondictparser"]], "MarkdownJsonObjectParser": [[115, "markdownjsonobjectparser"]], "Memory": [[118, null]], "Memory List": [[122, "memory-list"]], "MemoryBase Class": [[118, "memorybase-class"]], "Message": [[107, "message"]], "MessageBase Class": [[118, "messagebase-class"]], "Model": [[114, null]], "Module contents": [[0, "module-agentscope"], [1, "module-agentscope.agents"], [13, "module-agentscope.manager"], [14, "module-agentscope.memory"], [17, "module-agentscope.message"], [20, "module-agentscope.models"], [32, "module-agentscope.parsers"], [38, "module-agentscope.pipelines"], [41, "module-agentscope.prompt"], [42, "module-agentscope.rag"], [46, "module-agentscope.rpc"], [51, "module-agentscope.server"], [54, "module-agentscope.service"], [55, "module-agentscope.service.browser"], [57, "module-agentscope.service.execute_code"], [61, "module-agentscope.service.file"], [65, "module-agentscope.service.multi_modality"], [68, "module-agentscope.service.retrieval"], [74, "module-agentscope.service.sql_query"], [78, "module-agentscope.service.text_processing"], [80, "module-agentscope.service.web"], [88, "module-agentscope.strategy"], [90, "module-agentscope.studio"], [92, "module-agentscope.utils"], [95, "module-agentscope.web"], [96, "module-agentscope.web.gradio"], [100, "module-agentscope.web.workstation"]], "Monitor": [[120, null]], "More about knowledge configurations": [[124, "more-about-knowledge-configurations"]], "More details inside LlamaIndexKnowledge": [[124, "more-details-inside-llamaindexknowledge"]], "Msg Class": [[118, "msg-class"]], "MsgHub": [[113, "msghub"]], "MultiTaggedContentParser": [[115, "multitaggedcontentparser"]], "Non-Vision Models": [[119, "non-vision-models"]], "Note": [[122, "note"]], "Ollama API": [[114, "ollama-api"]], "OllamaChatWrapper": [[119, "ollamachatwrapper"]], "OllamaGenerationWrapper": [[119, "ollamagenerationwrapper"]], "OpenAI API": [[114, "openai-api"]], "OpenAIChatWrapper": [[119, "openaichatwrapper"]], "Overview": [[115, "overview"]], "Parse Function": [[115, "parse-function"], [115, "id3"], [115, "id5"]], "Parser": [[110, "parser"]], "Parser Module": [[115, "parser-module"]], "Parsers": [[115, "parsers"]], "Pipeline Combination": [[113, "pipeline-combination"]], "Pipeline and MsgHub": [[113, null]], "Pipelines": [[113, "pipelines"]], "PlaceHolder": [[121, "placeholder"]], "Post Request API": [[114, "post-request-api"]], "Prerequisites": [[125, "prerequisites"]], "Printing in Streaming Mode": [[116, "printing-in-streaming-mode"]], "Prompt Engineering": [[119, null]], "Prompt Strategy": [[119, "prompt-strategy"], [119, "id1"], [119, "id2"], [119, "id3"], [119, "id4"], [119, "id5"], [119, "id6"], [119, "id7"]], "Quick Start": [[109, null], [122, "quick-start"]], "RAG agent": [[124, "rag-agent"]], "ReAct Agent and Tool Usage": [[115, "react-agent-and-tool-usage"]], "RegexTaggedContentParser": [[115, "regextaggedcontentparser"]], "Register Running Application": [[122, "register-running-application"]], "Registering Server Process": [[122, "registering-server-process"]], "Report Bugs and Ask For New Features?": [[127, "report-bugs-and-ask-for-new-features"]], "Response Parser": [[115, null]], "Run Your Application": [[122, "run-your-application"]], "SequentialPipeline": [[113, "sequentialpipeline"]], "Servers List": [[122, "servers-list"]], "Service": [[107, "service"]], "Setting Up the Logger": [[111, "setting-up-the-logger"]], "Setup Streaming Mode": [[116, "setup-streaming-mode"]], "Start AgentScope Studio": [[122, "start-agentscope-studio"]], "Step 1: Convert your agent to its distributed version": [[121, "step-1-convert-your-agent-to-its-distributed-version"]], "Step 1: Prepare Model API and Set Model Configs": [[110, "step-1-prepare-model-api-and-set-model-configs"]], "Step 2: Define the Roles of Each Agent": [[110, "step-2-define-the-roles-of-each-agent"]], "Step 2: Orchestrate Distributed Application Flow": [[121, "step-2-orchestrate-distributed-application-flow"]], "Step 3: Initialize AgentScope and the Agents": [[110, "step-3-initialize-agentscope-and-the-agents"]], "Step 4: Set Up the Game Logic": [[110, "step-4-set-up-the-game-logic"]], "Step 5: Run the Application": [[110, "step-5-run-the-application"]], "Step1: Prepare Model": [[109, "step1-prepare-model"]], "Step2: Create Agents": [[109, "step2-create-agents"]], "Step3: Agent Conversation": [[109, "step3-agent-conversation"]], "Streaming": [[116, null]], "String Type": [[115, "string-type"]], "Submit a Pull Request": [[127, "submit-a-pull-request"]], "Submodules": [[0, "submodules"], [1, "submodules"], [14, "submodules"], [17, "submodules"], [20, "submodules"], [32, "submodules"], [38, "submodules"], [42, "submodules"], [46, "submodules"], [51, "submodules"], [54, "submodules"], [55, "submodules"], [57, "submodules"], [61, "submodules"], [65, "submodules"], [68, "submodules"], [74, "submodules"], [78, "submodules"], [80, "submodules"], [88, "submodules"], [90, "submodules"], [92, "submodules"], [96, "submodules"], [100, "submodules"]], "Subpackages": [[0, "subpackages"], [54, "subpackages"], [95, "subpackages"]], "Supported Models": [[114, "supported-models"]], "SwitchPipeline": [[113, "switchpipeline"]], "System Prompt Comparer": [[123, "system-prompt-comparer"]], "System Prompt Generator": [[123, "system-prompt-generator"]], "System Prompt Optimization": [[123, null]], "System Prompt Optimizer": [[123, "system-prompt-optimizer"]], "Table of Contents": [[115, "table-of-contents"], [123, "table-of-contents"]], "TemporaryMemory": [[118, "temporarymemory"]], "Tool": [[117, null]], "Tutorial Navigator": [[105, "tutorial-navigator"], [129, "tutorial-navigator"]], "Typical Use Cases": [[115, "typical-use-cases"]], "Understanding AgentBase": [[112, "understanding-agentbase"]], "Usage": [[113, "usage"], [113, "id1"], [121, "usage"]], "UserAgent": [[112, "useragent"]], "Using Conda": [[108, "using-conda"]], "Using LlamaIndexKnowledge as an example": [[124, "using-llamaindexknowledge-as-an-example"]], "Using Virtualenv": [[108, "using-virtualenv"]], "Validation": [[115, "validation"]], "Vision Models": [[119, "vision-models"]], "Web Browser Control": [[125, null]], "Welcome to AgentScope Tutorial": [[105, "welcome-to-agentscope-tutorial"], [129, null]], "WereWolf Game": [[115, "werewolf-game"]], "What is AgentScope?": [[107, "what-is-agentscope"]], "WhileLoopPipeline": [[113, "whilelooppipeline"]], "Why AgentScope?": [[107, "why-agentscope"]], "Windows": [[108, "windows"]], "Work with Agent": [[125, "work-with-agent"]], "Workflow": [[107, "workflow"]], "ZhipuAI API": [[114, "zhipuai-api"]], "ZhipuAIChatWrapper": [[119, "zhipuaichatwrapper"]], "agentscope": [[106, null]], "agentscope package": [[0, null]], "agentscope.agents package": [[1, null]], "agentscope.agents.agent module": [[2, null]], "agentscope.agents.dialog_agent module": [[3, null]], "agentscope.agents.dict_dialog_agent module": [[4, null]], "agentscope.agents.operator module": [[5, null]], "agentscope.agents.rag_agent module": [[6, null]], "agentscope.agents.react_agent module": [[7, null]], "agentscope.agents.rpc_agent module": [[8, null]], "agentscope.agents.user_agent module": [[9, null]], "agentscope.constants module": [[10, null]], "agentscope.exception module": [[11, null]], "agentscope.logging module": [[12, null]], "agentscope.manager package": [[13, null]], "agentscope.memory package": [[14, null]], "agentscope.memory.memory module": [[15, null]], "agentscope.memory.temporary_memory module": [[16, null]], "agentscope.message package": [[17, null]], "agentscope.message.msg module": [[18, null]], "agentscope.message.placeholder module": [[19, null]], "agentscope.models package": [[20, null]], "agentscope.models.dashscope_model module": [[21, null]], "agentscope.models.gemini_model module": [[22, null]], "agentscope.models.litellm_model module": [[23, null]], "agentscope.models.model module": [[24, null]], "agentscope.models.ollama_model module": [[25, null]], "agentscope.models.openai_model module": [[26, null]], "agentscope.models.post_model module": [[27, null]], "agentscope.models.response module": [[28, null]], "agentscope.models.yi_model module": [[29, null]], "agentscope.models.zhipu_model module": [[30, null]], "agentscope.msghub module": [[31, null]], "agentscope.parsers package": [[32, null]], "agentscope.parsers.code_block_parser module": [[33, null]], "agentscope.parsers.json_object_parser module": [[34, null]], "agentscope.parsers.parser_base module": [[35, null]], "agentscope.parsers.regex_tagged_content_parser module": [[36, null]], "agentscope.parsers.tagged_content_parser module": [[37, null]], "agentscope.pipelines package": [[38, null]], "agentscope.pipelines.functional module": [[39, null]], "agentscope.pipelines.pipeline module": [[40, null]], "agentscope.prompt package": [[41, null]], "agentscope.rag package": [[42, null]], "agentscope.rag.knowledge module": [[43, null]], "agentscope.rag.knowledge_bank module": [[44, null]], "agentscope.rag.llama_index_knowledge module": [[45, null]], "agentscope.rpc package": [[46, null]], "agentscope.rpc.rpc_agent_client module": [[47, null]], "agentscope.rpc.rpc_agent_pb2 module": [[48, null]], "agentscope.rpc.rpc_agent_pb2_grpc module": [[49, null]], "agentscope.serialize module": [[50, null]], "agentscope.server package": [[51, null]], "agentscope.server.launcher module": [[52, null]], "agentscope.server.servicer module": [[53, null]], "agentscope.service package": [[54, null]], "agentscope.service.browser package": [[55, null]], "agentscope.service.browser.web_browser module": [[56, null]], "agentscope.service.execute_code package": [[57, null]], "agentscope.service.execute_code.exec_notebook module": [[58, null]], "agentscope.service.execute_code.exec_python module": [[59, null]], "agentscope.service.execute_code.exec_shell module": [[60, null]], "agentscope.service.file package": [[61, null]], "agentscope.service.file.common module": [[62, null]], "agentscope.service.file.json module": [[63, null]], "agentscope.service.file.text module": [[64, null]], "agentscope.service.multi_modality package": [[65, null]], "agentscope.service.multi_modality.dashscope_services module": [[66, null]], "agentscope.service.multi_modality.openai_services module": [[67, null]], "agentscope.service.retrieval package": [[68, null]], "agentscope.service.retrieval.retrieval_from_list module": [[69, null]], "agentscope.service.retrieval.similarity module": [[70, null]], "agentscope.service.service_response module": [[71, null]], "agentscope.service.service_status module": [[72, null]], "agentscope.service.service_toolkit module": [[73, null]], "agentscope.service.sql_query package": [[74, null]], "agentscope.service.sql_query.mongodb module": [[75, null]], "agentscope.service.sql_query.mysql module": [[76, null]], "agentscope.service.sql_query.sqlite module": [[77, null]], "agentscope.service.text_processing package": [[78, null]], "agentscope.service.text_processing.summarization module": [[79, null]], "agentscope.service.web package": [[80, null]], "agentscope.service.web.arxiv module": [[81, null]], "agentscope.service.web.dblp module": [[82, null]], "agentscope.service.web.download module": [[83, null]], "agentscope.service.web.search module": [[84, null]], "agentscope.service.web.tripadvisor module": [[85, null]], "agentscope.service.web.web_digest module": [[86, null]], "agentscope.service.web.wikipedia module": [[87, null]], "agentscope.strategy package": [[88, null]], "agentscope.strategy.mixture_of_agent module": [[89, null]], "agentscope.studio package": [[90, null]], "agentscope.studio.utils module": [[91, null]], "agentscope.utils package": [[92, null]], "agentscope.utils.common module": [[93, null]], "agentscope.utils.token_utils module": [[94, null]], "agentscope.web package": [[95, null]], "agentscope.web.gradio package": [[96, null]], "agentscope.web.gradio.constants module": [[97, null]], "agentscope.web.gradio.studio module": [[98, null]], "agentscope.web.gradio.utils module": [[99, null]], "agentscope.web.workstation package": [[100, null]], "agentscope.web.workstation.workflow module": [[101, null]], "agentscope.web.workstation.workflow_dag module": [[102, null]], "agentscope.web.workstation.workflow_node module": [[103, null]], "agentscope.web.workstation.workflow_utils module": [[104, null]], "to_dist with lower cost": [[121, "to-dist-with-lower-cost"]], "}": [[20, "id53"], [30, "id9"], [32, "id19"], [36, "id3"]]}, "docnames": ["agentscope", "agentscope.agents", "agentscope.agents.agent", "agentscope.agents.dialog_agent", "agentscope.agents.dict_dialog_agent", "agentscope.agents.operator", "agentscope.agents.rag_agent", "agentscope.agents.react_agent", "agentscope.agents.rpc_agent", "agentscope.agents.user_agent", "agentscope.constants", "agentscope.exception", "agentscope.logging", "agentscope.manager", "agentscope.memory", "agentscope.memory.memory", "agentscope.memory.temporary_memory", "agentscope.message", "agentscope.message.msg", "agentscope.message.placeholder", "agentscope.models", "agentscope.models.dashscope_model", "agentscope.models.gemini_model", "agentscope.models.litellm_model", "agentscope.models.model", "agentscope.models.ollama_model", "agentscope.models.openai_model", "agentscope.models.post_model", "agentscope.models.response", "agentscope.models.yi_model", "agentscope.models.zhipu_model", "agentscope.msghub", "agentscope.parsers", "agentscope.parsers.code_block_parser", "agentscope.parsers.json_object_parser", "agentscope.parsers.parser_base", "agentscope.parsers.regex_tagged_content_parser", "agentscope.parsers.tagged_content_parser", "agentscope.pipelines", "agentscope.pipelines.functional", "agentscope.pipelines.pipeline", "agentscope.prompt", "agentscope.rag", "agentscope.rag.knowledge", "agentscope.rag.knowledge_bank", "agentscope.rag.llama_index_knowledge", "agentscope.rpc", "agentscope.rpc.rpc_agent_client", "agentscope.rpc.rpc_agent_pb2", "agentscope.rpc.rpc_agent_pb2_grpc", "agentscope.serialize", "agentscope.server", "agentscope.server.launcher", "agentscope.server.servicer", "agentscope.service", "agentscope.service.browser", "agentscope.service.browser.web_browser", "agentscope.service.execute_code", "agentscope.service.execute_code.exec_notebook", "agentscope.service.execute_code.exec_python", "agentscope.service.execute_code.exec_shell", "agentscope.service.file", "agentscope.service.file.common", "agentscope.service.file.json", "agentscope.service.file.text", "agentscope.service.multi_modality", "agentscope.service.multi_modality.dashscope_services", "agentscope.service.multi_modality.openai_services", "agentscope.service.retrieval", "agentscope.service.retrieval.retrieval_from_list", "agentscope.service.retrieval.similarity", "agentscope.service.service_response", "agentscope.service.service_status", "agentscope.service.service_toolkit", "agentscope.service.sql_query", "agentscope.service.sql_query.mongodb", "agentscope.service.sql_query.mysql", "agentscope.service.sql_query.sqlite", "agentscope.service.text_processing", "agentscope.service.text_processing.summarization", "agentscope.service.web", "agentscope.service.web.arxiv", "agentscope.service.web.dblp", "agentscope.service.web.download", "agentscope.service.web.search", "agentscope.service.web.tripadvisor", "agentscope.service.web.web_digest", "agentscope.service.web.wikipedia", "agentscope.strategy", "agentscope.strategy.mixture_of_agent", "agentscope.studio", "agentscope.studio.utils", "agentscope.utils", "agentscope.utils.common", "agentscope.utils.token_utils", "agentscope.web", "agentscope.web.gradio", "agentscope.web.gradio.constants", "agentscope.web.gradio.studio", "agentscope.web.gradio.utils", "agentscope.web.workstation", "agentscope.web.workstation.workflow", "agentscope.web.workstation.workflow_dag", "agentscope.web.workstation.workflow_node", "agentscope.web.workstation.workflow_utils", "index", "modules", "tutorial/101-agentscope", "tutorial/102-installation", "tutorial/103-example", "tutorial/104-usecase", "tutorial/105-logging", "tutorial/201-agent", "tutorial/202-pipeline", "tutorial/203-model", "tutorial/203-parser", "tutorial/203-stream", "tutorial/204-service", "tutorial/205-memory", "tutorial/206-prompt", "tutorial/207-monitor", "tutorial/208-distribute", "tutorial/209-gui", "tutorial/209-prompt_opt", "tutorial/210-rag", "tutorial/211-web", "tutorial/301-community", "tutorial/302-contribute", "tutorial/contribute", "tutorial/main"], "envversion": {"sphinx": 62, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.viewcode": 1}, "filenames": ["agentscope.rst", "agentscope.agents.rst", "agentscope.agents.agent.rst", "agentscope.agents.dialog_agent.rst", "agentscope.agents.dict_dialog_agent.rst", "agentscope.agents.operator.rst", "agentscope.agents.rag_agent.rst", "agentscope.agents.react_agent.rst", "agentscope.agents.rpc_agent.rst", "agentscope.agents.user_agent.rst", "agentscope.constants.rst", "agentscope.exception.rst", "agentscope.logging.rst", "agentscope.manager.rst", "agentscope.memory.rst", "agentscope.memory.memory.rst", "agentscope.memory.temporary_memory.rst", "agentscope.message.rst", "agentscope.message.msg.rst", "agentscope.message.placeholder.rst", "agentscope.models.rst", "agentscope.models.dashscope_model.rst", "agentscope.models.gemini_model.rst", "agentscope.models.litellm_model.rst", "agentscope.models.model.rst", "agentscope.models.ollama_model.rst", "agentscope.models.openai_model.rst", "agentscope.models.post_model.rst", "agentscope.models.response.rst", "agentscope.models.yi_model.rst", "agentscope.models.zhipu_model.rst", "agentscope.msghub.rst", "agentscope.parsers.rst", "agentscope.parsers.code_block_parser.rst", "agentscope.parsers.json_object_parser.rst", "agentscope.parsers.parser_base.rst", "agentscope.parsers.regex_tagged_content_parser.rst", "agentscope.parsers.tagged_content_parser.rst", "agentscope.pipelines.rst", "agentscope.pipelines.functional.rst", "agentscope.pipelines.pipeline.rst", "agentscope.prompt.rst", "agentscope.rag.rst", "agentscope.rag.knowledge.rst", "agentscope.rag.knowledge_bank.rst", "agentscope.rag.llama_index_knowledge.rst", "agentscope.rpc.rst", "agentscope.rpc.rpc_agent_client.rst", "agentscope.rpc.rpc_agent_pb2.rst", "agentscope.rpc.rpc_agent_pb2_grpc.rst", "agentscope.serialize.rst", "agentscope.server.rst", "agentscope.server.launcher.rst", "agentscope.server.servicer.rst", "agentscope.service.rst", "agentscope.service.browser.rst", "agentscope.service.browser.web_browser.rst", "agentscope.service.execute_code.rst", "agentscope.service.execute_code.exec_notebook.rst", "agentscope.service.execute_code.exec_python.rst", "agentscope.service.execute_code.exec_shell.rst", "agentscope.service.file.rst", "agentscope.service.file.common.rst", "agentscope.service.file.json.rst", "agentscope.service.file.text.rst", "agentscope.service.multi_modality.rst", "agentscope.service.multi_modality.dashscope_services.rst", "agentscope.service.multi_modality.openai_services.rst", "agentscope.service.retrieval.rst", "agentscope.service.retrieval.retrieval_from_list.rst", "agentscope.service.retrieval.similarity.rst", "agentscope.service.service_response.rst", "agentscope.service.service_status.rst", "agentscope.service.service_toolkit.rst", "agentscope.service.sql_query.rst", "agentscope.service.sql_query.mongodb.rst", "agentscope.service.sql_query.mysql.rst", "agentscope.service.sql_query.sqlite.rst", "agentscope.service.text_processing.rst", "agentscope.service.text_processing.summarization.rst", "agentscope.service.web.rst", "agentscope.service.web.arxiv.rst", "agentscope.service.web.dblp.rst", "agentscope.service.web.download.rst", "agentscope.service.web.search.rst", "agentscope.service.web.tripadvisor.rst", "agentscope.service.web.web_digest.rst", "agentscope.service.web.wikipedia.rst", "agentscope.strategy.rst", "agentscope.strategy.mixture_of_agent.rst", "agentscope.studio.rst", "agentscope.studio.utils.rst", "agentscope.utils.rst", "agentscope.utils.common.rst", "agentscope.utils.token_utils.rst", "agentscope.web.rst", "agentscope.web.gradio.rst", "agentscope.web.gradio.constants.rst", "agentscope.web.gradio.studio.rst", "agentscope.web.gradio.utils.rst", "agentscope.web.workstation.rst", "agentscope.web.workstation.workflow.rst", "agentscope.web.workstation.workflow_dag.rst", "agentscope.web.workstation.workflow_node.rst", "agentscope.web.workstation.workflow_utils.rst", "index.rst", "modules.rst", "tutorial/101-agentscope.md", "tutorial/102-installation.md", "tutorial/103-example.md", "tutorial/104-usecase.md", "tutorial/105-logging.md", "tutorial/201-agent.md", "tutorial/202-pipeline.md", "tutorial/203-model.md", "tutorial/203-parser.md", "tutorial/203-stream.md", "tutorial/204-service.md", "tutorial/205-memory.md", "tutorial/206-prompt.md", "tutorial/207-monitor.md", "tutorial/208-distribute.md", "tutorial/209-gui.md", "tutorial/209-prompt_opt.md", "tutorial/210-rag.md", "tutorial/211-web.md", "tutorial/301-community.md", "tutorial/302-contribute.md", "tutorial/contribute.rst", "tutorial/main.md"], "indexentries": {"__init__() (agentscope.agents.agent.agentbase method)": [[2, "agentscope.agents.agent.AgentBase.__init__", false]], "__init__() (agentscope.agents.agent.distconf method)": [[2, "agentscope.agents.agent.DistConf.__init__", false]], "__init__() (agentscope.agents.agentbase method)": [[1, "agentscope.agents.AgentBase.__init__", false]], "__init__() (agentscope.agents.dialog_agent.dialogagent method)": [[3, "agentscope.agents.dialog_agent.DialogAgent.__init__", false]], "__init__() (agentscope.agents.dialogagent method)": [[1, "agentscope.agents.DialogAgent.__init__", false]], "__init__() (agentscope.agents.dict_dialog_agent.dictdialogagent method)": [[4, "agentscope.agents.dict_dialog_agent.DictDialogAgent.__init__", false]], "__init__() (agentscope.agents.dictdialogagent method)": [[1, "agentscope.agents.DictDialogAgent.__init__", false]], "__init__() (agentscope.agents.distconf method)": [[1, "agentscope.agents.DistConf.__init__", false]], "__init__() (agentscope.agents.llamaindexagent method)": [[1, "agentscope.agents.LlamaIndexAgent.__init__", false]], "__init__() (agentscope.agents.rag_agent.llamaindexagent method)": [[6, "agentscope.agents.rag_agent.LlamaIndexAgent.__init__", false]], "__init__() (agentscope.agents.react_agent.reactagent method)": [[7, "agentscope.agents.react_agent.ReActAgent.__init__", false]], "__init__() (agentscope.agents.reactagent method)": [[1, "agentscope.agents.ReActAgent.__init__", false]], "__init__() (agentscope.agents.rpc_agent.rpcagent method)": [[8, "agentscope.agents.rpc_agent.RpcAgent.__init__", false]], "__init__() (agentscope.agents.user_agent.useragent method)": [[9, "agentscope.agents.user_agent.UserAgent.__init__", false]], "__init__() (agentscope.agents.useragent method)": [[1, "agentscope.agents.UserAgent.__init__", false]], "__init__() (agentscope.exception.agentservererror method)": [[11, "agentscope.exception.AgentServerError.__init__", false]], "__init__() (agentscope.exception.functioncallerror method)": [[11, "agentscope.exception.FunctionCallError.__init__", false]], "__init__() (agentscope.exception.quotaexceedederror method)": [[11, "agentscope.exception.QuotaExceededError.__init__", false]], "__init__() (agentscope.exception.responseparsingerror method)": [[11, "agentscope.exception.ResponseParsingError.__init__", false]], "__init__() (agentscope.exception.studioerror method)": [[11, "agentscope.exception.StudioError.__init__", false]], "__init__() (agentscope.exception.tagnotfounderror method)": [[11, "agentscope.exception.TagNotFoundError.__init__", false]], "__init__() (agentscope.manager.asmanager method)": [[13, "agentscope.manager.ASManager.__init__", false]], "__init__() (agentscope.manager.filemanager method)": [[13, "agentscope.manager.FileManager.__init__", false]], "__init__() (agentscope.manager.modelmanager method)": [[13, "agentscope.manager.ModelManager.__init__", false]], "__init__() (agentscope.manager.monitormanager method)": [[13, "agentscope.manager.MonitorManager.__init__", false]], "__init__() (agentscope.memory.temporary_memory.temporarymemory method)": [[16, "agentscope.memory.temporary_memory.TemporaryMemory.__init__", false]], "__init__() (agentscope.memory.temporarymemory method)": [[14, "agentscope.memory.TemporaryMemory.__init__", false]], "__init__() (agentscope.message.msg method)": [[17, "agentscope.message.Msg.__init__", false]], "__init__() (agentscope.message.msg.msg method)": [[18, "agentscope.message.msg.Msg.__init__", false]], "__init__() (agentscope.message.placeholder.placeholdermessage method)": [[19, "agentscope.message.placeholder.PlaceholderMessage.__init__", false]], "__init__() (agentscope.message.placeholdermessage method)": [[17, "agentscope.message.PlaceholderMessage.__init__", false]], "__init__() (agentscope.models.dashscope_model.dashscopechatwrapper method)": [[21, "agentscope.models.dashscope_model.DashScopeChatWrapper.__init__", false]], "__init__() (agentscope.models.dashscope_model.dashscopewrapperbase method)": [[21, "agentscope.models.dashscope_model.DashScopeWrapperBase.__init__", false]], "__init__() (agentscope.models.dashscopechatwrapper method)": [[20, "agentscope.models.DashScopeChatWrapper.__init__", false]], "__init__() (agentscope.models.gemini_model.geminichatwrapper method)": [[22, "agentscope.models.gemini_model.GeminiChatWrapper.__init__", false]], "__init__() (agentscope.models.gemini_model.geminiwrapperbase method)": [[22, "agentscope.models.gemini_model.GeminiWrapperBase.__init__", false]], "__init__() (agentscope.models.geminichatwrapper method)": [[20, "agentscope.models.GeminiChatWrapper.__init__", false]], "__init__() (agentscope.models.litellm_model.litellmchatwrapper method)": [[23, "agentscope.models.litellm_model.LiteLLMChatWrapper.__init__", false]], "__init__() (agentscope.models.litellm_model.litellmwrapperbase method)": [[23, "agentscope.models.litellm_model.LiteLLMWrapperBase.__init__", false]], "__init__() (agentscope.models.litellmchatwrapper method)": [[20, "agentscope.models.LiteLLMChatWrapper.__init__", false]], "__init__() (agentscope.models.model.modelwrapperbase method)": [[24, "agentscope.models.model.ModelWrapperBase.__init__", false]], "__init__() (agentscope.models.modelresponse method)": [[20, "agentscope.models.ModelResponse.__init__", false]], "__init__() (agentscope.models.modelwrapperbase method)": [[20, "agentscope.models.ModelWrapperBase.__init__", false]], "__init__() (agentscope.models.ollama_model.ollamachatwrapper method)": [[25, "agentscope.models.ollama_model.OllamaChatWrapper.__init__", false]], "__init__() (agentscope.models.ollama_model.ollamawrapperbase method)": [[25, "agentscope.models.ollama_model.OllamaWrapperBase.__init__", false]], "__init__() (agentscope.models.ollamachatwrapper method)": [[20, "agentscope.models.OllamaChatWrapper.__init__", false]], "__init__() (agentscope.models.openai_model.openaichatwrapper method)": [[26, "agentscope.models.openai_model.OpenAIChatWrapper.__init__", false]], "__init__() (agentscope.models.openai_model.openaiwrapperbase method)": [[26, "agentscope.models.openai_model.OpenAIWrapperBase.__init__", false]], "__init__() (agentscope.models.openaichatwrapper method)": [[20, "agentscope.models.OpenAIChatWrapper.__init__", false]], "__init__() (agentscope.models.openaiwrapperbase method)": [[20, "agentscope.models.OpenAIWrapperBase.__init__", false]], "__init__() (agentscope.models.post_model.postapimodelwrapperbase method)": [[27, "agentscope.models.post_model.PostAPIModelWrapperBase.__init__", false]], "__init__() (agentscope.models.postapimodelwrapperbase method)": [[20, "agentscope.models.PostAPIModelWrapperBase.__init__", false]], "__init__() (agentscope.models.response.modelresponse method)": [[28, "agentscope.models.response.ModelResponse.__init__", false]], "__init__() (agentscope.models.yi_model.yichatwrapper method)": [[29, "agentscope.models.yi_model.YiChatWrapper.__init__", false]], "__init__() (agentscope.models.yichatwrapper method)": [[20, "agentscope.models.YiChatWrapper.__init__", false]], "__init__() (agentscope.models.zhipu_model.zhipuaichatwrapper method)": [[30, "agentscope.models.zhipu_model.ZhipuAIChatWrapper.__init__", false]], "__init__() (agentscope.models.zhipu_model.zhipuaiwrapperbase method)": [[30, "agentscope.models.zhipu_model.ZhipuAIWrapperBase.__init__", false]], "__init__() (agentscope.models.zhipuaichatwrapper method)": [[20, "agentscope.models.ZhipuAIChatWrapper.__init__", false]], "__init__() (agentscope.msghub.msghubmanager method)": [[31, "agentscope.msghub.MsgHubManager.__init__", false]], "__init__() (agentscope.parsers.code_block_parser.markdowncodeblockparser method)": [[33, "agentscope.parsers.code_block_parser.MarkdownCodeBlockParser.__init__", false]], "__init__() (agentscope.parsers.json_object_parser.markdownjsondictparser method)": [[34, "agentscope.parsers.json_object_parser.MarkdownJsonDictParser.__init__", false]], "__init__() (agentscope.parsers.json_object_parser.markdownjsonobjectparser method)": [[34, "agentscope.parsers.json_object_parser.MarkdownJsonObjectParser.__init__", false]], "__init__() (agentscope.parsers.markdowncodeblockparser method)": [[32, "agentscope.parsers.MarkdownCodeBlockParser.__init__", false]], "__init__() (agentscope.parsers.markdownjsondictparser method)": [[32, "agentscope.parsers.MarkdownJsonDictParser.__init__", false]], "__init__() (agentscope.parsers.markdownjsonobjectparser method)": [[32, "agentscope.parsers.MarkdownJsonObjectParser.__init__", false]], "__init__() (agentscope.parsers.multitaggedcontentparser method)": [[32, "agentscope.parsers.MultiTaggedContentParser.__init__", false]], "__init__() (agentscope.parsers.parser_base.dictfiltermixin method)": [[35, "agentscope.parsers.parser_base.DictFilterMixin.__init__", false]], "__init__() (agentscope.parsers.regex_tagged_content_parser.regextaggedcontentparser method)": [[36, "agentscope.parsers.regex_tagged_content_parser.RegexTaggedContentParser.__init__", false]], "__init__() (agentscope.parsers.regextaggedcontentparser method)": [[32, "agentscope.parsers.RegexTaggedContentParser.__init__", false]], "__init__() (agentscope.parsers.tagged_content_parser.multitaggedcontentparser method)": [[37, "agentscope.parsers.tagged_content_parser.MultiTaggedContentParser.__init__", false]], "__init__() (agentscope.parsers.tagged_content_parser.taggedcontent method)": [[37, "agentscope.parsers.tagged_content_parser.TaggedContent.__init__", false]], "__init__() (agentscope.parsers.taggedcontent method)": [[32, "agentscope.parsers.TaggedContent.__init__", false]], "__init__() (agentscope.pipelines.forlooppipeline method)": [[38, "agentscope.pipelines.ForLoopPipeline.__init__", false]], "__init__() (agentscope.pipelines.ifelsepipeline method)": [[38, "agentscope.pipelines.IfElsePipeline.__init__", false]], "__init__() (agentscope.pipelines.pipeline.forlooppipeline method)": [[40, "agentscope.pipelines.pipeline.ForLoopPipeline.__init__", false]], "__init__() (agentscope.pipelines.pipeline.ifelsepipeline method)": [[40, "agentscope.pipelines.pipeline.IfElsePipeline.__init__", false]], "__init__() (agentscope.pipelines.pipeline.pipelinebase method)": [[40, "agentscope.pipelines.pipeline.PipelineBase.__init__", false]], "__init__() (agentscope.pipelines.pipeline.sequentialpipeline method)": [[40, "agentscope.pipelines.pipeline.SequentialPipeline.__init__", false]], "__init__() (agentscope.pipelines.pipeline.switchpipeline method)": [[40, "agentscope.pipelines.pipeline.SwitchPipeline.__init__", false]], "__init__() (agentscope.pipelines.pipeline.whilelooppipeline method)": [[40, "agentscope.pipelines.pipeline.WhileLoopPipeline.__init__", false]], "__init__() (agentscope.pipelines.pipelinebase method)": [[38, "agentscope.pipelines.PipelineBase.__init__", false]], "__init__() (agentscope.pipelines.sequentialpipeline method)": [[38, "agentscope.pipelines.SequentialPipeline.__init__", false]], "__init__() (agentscope.pipelines.switchpipeline method)": [[38, "agentscope.pipelines.SwitchPipeline.__init__", false]], "__init__() (agentscope.pipelines.whilelooppipeline method)": [[38, "agentscope.pipelines.WhileLoopPipeline.__init__", false]], "__init__() (agentscope.prompt.chinesesystempromptgenerator method)": [[41, "agentscope.prompt.ChineseSystemPromptGenerator.__init__", false]], "__init__() (agentscope.prompt.englishsystempromptgenerator method)": [[41, "agentscope.prompt.EnglishSystemPromptGenerator.__init__", false]], "__init__() (agentscope.prompt.systempromptcomparer method)": [[41, "agentscope.prompt.SystemPromptComparer.__init__", false]], "__init__() (agentscope.prompt.systempromptgeneratorbase method)": [[41, "agentscope.prompt.SystemPromptGeneratorBase.__init__", false]], "__init__() (agentscope.prompt.systempromptoptimizer method)": [[41, "agentscope.prompt.SystemPromptOptimizer.__init__", false]], "__init__() (agentscope.rag.knowledge method)": [[42, "agentscope.rag.Knowledge.__init__", false]], "__init__() (agentscope.rag.knowledge.knowledge method)": [[43, "agentscope.rag.knowledge.Knowledge.__init__", false]], "__init__() (agentscope.rag.knowledge_bank.knowledgebank method)": [[44, "agentscope.rag.knowledge_bank.KnowledgeBank.__init__", false]], "__init__() (agentscope.rag.knowledgebank method)": [[42, "agentscope.rag.KnowledgeBank.__init__", false]], "__init__() (agentscope.rag.llama_index_knowledge.llamaindexknowledge method)": [[45, "agentscope.rag.llama_index_knowledge.LlamaIndexKnowledge.__init__", false]], "__init__() (agentscope.rpc.responsestub method)": [[46, "agentscope.rpc.ResponseStub.__init__", false]], "__init__() (agentscope.rpc.rpc_agent_client.responsestub method)": [[47, "agentscope.rpc.rpc_agent_client.ResponseStub.__init__", false]], "__init__() (agentscope.rpc.rpc_agent_client.rpcagentclient method)": [[47, "agentscope.rpc.rpc_agent_client.RpcAgentClient.__init__", false]], "__init__() (agentscope.rpc.rpc_agent_pb2_grpc.rpcagentstub method)": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgentStub.__init__", false]], "__init__() (agentscope.rpc.rpcagentclient method)": [[46, "agentscope.rpc.RpcAgentClient.__init__", false]], "__init__() (agentscope.rpc.rpcagentstub method)": [[46, "agentscope.rpc.RpcAgentStub.__init__", false]], "__init__() (agentscope.server.agentserverservicer method)": [[51, "agentscope.server.AgentServerServicer.__init__", false]], "__init__() (agentscope.server.launcher.rpcagentserverlauncher method)": [[52, "agentscope.server.launcher.RpcAgentServerLauncher.__init__", false]], "__init__() (agentscope.server.rpcagentserverlauncher method)": [[51, "agentscope.server.RpcAgentServerLauncher.__init__", false]], "__init__() (agentscope.server.servicer.agentserverservicer method)": [[53, "agentscope.server.servicer.AgentServerServicer.__init__", false]], "__init__() (agentscope.service.browser.web_browser.webbrowser method)": [[56, "agentscope.service.browser.web_browser.WebBrowser.__init__", false]], "__init__() (agentscope.service.execute_code.exec_notebook.notebookexecutor method)": [[58, "agentscope.service.execute_code.exec_notebook.NoteBookExecutor.__init__", false]], "__init__() (agentscope.service.notebookexecutor method)": [[54, "agentscope.service.NoteBookExecutor.__init__", false]], "__init__() (agentscope.service.service_response.serviceresponse method)": [[71, "agentscope.service.service_response.ServiceResponse.__init__", false]], "__init__() (agentscope.service.service_toolkit.servicefunction method)": [[73, "agentscope.service.service_toolkit.ServiceFunction.__init__", false]], "__init__() (agentscope.service.service_toolkit.servicetoolkit method)": [[73, "agentscope.service.service_toolkit.ServiceToolkit.__init__", false]], "__init__() (agentscope.service.serviceresponse method)": [[54, "agentscope.service.ServiceResponse.__init__", false]], "__init__() (agentscope.service.servicetoolkit method)": [[54, "agentscope.service.ServiceToolkit.__init__", false]], "__init__() (agentscope.service.webbrowser method)": [[54, "agentscope.service.WebBrowser.__init__", false]], "__init__() (agentscope.strategy.mixture_of_agent.mixtureofagents method)": [[89, "agentscope.strategy.mixture_of_agent.MixtureOfAgents.__init__", false]], "__init__() (agentscope.strategy.mixtureofagents method)": [[88, "agentscope.strategy.MixtureOfAgents.__init__", false]], "__init__() (agentscope.utils.common.importerrorreporter method)": [[93, "agentscope.utils.common.ImportErrorReporter.__init__", false]], "__init__() (agentscope.web.workstation.workflow_dag.asdigraph method)": [[102, "agentscope.web.workstation.workflow_dag.ASDiGraph.__init__", false]], "__init__() (agentscope.web.workstation.workflow_node.bingsearchservicenode method)": [[103, "agentscope.web.workstation.workflow_node.BingSearchServiceNode.__init__", false]], "__init__() (agentscope.web.workstation.workflow_node.copynode method)": [[103, "agentscope.web.workstation.workflow_node.CopyNode.__init__", false]], "__init__() (agentscope.web.workstation.workflow_node.dialogagentnode method)": [[103, "agentscope.web.workstation.workflow_node.DialogAgentNode.__init__", false]], "__init__() (agentscope.web.workstation.workflow_node.dictdialogagentnode method)": [[103, "agentscope.web.workstation.workflow_node.DictDialogAgentNode.__init__", false]], "__init__() (agentscope.web.workstation.workflow_node.forlooppipelinenode method)": [[103, "agentscope.web.workstation.workflow_node.ForLoopPipelineNode.__init__", false]], "__init__() (agentscope.web.workstation.workflow_node.googlesearchservicenode method)": [[103, "agentscope.web.workstation.workflow_node.GoogleSearchServiceNode.__init__", false]], "__init__() (agentscope.web.workstation.workflow_node.ifelsepipelinenode method)": [[103, "agentscope.web.workstation.workflow_node.IfElsePipelineNode.__init__", false]], "__init__() (agentscope.web.workstation.workflow_node.modelnode method)": [[103, "agentscope.web.workstation.workflow_node.ModelNode.__init__", false]], "__init__() (agentscope.web.workstation.workflow_node.msghubnode method)": [[103, "agentscope.web.workstation.workflow_node.MsgHubNode.__init__", false]], "__init__() (agentscope.web.workstation.workflow_node.msgnode method)": [[103, "agentscope.web.workstation.workflow_node.MsgNode.__init__", false]], "__init__() (agentscope.web.workstation.workflow_node.placeholdernode method)": [[103, "agentscope.web.workstation.workflow_node.PlaceHolderNode.__init__", false]], "__init__() (agentscope.web.workstation.workflow_node.pythonservicenode method)": [[103, "agentscope.web.workstation.workflow_node.PythonServiceNode.__init__", false]], "__init__() (agentscope.web.workstation.workflow_node.reactagentnode method)": [[103, "agentscope.web.workstation.workflow_node.ReActAgentNode.__init__", false]], "__init__() (agentscope.web.workstation.workflow_node.readtextservicenode method)": [[103, "agentscope.web.workstation.workflow_node.ReadTextServiceNode.__init__", false]], "__init__() (agentscope.web.workstation.workflow_node.sequentialpipelinenode method)": [[103, "agentscope.web.workstation.workflow_node.SequentialPipelineNode.__init__", false]], "__init__() (agentscope.web.workstation.workflow_node.switchpipelinenode method)": [[103, "agentscope.web.workstation.workflow_node.SwitchPipelineNode.__init__", false]], "__init__() (agentscope.web.workstation.workflow_node.useragentnode method)": [[103, "agentscope.web.workstation.workflow_node.UserAgentNode.__init__", false]], "__init__() (agentscope.web.workstation.workflow_node.whilelooppipelinenode method)": [[103, "agentscope.web.workstation.workflow_node.WhileLoopPipelineNode.__init__", false]], "__init__() (agentscope.web.workstation.workflow_node.workflownode method)": [[103, "agentscope.web.workstation.workflow_node.WorkflowNode.__init__", false]], "__init__() (agentscope.web.workstation.workflow_node.writetextservicenode method)": [[103, "agentscope.web.workstation.workflow_node.WriteTextServiceNode.__init__", false]], "action_click() (agentscope.service.browser.web_browser.webbrowser method)": [[56, "agentscope.service.browser.web_browser.WebBrowser.action_click", false]], "action_click() (agentscope.service.webbrowser method)": [[54, "agentscope.service.WebBrowser.action_click", false]], "action_press_key() (agentscope.service.browser.web_browser.webbrowser method)": [[56, "agentscope.service.browser.web_browser.WebBrowser.action_press_key", false]], "action_press_key() (agentscope.service.webbrowser method)": [[54, "agentscope.service.WebBrowser.action_press_key", false]], "action_scroll_down() (agentscope.service.browser.web_browser.webbrowser method)": [[56, "agentscope.service.browser.web_browser.WebBrowser.action_scroll_down", false]], "action_scroll_down() (agentscope.service.webbrowser method)": [[54, "agentscope.service.WebBrowser.action_scroll_down", false]], "action_scroll_up() (agentscope.service.browser.web_browser.webbrowser method)": [[56, "agentscope.service.browser.web_browser.WebBrowser.action_scroll_up", false]], "action_scroll_up() (agentscope.service.webbrowser method)": [[54, "agentscope.service.WebBrowser.action_scroll_up", false]], "action_type() (agentscope.service.browser.web_browser.webbrowser method)": [[56, "agentscope.service.browser.web_browser.WebBrowser.action_type", false]], "action_type() (agentscope.service.webbrowser method)": [[54, "agentscope.service.WebBrowser.action_type", false]], "action_visit_url() (agentscope.service.browser.web_browser.webbrowser method)": [[56, "agentscope.service.browser.web_browser.WebBrowser.action_visit_url", false]], "action_visit_url() (agentscope.service.webbrowser method)": [[54, "agentscope.service.WebBrowser.action_visit_url", false]], "add() (agentscope.memory.memory.memorybase method)": [[15, "agentscope.memory.memory.MemoryBase.add", false]], "add() (agentscope.memory.memorybase method)": [[14, "agentscope.memory.MemoryBase.add", false]], "add() (agentscope.memory.temporary_memory.temporarymemory method)": [[16, "agentscope.memory.temporary_memory.TemporaryMemory.add", false]], "add() (agentscope.memory.temporarymemory method)": [[14, "agentscope.memory.TemporaryMemory.add", false]], "add() (agentscope.msghub.msghubmanager method)": [[31, "agentscope.msghub.MsgHubManager.add", false]], "add() (agentscope.service.service_toolkit.servicetoolkit method)": [[73, "agentscope.service.service_toolkit.ServiceToolkit.add", false]], "add() (agentscope.service.servicetoolkit method)": [[54, "agentscope.service.ServiceToolkit.add", false]], "add_as_node() (agentscope.web.workstation.workflow_dag.asdigraph method)": [[102, "agentscope.web.workstation.workflow_dag.ASDiGraph.add_as_node", false]], "add_data_as_knowledge() (agentscope.rag.knowledge_bank.knowledgebank method)": [[44, "agentscope.rag.knowledge_bank.KnowledgeBank.add_data_as_knowledge", false]], "add_data_as_knowledge() (agentscope.rag.knowledgebank method)": [[42, "agentscope.rag.KnowledgeBank.add_data_as_knowledge", false]], "add_rpcagentservicer_to_server() (in module agentscope.rpc)": [[46, "agentscope.rpc.add_RpcAgentServicer_to_server", false]], "add_rpcagentservicer_to_server() (in module agentscope.rpc.rpc_agent_pb2_grpc)": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.add_RpcAgentServicer_to_server", false]], "agent (agentscope.web.workstation.workflow_node.workflownodetype attribute)": [[103, "agentscope.web.workstation.workflow_node.WorkflowNodeType.AGENT", false]], "agent_exists() (agentscope.server.agentserverservicer method)": [[51, "agentscope.server.AgentServerServicer.agent_exists", false]], "agent_exists() (agentscope.server.servicer.agentserverservicer method)": [[53, "agentscope.server.servicer.AgentServerServicer.agent_exists", false]], "agent_id (agentscope.agents.agent.agentbase property)": [[2, "agentscope.agents.agent.AgentBase.agent_id", false]], "agent_id (agentscope.agents.agentbase property)": [[1, "agentscope.agents.AgentBase.agent_id", false]], "agentbase (class in agentscope.agents)": [[1, "agentscope.agents.AgentBase", false]], "agentbase (class in agentscope.agents.agent)": [[2, "agentscope.agents.agent.AgentBase", false]], "agentcallerror": [[11, "agentscope.exception.AgentCallError", false]], "agentcreationerror": [[11, "agentscope.exception.AgentCreationError", false]], "agentscope": [[0, "module-agentscope", false]], "agentscope.agents": [[1, "module-agentscope.agents", false]], "agentscope.agents.agent": [[2, "module-agentscope.agents.agent", false]], "agentscope.agents.dialog_agent": [[3, "module-agentscope.agents.dialog_agent", false]], "agentscope.agents.dict_dialog_agent": [[4, "module-agentscope.agents.dict_dialog_agent", false]], "agentscope.agents.operator": [[5, "module-agentscope.agents.operator", false]], "agentscope.agents.rag_agent": [[6, "module-agentscope.agents.rag_agent", false]], "agentscope.agents.react_agent": [[7, "module-agentscope.agents.react_agent", false]], "agentscope.agents.rpc_agent": [[8, "module-agentscope.agents.rpc_agent", false]], "agentscope.agents.user_agent": [[9, "module-agentscope.agents.user_agent", false]], "agentscope.constants": [[10, "module-agentscope.constants", false]], "agentscope.exception": [[11, "module-agentscope.exception", false]], "agentscope.logging": [[12, "module-agentscope.logging", false]], "agentscope.manager": [[13, "module-agentscope.manager", false]], "agentscope.memory": [[14, "module-agentscope.memory", false]], "agentscope.memory.memory": [[15, "module-agentscope.memory.memory", false]], "agentscope.memory.temporary_memory": [[16, "module-agentscope.memory.temporary_memory", false]], "agentscope.message": [[17, "module-agentscope.message", false]], "agentscope.message.msg": [[18, "module-agentscope.message.msg", false]], "agentscope.message.placeholder": [[19, "module-agentscope.message.placeholder", false]], "agentscope.models": [[20, "module-agentscope.models", false]], "agentscope.models.dashscope_model": [[21, "module-agentscope.models.dashscope_model", false]], "agentscope.models.gemini_model": [[22, "module-agentscope.models.gemini_model", false]], "agentscope.models.litellm_model": [[23, "module-agentscope.models.litellm_model", false]], "agentscope.models.model": [[24, "module-agentscope.models.model", false]], "agentscope.models.ollama_model": [[25, "module-agentscope.models.ollama_model", false]], "agentscope.models.openai_model": [[26, "module-agentscope.models.openai_model", false]], "agentscope.models.post_model": [[27, "module-agentscope.models.post_model", false]], "agentscope.models.response": [[28, "module-agentscope.models.response", false]], "agentscope.models.yi_model": [[29, "module-agentscope.models.yi_model", false]], "agentscope.models.zhipu_model": [[30, "module-agentscope.models.zhipu_model", false]], "agentscope.msghub": [[31, "module-agentscope.msghub", false]], "agentscope.parsers": [[32, "module-agentscope.parsers", false]], "agentscope.parsers.code_block_parser": [[33, "module-agentscope.parsers.code_block_parser", false]], "agentscope.parsers.json_object_parser": [[34, "module-agentscope.parsers.json_object_parser", false]], "agentscope.parsers.parser_base": [[35, "module-agentscope.parsers.parser_base", false]], "agentscope.parsers.regex_tagged_content_parser": [[36, "module-agentscope.parsers.regex_tagged_content_parser", false]], "agentscope.parsers.tagged_content_parser": [[37, "module-agentscope.parsers.tagged_content_parser", false]], "agentscope.pipelines": [[38, "module-agentscope.pipelines", false]], "agentscope.pipelines.functional": [[39, "module-agentscope.pipelines.functional", false]], "agentscope.pipelines.pipeline": [[40, "module-agentscope.pipelines.pipeline", false]], "agentscope.prompt": [[41, "module-agentscope.prompt", false]], "agentscope.rag": [[42, "module-agentscope.rag", false]], "agentscope.rag.knowledge": [[43, "module-agentscope.rag.knowledge", false]], "agentscope.rag.knowledge_bank": [[44, "module-agentscope.rag.knowledge_bank", false]], "agentscope.rag.llama_index_knowledge": [[45, "module-agentscope.rag.llama_index_knowledge", false]], "agentscope.rpc": [[46, "module-agentscope.rpc", false]], "agentscope.rpc.rpc_agent_client": [[47, "module-agentscope.rpc.rpc_agent_client", false]], "agentscope.rpc.rpc_agent_pb2": [[48, "module-agentscope.rpc.rpc_agent_pb2", false]], "agentscope.rpc.rpc_agent_pb2_grpc": [[49, "module-agentscope.rpc.rpc_agent_pb2_grpc", false]], "agentscope.serialize": [[50, "module-agentscope.serialize", false]], "agentscope.server": [[51, "module-agentscope.server", false]], "agentscope.server.launcher": [[52, "module-agentscope.server.launcher", false]], "agentscope.server.servicer": [[53, "module-agentscope.server.servicer", false]], "agentscope.service": [[54, "module-agentscope.service", false]], "agentscope.service.browser": [[55, "module-agentscope.service.browser", false]], "agentscope.service.browser.web_browser": [[56, "module-agentscope.service.browser.web_browser", false]], "agentscope.service.execute_code": [[57, "module-agentscope.service.execute_code", false]], "agentscope.service.execute_code.exec_notebook": [[58, "module-agentscope.service.execute_code.exec_notebook", false]], "agentscope.service.execute_code.exec_python": [[59, "module-agentscope.service.execute_code.exec_python", false]], "agentscope.service.execute_code.exec_shell": [[60, "module-agentscope.service.execute_code.exec_shell", false]], "agentscope.service.file": [[61, "module-agentscope.service.file", false]], "agentscope.service.file.common": [[62, "module-agentscope.service.file.common", false]], "agentscope.service.file.json": [[63, "module-agentscope.service.file.json", false]], "agentscope.service.file.text": [[64, "module-agentscope.service.file.text", false]], "agentscope.service.multi_modality": [[65, "module-agentscope.service.multi_modality", false]], "agentscope.service.multi_modality.dashscope_services": [[66, "module-agentscope.service.multi_modality.dashscope_services", false]], "agentscope.service.multi_modality.openai_services": [[67, "module-agentscope.service.multi_modality.openai_services", false]], "agentscope.service.retrieval": [[68, "module-agentscope.service.retrieval", false]], "agentscope.service.retrieval.retrieval_from_list": [[69, "module-agentscope.service.retrieval.retrieval_from_list", false]], "agentscope.service.retrieval.similarity": [[70, "module-agentscope.service.retrieval.similarity", false]], "agentscope.service.service_response": [[71, "module-agentscope.service.service_response", false]], "agentscope.service.service_status": [[72, "module-agentscope.service.service_status", false]], "agentscope.service.service_toolkit": [[73, "module-agentscope.service.service_toolkit", false]], "agentscope.service.sql_query": [[74, "module-agentscope.service.sql_query", false]], "agentscope.service.sql_query.mongodb": [[75, "module-agentscope.service.sql_query.mongodb", false]], "agentscope.service.sql_query.mysql": [[76, "module-agentscope.service.sql_query.mysql", false]], "agentscope.service.sql_query.sqlite": [[77, "module-agentscope.service.sql_query.sqlite", false]], "agentscope.service.text_processing": [[78, "module-agentscope.service.text_processing", false]], "agentscope.service.text_processing.summarization": [[79, "module-agentscope.service.text_processing.summarization", false]], "agentscope.service.web": [[80, "module-agentscope.service.web", false]], "agentscope.service.web.arxiv": [[81, "module-agentscope.service.web.arxiv", false]], "agentscope.service.web.dblp": [[82, "module-agentscope.service.web.dblp", false]], "agentscope.service.web.download": [[83, "module-agentscope.service.web.download", false]], "agentscope.service.web.search": [[84, "module-agentscope.service.web.search", false]], "agentscope.service.web.tripadvisor": [[85, "module-agentscope.service.web.tripadvisor", false]], "agentscope.service.web.web_digest": [[86, "module-agentscope.service.web.web_digest", false]], "agentscope.service.web.wikipedia": [[87, "module-agentscope.service.web.wikipedia", false]], "agentscope.strategy": [[88, "module-agentscope.strategy", false]], "agentscope.strategy.mixture_of_agent": [[89, "module-agentscope.strategy.mixture_of_agent", false]], "agentscope.studio": [[90, "module-agentscope.studio", false]], "agentscope.studio.utils": [[91, "module-agentscope.studio.utils", false]], "agentscope.utils": [[92, "module-agentscope.utils", false]], "agentscope.utils.common": [[93, "module-agentscope.utils.common", false]], "agentscope.utils.token_utils": [[94, "module-agentscope.utils.token_utils", false]], "agentscope.web": [[95, "module-agentscope.web", false]], "agentscope.web.gradio": [[96, "module-agentscope.web.gradio", false]], "agentscope.web.gradio.constants": [[97, "module-agentscope.web.gradio.constants", false]], "agentscope.web.gradio.studio": [[98, "module-agentscope.web.gradio.studio", false]], "agentscope.web.gradio.utils": [[99, "module-agentscope.web.gradio.utils", false]], "agentscope.web.workstation": [[100, "module-agentscope.web.workstation", false]], "agentscope.web.workstation.workflow": [[101, "module-agentscope.web.workstation.workflow", false]], "agentscope.web.workstation.workflow_dag": [[102, "module-agentscope.web.workstation.workflow_dag", false]], "agentscope.web.workstation.workflow_node": [[103, "module-agentscope.web.workstation.workflow_node", false]], "agentscope.web.workstation.workflow_utils": [[104, "module-agentscope.web.workstation.workflow_utils", false]], "agentservererror": [[11, "agentscope.exception.AgentServerError", false]], "agentservernotaliveerror": [[11, "agentscope.exception.AgentServerNotAliveError", false]], "agentserverservicer (class in agentscope.server)": [[51, "agentscope.server.AgentServerServicer", false]], "agentserverservicer (class in agentscope.server.servicer)": [[53, "agentscope.server.servicer.AgentServerServicer", false]], "argumentnotfounderror": [[11, "agentscope.exception.ArgumentNotFoundError", false]], "argumenttypeerror": [[11, "agentscope.exception.ArgumentTypeError", false]], "aria_label (agentscope.service.browser.web_browser.webelementinfo attribute)": [[56, "agentscope.service.browser.web_browser.WebElementInfo.aria_label", false]], "aria_label (agentscope.service.webelementinfo attribute)": [[54, "agentscope.service.WebElementInfo.aria_label", false]], "arxiv_search() (in module agentscope.service)": [[54, "agentscope.service.arxiv_search", false]], "arxiv_search() (in module agentscope.service.web.arxiv)": [[81, "agentscope.service.web.arxiv.arxiv_search", false]], "as_server() (in module agentscope.server)": [[51, "agentscope.server.as_server", false]], "as_server() (in module agentscope.server.launcher)": [[52, "agentscope.server.launcher.as_server", false]], "asdigraph (class in agentscope.web.workstation.workflow_dag)": [[102, "agentscope.web.workstation.workflow_dag.ASDiGraph", false]], "asmanager (class in agentscope.manager)": [[13, "agentscope.manager.ASManager", false]], "async_run_code_on_notebook() (agentscope.service.execute_code.exec_notebook.notebookexecutor method)": [[58, "agentscope.service.execute_code.exec_notebook.NoteBookExecutor.async_run_code_on_notebook", false]], "async_run_code_on_notebook() (agentscope.service.notebookexecutor method)": [[54, "agentscope.service.NoteBookExecutor.async_run_code_on_notebook", false]], "audio2text() (in module agentscope.web.gradio.utils)": [[99, "agentscope.web.gradio.utils.audio2text", false]], "bing_search() (in module agentscope.service)": [[54, "agentscope.service.bing_search", false]], "bing_search() (in module agentscope.service.web.search)": [[84, "agentscope.service.web.search.bing_search", false]], "bingsearchservicenode (class in agentscope.web.workstation.workflow_node)": [[103, "agentscope.web.workstation.workflow_node.BingSearchServiceNode", false]], "broadcast() (agentscope.msghub.msghubmanager method)": [[31, "agentscope.msghub.MsgHubManager.broadcast", false]], "build_dag() (in module agentscope.web.workstation.workflow_dag)": [[102, "agentscope.web.workstation.workflow_dag.build_dag", false]], "cache_text_embedding() (agentscope.manager.filemanager method)": [[13, "agentscope.manager.FileManager.cache_text_embedding", false]], "call_agent_func() (agentscope.rpc.rpc_agent_client.rpcagentclient method)": [[47, "agentscope.rpc.rpc_agent_client.RpcAgentClient.call_agent_func", false]], "call_agent_func() (agentscope.rpc.rpc_agent_pb2_grpc.rpcagent static method)": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgent.call_agent_func", false]], "call_agent_func() (agentscope.rpc.rpc_agent_pb2_grpc.rpcagentservicer method)": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgentServicer.call_agent_func", false]], "call_agent_func() (agentscope.rpc.rpcagentclient method)": [[46, "agentscope.rpc.RpcAgentClient.call_agent_func", false]], "call_agent_func() (agentscope.rpc.rpcagentservicer method)": [[46, "agentscope.rpc.RpcAgentServicer.call_agent_func", false]], "call_agent_func() (agentscope.server.agentserverservicer method)": [[51, "agentscope.server.AgentServerServicer.call_agent_func", false]], "call_agent_func() (agentscope.server.servicer.agentserverservicer method)": [[53, "agentscope.server.servicer.AgentServerServicer.call_agent_func", false]], "call_in_thread() (in module agentscope.rpc)": [[46, "agentscope.rpc.call_in_thread", false]], "call_in_thread() (in module agentscope.rpc.rpc_agent_client)": [[47, "agentscope.rpc.rpc_agent_client.call_in_thread", false]], "cells_length (agentscope.service.execute_code.exec_notebook.notebookexecutor property)": [[58, "agentscope.service.execute_code.exec_notebook.NoteBookExecutor.cells_length", false]], "cells_length (agentscope.service.notebookexecutor property)": [[54, "agentscope.service.NoteBookExecutor.cells_length", false]], "check_uuid() (in module agentscope.web.gradio.utils)": [[99, "agentscope.web.gradio.utils.check_uuid", false]], "chinesesystempromptgenerator (class in agentscope.prompt)": [[41, "agentscope.prompt.ChineseSystemPromptGenerator", false]], "clear() (agentscope.memory.memory.memorybase method)": [[15, "agentscope.memory.memory.MemoryBase.clear", false]], "clear() (agentscope.memory.memorybase method)": [[14, "agentscope.memory.MemoryBase.clear", false]], "clear() (agentscope.memory.temporary_memory.temporarymemory method)": [[16, "agentscope.memory.temporary_memory.TemporaryMemory.clear", false]], "clear() (agentscope.memory.temporarymemory method)": [[14, "agentscope.memory.TemporaryMemory.clear", false]], "clear_audience() (agentscope.agents.agent.agentbase method)": [[2, "agentscope.agents.agent.AgentBase.clear_audience", false]], "clear_audience() (agentscope.agents.agentbase method)": [[1, "agentscope.agents.AgentBase.clear_audience", false]], "clear_model_configs() (agentscope.manager.modelmanager method)": [[13, "agentscope.manager.ModelManager.clear_model_configs", false]], "clone_agent() (agentscope.rpc.rpc_agent_client.rpcagentclient method)": [[47, "agentscope.rpc.rpc_agent_client.RpcAgentClient.clone_agent", false]], "clone_agent() (agentscope.rpc.rpc_agent_pb2_grpc.rpcagent static method)": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgent.clone_agent", false]], "clone_agent() (agentscope.rpc.rpc_agent_pb2_grpc.rpcagentservicer method)": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgentServicer.clone_agent", false]], "clone_agent() (agentscope.rpc.rpcagentclient method)": [[46, "agentscope.rpc.RpcAgentClient.clone_agent", false]], "clone_agent() (agentscope.rpc.rpcagentservicer method)": [[46, "agentscope.rpc.RpcAgentServicer.clone_agent", false]], "clone_agent() (agentscope.server.agentserverservicer method)": [[51, "agentscope.server.AgentServerServicer.clone_agent", false]], "clone_agent() (agentscope.server.servicer.agentserverservicer method)": [[53, "agentscope.server.servicer.AgentServerServicer.clone_agent", false]], "clone_instances() (agentscope.agents.rpc_agent.rpcagent method)": [[8, "agentscope.agents.rpc_agent.RpcAgent.clone_instances", false]], "close() (agentscope.service.browser.web_browser.webbrowser method)": [[56, "agentscope.service.browser.web_browser.WebBrowser.close", false]], "close() (agentscope.service.webbrowser method)": [[54, "agentscope.service.WebBrowser.close", false]], "code_dir (agentscope.manager.filemanager property)": [[13, "agentscope.manager.FileManager.code_dir", false]], "compare_in_dialog() (agentscope.prompt.systempromptcomparer method)": [[41, "agentscope.prompt.SystemPromptComparer.compare_in_dialog", false]], "compare_with_queries() (agentscope.prompt.systempromptcomparer method)": [[41, "agentscope.prompt.SystemPromptComparer.compare_with_queries", false]], "compile() (agentscope.web.workstation.workflow_dag.asdigraph method)": [[102, "agentscope.web.workstation.workflow_dag.ASDiGraph.compile", false]], "compile() (agentscope.web.workstation.workflow_node.bingsearchservicenode method)": [[103, "agentscope.web.workstation.workflow_node.BingSearchServiceNode.compile", false]], "compile() (agentscope.web.workstation.workflow_node.copynode method)": [[103, "agentscope.web.workstation.workflow_node.CopyNode.compile", false]], "compile() (agentscope.web.workstation.workflow_node.dialogagentnode method)": [[103, "agentscope.web.workstation.workflow_node.DialogAgentNode.compile", false]], "compile() (agentscope.web.workstation.workflow_node.dictdialogagentnode method)": [[103, "agentscope.web.workstation.workflow_node.DictDialogAgentNode.compile", false]], "compile() (agentscope.web.workstation.workflow_node.forlooppipelinenode method)": [[103, "agentscope.web.workstation.workflow_node.ForLoopPipelineNode.compile", false]], "compile() (agentscope.web.workstation.workflow_node.googlesearchservicenode method)": [[103, "agentscope.web.workstation.workflow_node.GoogleSearchServiceNode.compile", false]], "compile() (agentscope.web.workstation.workflow_node.ifelsepipelinenode method)": [[103, "agentscope.web.workstation.workflow_node.IfElsePipelineNode.compile", false]], "compile() (agentscope.web.workstation.workflow_node.modelnode method)": [[103, "agentscope.web.workstation.workflow_node.ModelNode.compile", false]], "compile() (agentscope.web.workstation.workflow_node.msghubnode method)": [[103, "agentscope.web.workstation.workflow_node.MsgHubNode.compile", false]], "compile() (agentscope.web.workstation.workflow_node.msgnode method)": [[103, "agentscope.web.workstation.workflow_node.MsgNode.compile", false]], "compile() (agentscope.web.workstation.workflow_node.placeholdernode method)": [[103, "agentscope.web.workstation.workflow_node.PlaceHolderNode.compile", false]], "compile() (agentscope.web.workstation.workflow_node.pythonservicenode method)": [[103, "agentscope.web.workstation.workflow_node.PythonServiceNode.compile", false]], "compile() (agentscope.web.workstation.workflow_node.reactagentnode method)": [[103, "agentscope.web.workstation.workflow_node.ReActAgentNode.compile", false]], "compile() (agentscope.web.workstation.workflow_node.readtextservicenode method)": [[103, "agentscope.web.workstation.workflow_node.ReadTextServiceNode.compile", false]], "compile() (agentscope.web.workstation.workflow_node.sequentialpipelinenode method)": [[103, "agentscope.web.workstation.workflow_node.SequentialPipelineNode.compile", false]], "compile() (agentscope.web.workstation.workflow_node.switchpipelinenode method)": [[103, "agentscope.web.workstation.workflow_node.SwitchPipelineNode.compile", false]], "compile() (agentscope.web.workstation.workflow_node.useragentnode method)": [[103, "agentscope.web.workstation.workflow_node.UserAgentNode.compile", false]], "compile() (agentscope.web.workstation.workflow_node.whilelooppipelinenode method)": [[103, "agentscope.web.workstation.workflow_node.WhileLoopPipelineNode.compile", false]], "compile() (agentscope.web.workstation.workflow_node.workflownode method)": [[103, "agentscope.web.workstation.workflow_node.WorkflowNode.compile", false]], "compile() (agentscope.web.workstation.workflow_node.writetextservicenode method)": [[103, "agentscope.web.workstation.workflow_node.WriteTextServiceNode.compile", false]], "compile_workflow() (in module agentscope.web.workstation.workflow)": [[101, "agentscope.web.workstation.workflow.compile_workflow", false]], "config_name (agentscope.models.dashscope_model.dashscopechatwrapper attribute)": [[21, "agentscope.models.dashscope_model.DashScopeChatWrapper.config_name", false]], "config_name (agentscope.models.dashscope_model.dashscopeimagesynthesiswrapper attribute)": [[21, "agentscope.models.dashscope_model.DashScopeImageSynthesisWrapper.config_name", false]], "config_name (agentscope.models.dashscope_model.dashscopemultimodalwrapper attribute)": [[21, "agentscope.models.dashscope_model.DashScopeMultiModalWrapper.config_name", false]], "config_name (agentscope.models.dashscope_model.dashscopetextembeddingwrapper attribute)": [[21, "agentscope.models.dashscope_model.DashScopeTextEmbeddingWrapper.config_name", false]], "config_name (agentscope.models.gemini_model.geminichatwrapper attribute)": [[22, "agentscope.models.gemini_model.GeminiChatWrapper.config_name", false]], "config_name (agentscope.models.gemini_model.geminiembeddingwrapper attribute)": [[22, "agentscope.models.gemini_model.GeminiEmbeddingWrapper.config_name", false]], "config_name (agentscope.models.litellm_model.litellmchatwrapper attribute)": [[23, "agentscope.models.litellm_model.LiteLLMChatWrapper.config_name", false]], "config_name (agentscope.models.model.modelwrapperbase attribute)": [[24, "agentscope.models.model.ModelWrapperBase.config_name", false]], "config_name (agentscope.models.modelwrapperbase attribute)": [[20, "agentscope.models.ModelWrapperBase.config_name", false]], "config_name (agentscope.models.ollama_model.ollamachatwrapper attribute)": [[25, "agentscope.models.ollama_model.OllamaChatWrapper.config_name", false]], "config_name (agentscope.models.ollama_model.ollamaembeddingwrapper attribute)": [[25, "agentscope.models.ollama_model.OllamaEmbeddingWrapper.config_name", false]], "config_name (agentscope.models.ollama_model.ollamagenerationwrapper attribute)": [[25, "agentscope.models.ollama_model.OllamaGenerationWrapper.config_name", false]], "config_name (agentscope.models.openai_model.openaichatwrapper attribute)": [[26, "agentscope.models.openai_model.OpenAIChatWrapper.config_name", false]], "config_name (agentscope.models.openai_model.openaidallewrapper attribute)": [[26, "agentscope.models.openai_model.OpenAIDALLEWrapper.config_name", false]], "config_name (agentscope.models.openai_model.openaiembeddingwrapper attribute)": [[26, "agentscope.models.openai_model.OpenAIEmbeddingWrapper.config_name", false]], "config_name (agentscope.models.post_model.postapichatwrapper attribute)": [[27, "agentscope.models.post_model.PostAPIChatWrapper.config_name", false]], "config_name (agentscope.models.post_model.postapimodelwrapperbase attribute)": [[27, "agentscope.models.post_model.PostAPIModelWrapperBase.config_name", false]], "config_name (agentscope.models.yi_model.yichatwrapper attribute)": [[29, "agentscope.models.yi_model.YiChatWrapper.config_name", false]], "config_name (agentscope.models.zhipu_model.zhipuaichatwrapper attribute)": [[30, "agentscope.models.zhipu_model.ZhipuAIChatWrapper.config_name", false]], "config_name (agentscope.models.zhipu_model.zhipuaiembeddingwrapper attribute)": [[30, "agentscope.models.zhipu_model.ZhipuAIEmbeddingWrapper.config_name", false]], "content (agentscope.message.msg property)": [[17, "agentscope.message.Msg.content", false]], "content (agentscope.message.msg.msg property)": [[18, "agentscope.message.msg.Msg.content", false]], "content (agentscope.message.placeholder.placeholdermessage property)": [[19, "agentscope.message.placeholder.PlaceholderMessage.content", false]], "content (agentscope.message.placeholdermessage property)": [[17, "agentscope.message.PlaceholderMessage.content", false]], "content_hint (agentscope.parsers.code_block_parser.markdowncodeblockparser attribute)": [[33, "agentscope.parsers.code_block_parser.MarkdownCodeBlockParser.content_hint", false]], "content_hint (agentscope.parsers.json_object_parser.markdownjsondictparser attribute)": [[34, "agentscope.parsers.json_object_parser.MarkdownJsonDictParser.content_hint", false]], "content_hint (agentscope.parsers.json_object_parser.markdownjsonobjectparser attribute)": [[34, "agentscope.parsers.json_object_parser.MarkdownJsonObjectParser.content_hint", false]], "content_hint (agentscope.parsers.markdowncodeblockparser attribute)": [[32, "agentscope.parsers.MarkdownCodeBlockParser.content_hint", false]], "content_hint (agentscope.parsers.markdownjsondictparser attribute)": [[32, "agentscope.parsers.MarkdownJsonDictParser.content_hint", false]], "content_hint (agentscope.parsers.markdownjsonobjectparser attribute)": [[32, "agentscope.parsers.MarkdownJsonObjectParser.content_hint", false]], "content_hint (agentscope.parsers.tagged_content_parser.taggedcontent attribute)": [[37, "agentscope.parsers.tagged_content_parser.TaggedContent.content_hint", false]], "content_hint (agentscope.parsers.taggedcontent attribute)": [[32, "agentscope.parsers.TaggedContent.content_hint", false]], "convert_url() (agentscope.models.dashscope_model.dashscopemultimodalwrapper method)": [[21, "agentscope.models.dashscope_model.DashScopeMultiModalWrapper.convert_url", false]], "convert_url() (agentscope.models.dashscopemultimodalwrapper method)": [[20, "agentscope.models.DashScopeMultiModalWrapper.convert_url", false]], "copy (agentscope.web.workstation.workflow_node.workflownodetype attribute)": [[103, "agentscope.web.workstation.workflow_node.WorkflowNodeType.COPY", false]], "copynode (class in agentscope.web.workstation.workflow_node)": [[103, "agentscope.web.workstation.workflow_node.CopyNode", false]], "cos_sim() (in module agentscope.service)": [[54, "agentscope.service.cos_sim", false]], "cos_sim() (in module agentscope.service.retrieval.similarity)": [[70, "agentscope.service.retrieval.similarity.cos_sim", false]], "count_openai_token() (in module agentscope.utils.token_utils)": [[94, "agentscope.utils.token_utils.count_openai_token", false]], "create_agent() (agentscope.rpc.rpc_agent_client.rpcagentclient method)": [[47, "agentscope.rpc.rpc_agent_client.RpcAgentClient.create_agent", false]], "create_agent() (agentscope.rpc.rpc_agent_pb2_grpc.rpcagent static method)": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgent.create_agent", false]], "create_agent() (agentscope.rpc.rpc_agent_pb2_grpc.rpcagentservicer method)": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgentServicer.create_agent", false]], "create_agent() (agentscope.rpc.rpcagentclient method)": [[46, "agentscope.rpc.RpcAgentClient.create_agent", false]], "create_agent() (agentscope.rpc.rpcagentservicer method)": [[46, "agentscope.rpc.RpcAgentServicer.create_agent", false]], "create_agent() (agentscope.server.agentserverservicer method)": [[51, "agentscope.server.AgentServerServicer.create_agent", false]], "create_agent() (agentscope.server.servicer.agentserverservicer method)": [[53, "agentscope.server.servicer.AgentServerServicer.create_agent", false]], "create_directory() (in module agentscope.service)": [[54, "agentscope.service.create_directory", false]], "create_directory() (in module agentscope.service.file.common)": [[62, "agentscope.service.file.common.create_directory", false]], "create_file() (in module agentscope.service)": [[54, "agentscope.service.create_file", false]], "create_file() (in module agentscope.service.file.common)": [[62, "agentscope.service.file.common.create_file", false]], "create_tempdir() (in module agentscope.utils.common)": [[93, "agentscope.utils.common.create_tempdir", false]], "cycle_dots() (in module agentscope.web.gradio.utils)": [[99, "agentscope.web.gradio.utils.cycle_dots", false]], "dashscope_image_to_text() (in module agentscope.service)": [[54, "agentscope.service.dashscope_image_to_text", false]], "dashscope_image_to_text() (in module agentscope.service.multi_modality.dashscope_services)": [[66, "agentscope.service.multi_modality.dashscope_services.dashscope_image_to_text", false]], "dashscope_text_to_audio() (in module agentscope.service)": [[54, "agentscope.service.dashscope_text_to_audio", false]], "dashscope_text_to_audio() (in module agentscope.service.multi_modality.dashscope_services)": [[66, "agentscope.service.multi_modality.dashscope_services.dashscope_text_to_audio", false]], "dashscope_text_to_image() (in module agentscope.service)": [[54, "agentscope.service.dashscope_text_to_image", false]], "dashscope_text_to_image() (in module agentscope.service.multi_modality.dashscope_services)": [[66, "agentscope.service.multi_modality.dashscope_services.dashscope_text_to_image", false]], "dashscopechatwrapper (class in agentscope.models)": [[20, "agentscope.models.DashScopeChatWrapper", false]], "dashscopechatwrapper (class in agentscope.models.dashscope_model)": [[21, "agentscope.models.dashscope_model.DashScopeChatWrapper", false]], "dashscopeimagesynthesiswrapper (class in agentscope.models)": [[20, "agentscope.models.DashScopeImageSynthesisWrapper", false]], "dashscopeimagesynthesiswrapper (class in agentscope.models.dashscope_model)": [[21, "agentscope.models.dashscope_model.DashScopeImageSynthesisWrapper", false]], "dashscopemultimodalwrapper (class in agentscope.models)": [[20, "agentscope.models.DashScopeMultiModalWrapper", false]], "dashscopemultimodalwrapper (class in agentscope.models.dashscope_model)": [[21, "agentscope.models.dashscope_model.DashScopeMultiModalWrapper", false]], "dashscopetextembeddingwrapper (class in agentscope.models)": [[20, "agentscope.models.DashScopeTextEmbeddingWrapper", false]], "dashscopetextembeddingwrapper (class in agentscope.models.dashscope_model)": [[21, "agentscope.models.dashscope_model.DashScopeTextEmbeddingWrapper", false]], "dashscopewrapperbase (class in agentscope.models.dashscope_model)": [[21, "agentscope.models.dashscope_model.DashScopeWrapperBase", false]], "dblp_search_authors() (in module agentscope.service)": [[54, "agentscope.service.dblp_search_authors", false]], "dblp_search_authors() (in module agentscope.service.web.dblp)": [[82, "agentscope.service.web.dblp.dblp_search_authors", false]], "dblp_search_publications() (in module agentscope.service)": [[54, "agentscope.service.dblp_search_publications", false]], "dblp_search_publications() (in module agentscope.service.web.dblp)": [[82, "agentscope.service.web.dblp.dblp_search_publications", false]], "dblp_search_venues() (in module agentscope.service)": [[54, "agentscope.service.dblp_search_venues", false]], "dblp_search_venues() (in module agentscope.service.web.dblp)": [[82, "agentscope.service.web.dblp.dblp_search_venues", false]], "decode_jwt() (in module agentscope.studio.utils)": [[91, "agentscope.studio.utils.decode_jwt", false]], "delete() (agentscope.memory.memory.memorybase method)": [[15, "agentscope.memory.memory.MemoryBase.delete", false]], "delete() (agentscope.memory.memorybase method)": [[14, "agentscope.memory.MemoryBase.delete", false]], "delete() (agentscope.memory.temporary_memory.temporarymemory method)": [[16, "agentscope.memory.temporary_memory.TemporaryMemory.delete", false]], "delete() (agentscope.memory.temporarymemory method)": [[14, "agentscope.memory.TemporaryMemory.delete", false]], "delete() (agentscope.msghub.msghubmanager method)": [[31, "agentscope.msghub.MsgHubManager.delete", false]], "delete_agent() (agentscope.rpc.rpc_agent_client.rpcagentclient method)": [[47, "agentscope.rpc.rpc_agent_client.RpcAgentClient.delete_agent", false]], "delete_agent() (agentscope.rpc.rpc_agent_pb2_grpc.rpcagent static method)": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgent.delete_agent", false]], "delete_agent() (agentscope.rpc.rpc_agent_pb2_grpc.rpcagentservicer method)": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgentServicer.delete_agent", false]], "delete_agent() (agentscope.rpc.rpcagentclient method)": [[46, "agentscope.rpc.RpcAgentClient.delete_agent", false]], "delete_agent() (agentscope.rpc.rpcagentservicer method)": [[46, "agentscope.rpc.RpcAgentServicer.delete_agent", false]], "delete_agent() (agentscope.server.agentserverservicer method)": [[51, "agentscope.server.AgentServerServicer.delete_agent", false]], "delete_agent() (agentscope.server.servicer.agentserverservicer method)": [[53, "agentscope.server.servicer.AgentServerServicer.delete_agent", false]], "delete_all_agent() (agentscope.rpc.rpc_agent_client.rpcagentclient method)": [[47, "agentscope.rpc.rpc_agent_client.RpcAgentClient.delete_all_agent", false]], "delete_all_agent() (agentscope.rpc.rpcagentclient method)": [[46, "agentscope.rpc.RpcAgentClient.delete_all_agent", false]], "delete_all_agents() (agentscope.rpc.rpc_agent_pb2_grpc.rpcagent static method)": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgent.delete_all_agents", false]], "delete_all_agents() (agentscope.rpc.rpc_agent_pb2_grpc.rpcagentservicer method)": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgentServicer.delete_all_agents", false]], "delete_all_agents() (agentscope.rpc.rpcagentservicer method)": [[46, "agentscope.rpc.RpcAgentServicer.delete_all_agents", false]], "delete_all_agents() (agentscope.server.agentserverservicer method)": [[51, "agentscope.server.AgentServerServicer.delete_all_agents", false]], "delete_all_agents() (agentscope.server.servicer.agentserverservicer method)": [[53, "agentscope.server.servicer.AgentServerServicer.delete_all_agents", false]], "delete_directory() (in module agentscope.service)": [[54, "agentscope.service.delete_directory", false]], "delete_directory() (in module agentscope.service.file.common)": [[62, "agentscope.service.file.common.delete_directory", false]], "delete_file() (in module agentscope.service)": [[54, "agentscope.service.delete_file", false]], "delete_file() (in module agentscope.service.file.common)": [[62, "agentscope.service.file.common.delete_file", false]], "deprecated_model_type (agentscope.models.dashscope_model.dashscopechatwrapper attribute)": [[21, "agentscope.models.dashscope_model.DashScopeChatWrapper.deprecated_model_type", false]], "deprecated_model_type (agentscope.models.dashscopechatwrapper attribute)": [[20, "agentscope.models.DashScopeChatWrapper.deprecated_model_type", false]], "deprecated_model_type (agentscope.models.openai_model.openaichatwrapper attribute)": [[26, "agentscope.models.openai_model.OpenAIChatWrapper.deprecated_model_type", false]], "deprecated_model_type (agentscope.models.openaichatwrapper attribute)": [[20, "agentscope.models.OpenAIChatWrapper.deprecated_model_type", false]], "deprecated_model_type (agentscope.models.post_model.postapidallewrapper attribute)": [[27, "agentscope.models.post_model.PostAPIDALLEWrapper.deprecated_model_type", false]], "deps_converter() (in module agentscope.web.workstation.workflow_utils)": [[104, "agentscope.web.workstation.workflow_utils.deps_converter", false]], "descriptor (agentscope.rpc.rpcmsg attribute)": [[46, "agentscope.rpc.RpcMsg.DESCRIPTOR", false]], "deserialize() (in module agentscope.serialize)": [[50, "agentscope.serialize.deserialize", false]], "dialogagent (class in agentscope.agents)": [[1, "agentscope.agents.DialogAgent", false]], "dialogagent (class in agentscope.agents.dialog_agent)": [[3, "agentscope.agents.dialog_agent.DialogAgent", false]], "dialogagentnode (class in agentscope.web.workstation.workflow_node)": [[103, "agentscope.web.workstation.workflow_node.DialogAgentNode", false]], "dict_converter() (in module agentscope.web.workstation.workflow_utils)": [[104, "agentscope.web.workstation.workflow_utils.dict_converter", false]], "dictdialogagent (class in agentscope.agents)": [[1, "agentscope.agents.DictDialogAgent", false]], "dictdialogagent (class in agentscope.agents.dict_dialog_agent)": [[4, "agentscope.agents.dict_dialog_agent.DictDialogAgent", false]], "dictdialogagentnode (class in agentscope.web.workstation.workflow_node)": [[103, "agentscope.web.workstation.workflow_node.DictDialogAgentNode", false]], "dictfiltermixin (class in agentscope.parsers.parser_base)": [[35, "agentscope.parsers.parser_base.DictFilterMixin", false]], "digest_webpage() (in module agentscope.service)": [[54, "agentscope.service.digest_webpage", false]], "digest_webpage() (in module agentscope.service.web.web_digest)": [[86, "agentscope.service.web.web_digest.digest_webpage", false]], "distconf (class in agentscope.agents)": [[1, "agentscope.agents.DistConf", false]], "distconf (class in agentscope.agents.agent)": [[2, "agentscope.agents.agent.DistConf", false]], "download_file() (agentscope.rpc.rpc_agent_client.rpcagentclient method)": [[47, "agentscope.rpc.rpc_agent_client.RpcAgentClient.download_file", false]], "download_file() (agentscope.rpc.rpc_agent_pb2_grpc.rpcagent static method)": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgent.download_file", false]], "download_file() (agentscope.rpc.rpc_agent_pb2_grpc.rpcagentservicer method)": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgentServicer.download_file", false]], "download_file() (agentscope.rpc.rpcagentclient method)": [[46, "agentscope.rpc.RpcAgentClient.download_file", false]], "download_file() (agentscope.rpc.rpcagentservicer method)": [[46, "agentscope.rpc.RpcAgentServicer.download_file", false]], "download_file() (agentscope.server.agentserverservicer method)": [[51, "agentscope.server.AgentServerServicer.download_file", false]], "download_file() (agentscope.server.servicer.agentserverservicer method)": [[53, "agentscope.server.servicer.AgentServerServicer.download_file", false]], "download_from_url() (in module agentscope.service)": [[54, "agentscope.service.download_from_url", false]], "download_from_url() (in module agentscope.service.web.download)": [[83, "agentscope.service.web.download.download_from_url", false]], "embedding_cache_dir (agentscope.manager.filemanager property)": [[13, "agentscope.manager.FileManager.embedding_cache_dir", false]], "englishsystempromptgenerator (class in agentscope.prompt)": [[41, "agentscope.prompt.EnglishSystemPromptGenerator", false]], "equip() (agentscope.rag.knowledge_bank.knowledgebank method)": [[44, "agentscope.rag.knowledge_bank.KnowledgeBank.equip", false]], "equip() (agentscope.rag.knowledgebank method)": [[42, "agentscope.rag.KnowledgeBank.equip", false]], "error (agentscope.service.service_status.serviceexecstatus attribute)": [[72, "agentscope.service.service_status.ServiceExecStatus.ERROR", false]], "error (agentscope.service.serviceexecstatus attribute)": [[54, "agentscope.service.ServiceExecStatus.ERROR", false]], "exec_node() (agentscope.web.workstation.workflow_dag.asdigraph method)": [[102, "agentscope.web.workstation.workflow_dag.ASDiGraph.exec_node", false]], "execute_python_code() (in module agentscope.service)": [[54, "agentscope.service.execute_python_code", false]], "execute_python_code() (in module agentscope.service.execute_code.exec_python)": [[59, "agentscope.service.execute_code.exec_python.execute_python_code", false]], "execute_shell_command() (in module agentscope.service)": [[54, "agentscope.service.execute_shell_command", false]], "execute_shell_command() (in module agentscope.service.execute_code.exec_shell)": [[60, "agentscope.service.execute_code.exec_shell.execute_shell_command", false]], "export() (agentscope.memory.memory.memorybase method)": [[15, "agentscope.memory.memory.MemoryBase.export", false]], "export() (agentscope.memory.memorybase method)": [[14, "agentscope.memory.MemoryBase.export", false]], "export() (agentscope.memory.temporary_memory.temporarymemory method)": [[16, "agentscope.memory.temporary_memory.TemporaryMemory.export", false]], "export() (agentscope.memory.temporarymemory method)": [[14, "agentscope.memory.TemporaryMemory.export", false]], "fetch_cached_text_embedding() (agentscope.manager.filemanager method)": [[13, "agentscope.manager.FileManager.fetch_cached_text_embedding", false]], "file_dir (agentscope.manager.filemanager property)": [[13, "agentscope.manager.FileManager.file_dir", false]], "filemanager (class in agentscope.manager)": [[13, "agentscope.manager.FileManager", false]], "finish() (agentscope.agents.react_agent.reactagent static method)": [[7, "agentscope.agents.react_agent.ReActAgent.finish", false]], "finish() (agentscope.agents.reactagent static method)": [[1, "agentscope.agents.ReActAgent.finish", false]], "flush() (agentscope.manager.asmanager method)": [[13, "agentscope.manager.ASManager.flush", false]], "flush() (agentscope.manager.filemanager method)": [[13, "agentscope.manager.FileManager.flush", false]], "flush() (agentscope.manager.modelmanager method)": [[13, "agentscope.manager.ModelManager.flush", false]], "flush() (agentscope.manager.monitormanager method)": [[13, "agentscope.manager.MonitorManager.flush", false]], "fn_choice() (in module agentscope.web.gradio.studio)": [[98, "agentscope.web.gradio.studio.fn_choice", false]], "forlooppipeline (class in agentscope.pipelines)": [[38, "agentscope.pipelines.ForLoopPipeline", false]], "forlooppipeline (class in agentscope.pipelines.pipeline)": [[40, "agentscope.pipelines.pipeline.ForLoopPipeline", false]], "forlooppipeline() (in module agentscope.pipelines)": [[38, "agentscope.pipelines.forlooppipeline", false]], "forlooppipeline() (in module agentscope.pipelines.functional)": [[39, "agentscope.pipelines.functional.forlooppipeline", false]], "forlooppipelinenode (class in agentscope.web.workstation.workflow_node)": [[103, "agentscope.web.workstation.workflow_node.ForLoopPipelineNode", false]], "format() (agentscope.models.dashscope_model.dashscopechatwrapper method)": [[21, "agentscope.models.dashscope_model.DashScopeChatWrapper.format", false]], "format() (agentscope.models.dashscope_model.dashscopemultimodalwrapper method)": [[21, "agentscope.models.dashscope_model.DashScopeMultiModalWrapper.format", false]], "format() (agentscope.models.dashscope_model.dashscopewrapperbase method)": [[21, "agentscope.models.dashscope_model.DashScopeWrapperBase.format", false]], "format() (agentscope.models.dashscopechatwrapper method)": [[20, "agentscope.models.DashScopeChatWrapper.format", false]], "format() (agentscope.models.dashscopemultimodalwrapper method)": [[20, "agentscope.models.DashScopeMultiModalWrapper.format", false]], "format() (agentscope.models.gemini_model.geminichatwrapper static method)": [[22, "agentscope.models.gemini_model.GeminiChatWrapper.format", false]], "format() (agentscope.models.geminichatwrapper static method)": [[20, "agentscope.models.GeminiChatWrapper.format", false]], "format() (agentscope.models.litellm_model.litellmchatwrapper method)": [[23, "agentscope.models.litellm_model.LiteLLMChatWrapper.format", false]], "format() (agentscope.models.litellm_model.litellmwrapperbase method)": [[23, "agentscope.models.litellm_model.LiteLLMWrapperBase.format", false]], "format() (agentscope.models.litellmchatwrapper method)": [[20, "agentscope.models.LiteLLMChatWrapper.format", false]], "format() (agentscope.models.model.modelwrapperbase method)": [[24, "agentscope.models.model.ModelWrapperBase.format", false]], "format() (agentscope.models.modelwrapperbase method)": [[20, "agentscope.models.ModelWrapperBase.format", false]], "format() (agentscope.models.ollama_model.ollamachatwrapper method)": [[25, "agentscope.models.ollama_model.OllamaChatWrapper.format", false]], "format() (agentscope.models.ollama_model.ollamaembeddingwrapper method)": [[25, "agentscope.models.ollama_model.OllamaEmbeddingWrapper.format", false]], "format() (agentscope.models.ollama_model.ollamagenerationwrapper method)": [[25, "agentscope.models.ollama_model.OllamaGenerationWrapper.format", false]], "format() (agentscope.models.ollamachatwrapper method)": [[20, "agentscope.models.OllamaChatWrapper.format", false]], "format() (agentscope.models.ollamaembeddingwrapper method)": [[20, "agentscope.models.OllamaEmbeddingWrapper.format", false]], "format() (agentscope.models.ollamagenerationwrapper method)": [[20, "agentscope.models.OllamaGenerationWrapper.format", false]], "format() (agentscope.models.openai_model.openaichatwrapper method)": [[26, "agentscope.models.openai_model.OpenAIChatWrapper.format", false]], "format() (agentscope.models.openai_model.openaiwrapperbase method)": [[26, "agentscope.models.openai_model.OpenAIWrapperBase.format", false]], "format() (agentscope.models.openaichatwrapper method)": [[20, "agentscope.models.OpenAIChatWrapper.format", false]], "format() (agentscope.models.openaiwrapperbase method)": [[20, "agentscope.models.OpenAIWrapperBase.format", false]], "format() (agentscope.models.post_model.postapichatwrapper method)": [[27, "agentscope.models.post_model.PostAPIChatWrapper.format", false]], "format() (agentscope.models.post_model.postapidallewrapper method)": [[27, "agentscope.models.post_model.PostAPIDALLEWrapper.format", false]], "format() (agentscope.models.post_model.postapiembeddingwrapper method)": [[27, "agentscope.models.post_model.PostAPIEmbeddingWrapper.format", false]], "format() (agentscope.models.postapichatwrapper method)": [[20, "agentscope.models.PostAPIChatWrapper.format", false]], "format() (agentscope.models.yi_model.yichatwrapper method)": [[29, "agentscope.models.yi_model.YiChatWrapper.format", false]], "format() (agentscope.models.yichatwrapper method)": [[20, "agentscope.models.YiChatWrapper.format", false]], "format() (agentscope.models.zhipu_model.zhipuaichatwrapper method)": [[30, "agentscope.models.zhipu_model.ZhipuAIChatWrapper.format", false]], "format() (agentscope.models.zhipu_model.zhipuaiwrapperbase method)": [[30, "agentscope.models.zhipu_model.ZhipuAIWrapperBase.format", false]], "format() (agentscope.models.zhipuaichatwrapper method)": [[20, "agentscope.models.ZhipuAIChatWrapper.format", false]], "format_for_common_chat_models() (agentscope.models.model.modelwrapperbase static method)": [[24, "agentscope.models.model.ModelWrapperBase.format_for_common_chat_models", false]], "format_for_common_chat_models() (agentscope.models.modelwrapperbase static method)": [[20, "agentscope.models.ModelWrapperBase.format_for_common_chat_models", false]], "format_instruction (agentscope.parsers.code_block_parser.markdowncodeblockparser attribute)": [[33, "agentscope.parsers.code_block_parser.MarkdownCodeBlockParser.format_instruction", false]], "format_instruction (agentscope.parsers.json_object_parser.markdownjsondictparser property)": [[34, "agentscope.parsers.json_object_parser.MarkdownJsonDictParser.format_instruction", false]], "format_instruction (agentscope.parsers.json_object_parser.markdownjsonobjectparser property)": [[34, "agentscope.parsers.json_object_parser.MarkdownJsonObjectParser.format_instruction", false]], "format_instruction (agentscope.parsers.markdowncodeblockparser attribute)": [[32, "agentscope.parsers.MarkdownCodeBlockParser.format_instruction", false]], "format_instruction (agentscope.parsers.markdownjsondictparser property)": [[32, "agentscope.parsers.MarkdownJsonDictParser.format_instruction", false]], "format_instruction (agentscope.parsers.markdownjsonobjectparser property)": [[32, "agentscope.parsers.MarkdownJsonObjectParser.format_instruction", false]], "format_instruction (agentscope.parsers.multitaggedcontentparser attribute)": [[32, "agentscope.parsers.MultiTaggedContentParser.format_instruction", false]], "format_instruction (agentscope.parsers.regex_tagged_content_parser.regextaggedcontentparser property)": [[36, "agentscope.parsers.regex_tagged_content_parser.RegexTaggedContentParser.format_instruction", false]], "format_instruction (agentscope.parsers.regextaggedcontentparser property)": [[32, "agentscope.parsers.RegexTaggedContentParser.format_instruction", false]], "format_instruction (agentscope.parsers.tagged_content_parser.multitaggedcontentparser attribute)": [[37, "agentscope.parsers.tagged_content_parser.MultiTaggedContentParser.format_instruction", false]], "formatted_str() (agentscope.message.msg method)": [[17, "agentscope.message.Msg.formatted_str", false]], "formatted_str() (agentscope.message.msg.msg method)": [[18, "agentscope.message.msg.Msg.formatted_str", false]], "from_dict() (agentscope.message.msg class method)": [[17, "agentscope.message.Msg.from_dict", false]], "from_dict() (agentscope.message.msg.msg class method)": [[18, "agentscope.message.msg.Msg.from_dict", false]], "from_dict() (agentscope.message.placeholder.placeholdermessage class method)": [[19, "agentscope.message.placeholder.PlaceholderMessage.from_dict", false]], "from_dict() (agentscope.message.placeholdermessage class method)": [[17, "agentscope.message.PlaceholderMessage.from_dict", false]], "functioncallerror": [[11, "agentscope.exception.FunctionCallError", false]], "functioncallformaterror": [[11, "agentscope.exception.FunctionCallFormatError", false]], "functionnotfounderror": [[11, "agentscope.exception.FunctionNotFoundError", false]], "geminichatwrapper (class in agentscope.models)": [[20, "agentscope.models.GeminiChatWrapper", false]], "geminichatwrapper (class in agentscope.models.gemini_model)": [[22, "agentscope.models.gemini_model.GeminiChatWrapper", false]], "geminiembeddingwrapper (class in agentscope.models)": [[20, "agentscope.models.GeminiEmbeddingWrapper", false]], "geminiembeddingwrapper (class in agentscope.models.gemini_model)": [[22, "agentscope.models.gemini_model.GeminiEmbeddingWrapper", false]], "geminiwrapperbase (class in agentscope.models.gemini_model)": [[22, "agentscope.models.gemini_model.GeminiWrapperBase", false]], "generate() (agentscope.prompt.systempromptgeneratorbase method)": [[41, "agentscope.prompt.SystemPromptGeneratorBase.generate", false]], "generate_agent_id() (agentscope.agents.agent.agentbase class method)": [[2, "agentscope.agents.agent.AgentBase.generate_agent_id", false]], "generate_agent_id() (agentscope.agents.agentbase class method)": [[1, "agentscope.agents.AgentBase.generate_agent_id", false]], "generate_image_from_name() (in module agentscope.web.gradio.utils)": [[99, "agentscope.web.gradio.utils.generate_image_from_name", false]], "generate_jwt() (in module agentscope.studio.utils)": [[91, "agentscope.studio.utils.generate_jwt", false]], "generate_notes() (agentscope.prompt.systempromptoptimizer method)": [[41, "agentscope.prompt.SystemPromptOptimizer.generate_notes", false]], "generate_server_id() (agentscope.server.launcher.rpcagentserverlauncher class method)": [[52, "agentscope.server.launcher.RpcAgentServerLauncher.generate_server_id", false]], "generate_server_id() (agentscope.server.rpcagentserverlauncher class method)": [[51, "agentscope.server.RpcAgentServerLauncher.generate_server_id", false]], "generation_method (agentscope.models.gemini_model.geminichatwrapper attribute)": [[22, "agentscope.models.gemini_model.GeminiChatWrapper.generation_method", false]], "generation_method (agentscope.models.geminichatwrapper attribute)": [[20, "agentscope.models.GeminiChatWrapper.generation_method", false]], "get() (agentscope.service.service_toolkit.servicefactory class method)": [[73, "agentscope.service.service_toolkit.ServiceFactory.get", false]], "get() (agentscope.service.service_toolkit.servicetoolkit class method)": [[73, "agentscope.service.service_toolkit.ServiceToolkit.get", false]], "get() (agentscope.service.servicefactory class method)": [[54, "agentscope.service.ServiceFactory.get", false]], "get() (agentscope.service.servicetoolkit class method)": [[54, "agentscope.service.ServiceToolkit.get", false]], "get_action_functions() (agentscope.service.browser.web_browser.webbrowser method)": [[56, "agentscope.service.browser.web_browser.WebBrowser.get_action_functions", false]], "get_action_functions() (agentscope.service.webbrowser method)": [[54, "agentscope.service.WebBrowser.get_action_functions", false]], "get_agent() (agentscope.server.agentserverservicer method)": [[51, "agentscope.server.AgentServerServicer.get_agent", false]], "get_agent() (agentscope.server.servicer.agentserverservicer method)": [[53, "agentscope.server.servicer.AgentServerServicer.get_agent", false]], "get_agent_class() (agentscope.agents.agent.agentbase class method)": [[2, "agentscope.agents.agent.AgentBase.get_agent_class", false]], "get_agent_class() (agentscope.agents.agentbase class method)": [[1, "agentscope.agents.AgentBase.get_agent_class", false]], "get_agent_list() (agentscope.rpc.rpc_agent_client.rpcagentclient method)": [[47, "agentscope.rpc.rpc_agent_client.RpcAgentClient.get_agent_list", false]], "get_agent_list() (agentscope.rpc.rpc_agent_pb2_grpc.rpcagent static method)": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgent.get_agent_list", false]], "get_agent_list() (agentscope.rpc.rpc_agent_pb2_grpc.rpcagentservicer method)": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgentServicer.get_agent_list", false]], "get_agent_list() (agentscope.rpc.rpcagentclient method)": [[46, "agentscope.rpc.RpcAgentClient.get_agent_list", false]], "get_agent_list() (agentscope.rpc.rpcagentservicer method)": [[46, "agentscope.rpc.RpcAgentServicer.get_agent_list", false]], "get_agent_list() (agentscope.server.agentserverservicer method)": [[51, "agentscope.server.AgentServerServicer.get_agent_list", false]], "get_agent_list() (agentscope.server.servicer.agentserverservicer method)": [[53, "agentscope.server.servicer.AgentServerServicer.get_agent_list", false]], "get_agent_memory() (agentscope.rpc.rpc_agent_client.rpcagentclient method)": [[47, "agentscope.rpc.rpc_agent_client.RpcAgentClient.get_agent_memory", false]], "get_agent_memory() (agentscope.rpc.rpc_agent_pb2_grpc.rpcagent static method)": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgent.get_agent_memory", false]], "get_agent_memory() (agentscope.rpc.rpc_agent_pb2_grpc.rpcagentservicer method)": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgentServicer.get_agent_memory", false]], "get_agent_memory() (agentscope.rpc.rpcagentclient method)": [[46, "agentscope.rpc.RpcAgentClient.get_agent_memory", false]], "get_agent_memory() (agentscope.rpc.rpcagentservicer method)": [[46, "agentscope.rpc.RpcAgentServicer.get_agent_memory", false]], "get_agent_memory() (agentscope.server.agentserverservicer method)": [[51, "agentscope.server.AgentServerServicer.get_agent_memory", false]], "get_agent_memory() (agentscope.server.servicer.agentserverservicer method)": [[53, "agentscope.server.servicer.AgentServerServicer.get_agent_memory", false]], "get_all_agents() (in module agentscope.web.workstation.workflow_node)": [[103, "agentscope.web.workstation.workflow_node.get_all_agents", false]], "get_chat() (in module agentscope.web.gradio.studio)": [[98, "agentscope.web.gradio.studio.get_chat", false]], "get_chat_msg() (in module agentscope.web.gradio.utils)": [[99, "agentscope.web.gradio.utils.get_chat_msg", false]], "get_config_by_name() (agentscope.manager.modelmanager method)": [[13, "agentscope.manager.ModelManager.get_config_by_name", false]], "get_current_directory() (in module agentscope.service)": [[54, "agentscope.service.get_current_directory", false]], "get_current_directory() (in module agentscope.service.file.common)": [[62, "agentscope.service.file.common.get_current_directory", false]], "get_embeddings() (agentscope.memory.temporary_memory.temporarymemory method)": [[16, "agentscope.memory.temporary_memory.TemporaryMemory.get_embeddings", false]], "get_embeddings() (agentscope.memory.temporarymemory method)": [[14, "agentscope.memory.TemporaryMemory.get_embeddings", false]], "get_help() (in module agentscope.service)": [[54, "agentscope.service.get_help", false]], "get_instance() (agentscope.manager.asmanager class method)": [[13, "agentscope.manager.ASManager.get_instance", false]], "get_instance() (agentscope.manager.filemanager class method)": [[13, "agentscope.manager.FileManager.get_instance", false]], "get_instance() (agentscope.manager.modelmanager class method)": [[13, "agentscope.manager.ModelManager.get_instance", false]], "get_instance() (agentscope.manager.monitormanager class method)": [[13, "agentscope.manager.MonitorManager.get_instance", false]], "get_knowledge() (agentscope.rag.knowledge_bank.knowledgebank method)": [[44, "agentscope.rag.knowledge_bank.KnowledgeBank.get_knowledge", false]], "get_knowledge() (agentscope.rag.knowledgebank method)": [[42, "agentscope.rag.KnowledgeBank.get_knowledge", false]], "get_memory() (agentscope.memory.memory.memorybase method)": [[15, "agentscope.memory.memory.MemoryBase.get_memory", false]], "get_memory() (agentscope.memory.memorybase method)": [[14, "agentscope.memory.MemoryBase.get_memory", false]], "get_memory() (agentscope.memory.temporary_memory.temporarymemory method)": [[16, "agentscope.memory.temporary_memory.TemporaryMemory.get_memory", false]], "get_memory() (agentscope.memory.temporarymemory method)": [[14, "agentscope.memory.TemporaryMemory.get_memory", false]], "get_model_by_config_name() (agentscope.manager.modelmanager method)": [[13, "agentscope.manager.ModelManager.get_model_by_config_name", false]], "get_openai_max_length() (in module agentscope.utils.token_utils)": [[94, "agentscope.utils.token_utils.get_openai_max_length", false]], "get_player_input() (in module agentscope.web.gradio.utils)": [[99, "agentscope.web.gradio.utils.get_player_input", false]], "get_reset_msg() (in module agentscope.web.gradio.utils)": [[99, "agentscope.web.gradio.utils.get_reset_msg", false]], "get_response() (agentscope.rpc.responsestub method)": [[46, "agentscope.rpc.ResponseStub.get_response", false]], "get_response() (agentscope.rpc.rpc_agent_client.responsestub method)": [[47, "agentscope.rpc.rpc_agent_client.ResponseStub.get_response", false]], "get_server_info() (agentscope.rpc.rpc_agent_client.rpcagentclient method)": [[47, "agentscope.rpc.rpc_agent_client.RpcAgentClient.get_server_info", false]], "get_server_info() (agentscope.rpc.rpc_agent_pb2_grpc.rpcagent static method)": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgent.get_server_info", false]], "get_server_info() (agentscope.rpc.rpc_agent_pb2_grpc.rpcagentservicer method)": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgentServicer.get_server_info", false]], "get_server_info() (agentscope.rpc.rpcagentclient method)": [[46, "agentscope.rpc.RpcAgentClient.get_server_info", false]], "get_server_info() (agentscope.rpc.rpcagentservicer method)": [[46, "agentscope.rpc.RpcAgentServicer.get_server_info", false]], "get_server_info() (agentscope.server.agentserverservicer method)": [[51, "agentscope.server.AgentServerServicer.get_server_info", false]], "get_server_info() (agentscope.server.servicer.agentserverservicer method)": [[53, "agentscope.server.servicer.AgentServerServicer.get_server_info", false]], "get_task_id() (agentscope.server.agentserverservicer method)": [[51, "agentscope.server.AgentServerServicer.get_task_id", false]], "get_task_id() (agentscope.server.servicer.agentserverservicer method)": [[53, "agentscope.server.servicer.AgentServerServicer.get_task_id", false]], "get_wrapper() (agentscope.models.model.modelwrapperbase class method)": [[24, "agentscope.models.model.ModelWrapperBase.get_wrapper", false]], "get_wrapper() (agentscope.models.modelwrapperbase class method)": [[20, "agentscope.models.ModelWrapperBase.get_wrapper", false]], "google_search() (in module agentscope.service)": [[54, "agentscope.service.google_search", false]], "google_search() (in module agentscope.service.web.search)": [[84, "agentscope.service.web.search.google_search", false]], "googlesearchservicenode (class in agentscope.web.workstation.workflow_node)": [[103, "agentscope.web.workstation.workflow_node.GoogleSearchServiceNode", false]], "height (agentscope.service.browser.web_browser.webelementinfo attribute)": [[56, "agentscope.service.browser.web_browser.WebElementInfo.height", false]], "height (agentscope.service.webelementinfo attribute)": [[54, "agentscope.service.WebElementInfo.height", false]], "host (agentscope.exception.agentservererror attribute)": [[11, "agentscope.exception.AgentServerError.host", false]], "html (agentscope.service.browser.web_browser.webelementinfo attribute)": [[56, "agentscope.service.browser.web_browser.WebElementInfo.html", false]], "html (agentscope.service.webelementinfo attribute)": [[54, "agentscope.service.WebElementInfo.html", false]], "id (agentscope.message.msg property)": [[17, "agentscope.message.Msg.id", false]], "id (agentscope.message.msg.msg property)": [[18, "agentscope.message.msg.Msg.id", false]], "id (agentscope.message.placeholder.placeholdermessage property)": [[19, "agentscope.message.placeholder.PlaceholderMessage.id", false]], "id (agentscope.message.placeholdermessage property)": [[17, "agentscope.message.PlaceholderMessage.id", false]], "ifelsepipeline (class in agentscope.pipelines)": [[38, "agentscope.pipelines.IfElsePipeline", false]], "ifelsepipeline (class in agentscope.pipelines.pipeline)": [[40, "agentscope.pipelines.pipeline.IfElsePipeline", false]], "ifelsepipeline() (in module agentscope.pipelines)": [[38, "agentscope.pipelines.ifelsepipeline", false]], "ifelsepipeline() (in module agentscope.pipelines.functional)": [[39, "agentscope.pipelines.functional.ifelsepipeline", false]], "ifelsepipelinenode (class in agentscope.web.workstation.workflow_node)": [[103, "agentscope.web.workstation.workflow_node.IfElsePipelineNode", false]], "import_function_from_path() (in module agentscope.web.gradio.studio)": [[98, "agentscope.web.gradio.studio.import_function_from_path", false]], "importerrorreporter (class in agentscope.utils.common)": [[93, "agentscope.utils.common.ImportErrorReporter", false]], "init() (in module agentscope)": [[0, "agentscope.init", false]], "init() (in module agentscope.studio)": [[90, "agentscope.studio.init", false]], "init_uid_list() (in module agentscope.web.gradio.studio)": [[98, "agentscope.web.gradio.studio.init_uid_list", false]], "init_uid_queues() (in module agentscope.web.gradio.utils)": [[99, "agentscope.web.gradio.utils.init_uid_queues", false]], "initialize() (agentscope.manager.asmanager method)": [[13, "agentscope.manager.ASManager.initialize", false]], "initialize() (agentscope.manager.filemanager method)": [[13, "agentscope.manager.FileManager.initialize", false]], "initialize() (agentscope.manager.modelmanager method)": [[13, "agentscope.manager.ModelManager.initialize", false]], "initialize() (agentscope.manager.monitormanager method)": [[13, "agentscope.manager.MonitorManager.initialize", false]], "inner_text (agentscope.service.browser.web_browser.webelementinfo attribute)": [[56, "agentscope.service.browser.web_browser.WebElementInfo.inner_text", false]], "inner_text (agentscope.service.webelementinfo attribute)": [[54, "agentscope.service.WebElementInfo.inner_text", false]], "invoke_dir (agentscope.manager.filemanager property)": [[13, "agentscope.manager.FileManager.invoke_dir", false]], "is_alive() (agentscope.rpc.rpc_agent_client.rpcagentclient method)": [[47, "agentscope.rpc.rpc_agent_client.RpcAgentClient.is_alive", false]], "is_alive() (agentscope.rpc.rpc_agent_pb2_grpc.rpcagent static method)": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgent.is_alive", false]], "is_alive() (agentscope.rpc.rpc_agent_pb2_grpc.rpcagentservicer method)": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgentServicer.is_alive", false]], "is_alive() (agentscope.rpc.rpcagentclient method)": [[46, "agentscope.rpc.RpcAgentClient.is_alive", false]], "is_alive() (agentscope.rpc.rpcagentservicer method)": [[46, "agentscope.rpc.RpcAgentServicer.is_alive", false]], "is_alive() (agentscope.server.agentserverservicer method)": [[51, "agentscope.server.AgentServerServicer.is_alive", false]], "is_alive() (agentscope.server.servicer.agentserverservicer method)": [[53, "agentscope.server.servicer.AgentServerServicer.is_alive", false]], "is_callable_expression() (in module agentscope.web.workstation.workflow_utils)": [[104, "agentscope.web.workstation.workflow_utils.is_callable_expression", false]], "is_clickable (agentscope.service.browser.web_browser.webelementinfo attribute)": [[56, "agentscope.service.browser.web_browser.WebElementInfo.is_clickable", false]], "is_clickable (agentscope.service.webelementinfo attribute)": [[54, "agentscope.service.WebElementInfo.is_clickable", false]], "is_initialized() (agentscope.manager.filemanager class method)": [[13, "agentscope.manager.FileManager.is_initialized", false]], "is_serializable() (in module agentscope.serialize)": [[50, "agentscope.serialize.is_serializable", false]], "is_stream_exhausted (agentscope.models.modelresponse property)": [[20, "agentscope.models.ModelResponse.is_stream_exhausted", false]], "is_stream_exhausted (agentscope.models.response.modelresponse property)": [[28, "agentscope.models.response.ModelResponse.is_stream_exhausted", false]], "is_valid_url() (in module agentscope.service.web.web_digest)": [[86, "agentscope.service.web.web_digest.is_valid_url", false]], "json (agentscope.constants.responseformat attribute)": [[10, "agentscope.constants.ResponseFormat.JSON", false]], "json_required_hint (agentscope.parsers.multitaggedcontentparser attribute)": [[32, "agentscope.parsers.MultiTaggedContentParser.json_required_hint", false]], "json_required_hint (agentscope.parsers.tagged_content_parser.multitaggedcontentparser attribute)": [[37, "agentscope.parsers.tagged_content_parser.MultiTaggedContentParser.json_required_hint", false]], "json_schema (agentscope.service.service_toolkit.servicefunction attribute)": [[73, "agentscope.service.service_toolkit.ServiceFunction.json_schema", false]], "json_schemas (agentscope.service.service_toolkit.servicetoolkit property)": [[73, "agentscope.service.service_toolkit.ServiceToolkit.json_schemas", false]], "json_schemas (agentscope.service.servicetoolkit property)": [[54, "agentscope.service.ServiceToolkit.json_schemas", false]], "jsondictvalidationerror": [[11, "agentscope.exception.JsonDictValidationError", false]], "jsonparsingerror": [[11, "agentscope.exception.JsonParsingError", false]], "jsontypeerror": [[11, "agentscope.exception.JsonTypeError", false]], "keep_alive (agentscope.models.ollama_model.ollamachatwrapper attribute)": [[25, "agentscope.models.ollama_model.OllamaChatWrapper.keep_alive", false]], "keep_alive (agentscope.models.ollama_model.ollamaembeddingwrapper attribute)": [[25, "agentscope.models.ollama_model.OllamaEmbeddingWrapper.keep_alive", false]], "keep_alive (agentscope.models.ollama_model.ollamagenerationwrapper attribute)": [[25, "agentscope.models.ollama_model.OllamaGenerationWrapper.keep_alive", false]], "keep_alive (agentscope.models.ollama_model.ollamawrapperbase attribute)": [[25, "agentscope.models.ollama_model.OllamaWrapperBase.keep_alive", false]], "knowledge (class in agentscope.rag)": [[42, "agentscope.rag.Knowledge", false]], "knowledge (class in agentscope.rag.knowledge)": [[43, "agentscope.rag.knowledge.Knowledge", false]], "knowledgebank (class in agentscope.rag)": [[42, "agentscope.rag.KnowledgeBank", false]], "knowledgebank (class in agentscope.rag.knowledge_bank)": [[44, "agentscope.rag.knowledge_bank.KnowledgeBank", false]], "kwarg_converter() (in module agentscope.web.workstation.workflow_utils)": [[104, "agentscope.web.workstation.workflow_utils.kwarg_converter", false]], "launch() (agentscope.server.launcher.rpcagentserverlauncher method)": [[52, "agentscope.server.launcher.RpcAgentServerLauncher.launch", false]], "launch() (agentscope.server.rpcagentserverlauncher method)": [[51, "agentscope.server.RpcAgentServerLauncher.launch", false]], "list_directory_content() (in module agentscope.service)": [[54, "agentscope.service.list_directory_content", false]], "list_directory_content() (in module agentscope.service.file.common)": [[62, "agentscope.service.file.common.list_directory_content", false]], "list_models() (agentscope.models.gemini_model.geminiwrapperbase method)": [[22, "agentscope.models.gemini_model.GeminiWrapperBase.list_models", false]], "litellmchatwrapper (class in agentscope.models)": [[20, "agentscope.models.LiteLLMChatWrapper", false]], "litellmchatwrapper (class in agentscope.models.litellm_model)": [[23, "agentscope.models.litellm_model.LiteLLMChatWrapper", false]], "litellmwrapperbase (class in agentscope.models.litellm_model)": [[23, "agentscope.models.litellm_model.LiteLLMWrapperBase", false]], "llamaindexagent (class in agentscope.agents)": [[1, "agentscope.agents.LlamaIndexAgent", false]], "llamaindexagent (class in agentscope.agents.rag_agent)": [[6, "agentscope.agents.rag_agent.LlamaIndexAgent", false]], "llamaindexknowledge (class in agentscope.rag.llama_index_knowledge)": [[45, "agentscope.rag.llama_index_knowledge.LlamaIndexKnowledge", false]], "load() (agentscope.memory.memory.memorybase method)": [[15, "agentscope.memory.memory.MemoryBase.load", false]], "load() (agentscope.memory.memorybase method)": [[14, "agentscope.memory.MemoryBase.load", false]], "load() (agentscope.memory.temporary_memory.temporarymemory method)": [[16, "agentscope.memory.temporary_memory.TemporaryMemory.load", false]], "load() (agentscope.memory.temporarymemory method)": [[14, "agentscope.memory.TemporaryMemory.load", false]], "load_agents_from_dir() (in module agentscope.server.launcher)": [[52, "agentscope.server.launcher.load_agents_from_dir", false]], "load_agents_from_file() (in module agentscope.server.launcher)": [[52, "agentscope.server.launcher.load_agents_from_file", false]], "load_config() (in module agentscope.web.workstation.workflow)": [[101, "agentscope.web.workstation.workflow.load_config", false]], "load_dict() (agentscope.manager.asmanager method)": [[13, "agentscope.manager.ASManager.load_dict", false]], "load_dict() (agentscope.manager.filemanager method)": [[13, "agentscope.manager.FileManager.load_dict", false]], "load_dict() (agentscope.manager.modelmanager method)": [[13, "agentscope.manager.ModelManager.load_dict", false]], "load_dict() (agentscope.manager.monitormanager method)": [[13, "agentscope.manager.MonitorManager.load_dict", false]], "load_model_configs() (agentscope.manager.modelmanager method)": [[13, "agentscope.manager.ModelManager.load_model_configs", false]], "load_web() (in module agentscope.service)": [[54, "agentscope.service.load_web", false]], "load_web() (in module agentscope.service.web.web_digest)": [[86, "agentscope.service.web.web_digest.load_web", false]], "log_gradio() (in module agentscope.logging)": [[12, "agentscope.logging.log_gradio", false]], "log_msg() (in module agentscope.logging)": [[12, "agentscope.logging.log_msg", false]], "log_stream_msg() (in module agentscope.logging)": [[12, "agentscope.logging.log_stream_msg", false]], "main() (in module agentscope.web.workstation.workflow)": [[101, "agentscope.web.workstation.workflow.main", false]], "markdowncodeblockparser (class in agentscope.parsers)": [[32, "agentscope.parsers.MarkdownCodeBlockParser", false]], "markdowncodeblockparser (class in agentscope.parsers.code_block_parser)": [[33, "agentscope.parsers.code_block_parser.MarkdownCodeBlockParser", false]], "markdownjsondictparser (class in agentscope.parsers)": [[32, "agentscope.parsers.MarkdownJsonDictParser", false]], "markdownjsondictparser (class in agentscope.parsers.json_object_parser)": [[34, "agentscope.parsers.json_object_parser.MarkdownJsonDictParser", false]], "markdownjsonobjectparser (class in agentscope.parsers)": [[32, "agentscope.parsers.MarkdownJsonObjectParser", false]], "markdownjsonobjectparser (class in agentscope.parsers.json_object_parser)": [[34, "agentscope.parsers.json_object_parser.MarkdownJsonObjectParser", false]], "memorybase (class in agentscope.memory)": [[14, "agentscope.memory.MemoryBase", false]], "memorybase (class in agentscope.memory.memory)": [[15, "agentscope.memory.memory.MemoryBase", false]], "message (agentscope.exception.agentservererror attribute)": [[11, "agentscope.exception.AgentServerError.message", false]], "message (agentscope.web.workstation.workflow_node.workflownodetype attribute)": [[103, "agentscope.web.workstation.workflow_node.WorkflowNodeType.MESSAGE", false]], "meta_data (agentscope.service.browser.web_browser.webelementinfo attribute)": [[56, "agentscope.service.browser.web_browser.WebElementInfo.meta_data", false]], "meta_data (agentscope.service.webelementinfo attribute)": [[54, "agentscope.service.WebElementInfo.meta_data", false]], "metadata (agentscope.message.msg property)": [[17, "agentscope.message.Msg.metadata", false]], "metadata (agentscope.message.msg.msg property)": [[18, "agentscope.message.msg.Msg.metadata", false]], "metadata (agentscope.message.placeholder.placeholdermessage property)": [[19, "agentscope.message.placeholder.PlaceholderMessage.metadata", false]], "metadata (agentscope.message.placeholdermessage property)": [[17, "agentscope.message.PlaceholderMessage.metadata", false]], "missing_begin_tag (agentscope.exception.tagnotfounderror attribute)": [[11, "agentscope.exception.TagNotFoundError.missing_begin_tag", false]], "missing_end_tag (agentscope.exception.tagnotfounderror attribute)": [[11, "agentscope.exception.TagNotFoundError.missing_end_tag", false]], "mixtureofagents (class in agentscope.strategy)": [[88, "agentscope.strategy.MixtureOfAgents", false]], "mixtureofagents (class in agentscope.strategy.mixture_of_agent)": [[89, "agentscope.strategy.mixture_of_agent.MixtureOfAgents", false]], "model (agentscope.web.workstation.workflow_node.workflownodetype attribute)": [[103, "agentscope.web.workstation.workflow_node.WorkflowNodeType.MODEL", false]], "model_computed_fields (agentscope.service.browser.web_browser.webelementinfo attribute)": [[56, "agentscope.service.browser.web_browser.WebElementInfo.model_computed_fields", false]], "model_computed_fields (agentscope.service.webelementinfo attribute)": [[54, "agentscope.service.WebElementInfo.model_computed_fields", false]], "model_config (agentscope.service.browser.web_browser.webelementinfo attribute)": [[56, "agentscope.service.browser.web_browser.WebElementInfo.model_config", false]], "model_config (agentscope.service.webelementinfo attribute)": [[54, "agentscope.service.WebElementInfo.model_config", false]], "model_configs (agentscope.manager.modelmanager attribute)": [[13, "agentscope.manager.ModelManager.model_configs", false]], "model_fields (agentscope.service.browser.web_browser.webelementinfo attribute)": [[56, "agentscope.service.browser.web_browser.WebElementInfo.model_fields", false]], "model_fields (agentscope.service.webelementinfo attribute)": [[54, "agentscope.service.WebElementInfo.model_fields", false]], "model_name (agentscope.models.dashscope_model.dashscopechatwrapper attribute)": [[21, "agentscope.models.dashscope_model.DashScopeChatWrapper.model_name", false]], "model_name (agentscope.models.dashscope_model.dashscopeimagesynthesiswrapper attribute)": [[21, "agentscope.models.dashscope_model.DashScopeImageSynthesisWrapper.model_name", false]], "model_name (agentscope.models.dashscope_model.dashscopemultimodalwrapper attribute)": [[21, "agentscope.models.dashscope_model.DashScopeMultiModalWrapper.model_name", false]], "model_name (agentscope.models.dashscope_model.dashscopetextembeddingwrapper attribute)": [[21, "agentscope.models.dashscope_model.DashScopeTextEmbeddingWrapper.model_name", false]], "model_name (agentscope.models.gemini_model.geminichatwrapper attribute)": [[22, "agentscope.models.gemini_model.GeminiChatWrapper.model_name", false]], "model_name (agentscope.models.gemini_model.geminiembeddingwrapper attribute)": [[22, "agentscope.models.gemini_model.GeminiEmbeddingWrapper.model_name", false]], "model_name (agentscope.models.litellm_model.litellmchatwrapper attribute)": [[23, "agentscope.models.litellm_model.LiteLLMChatWrapper.model_name", false]], "model_name (agentscope.models.model.modelwrapperbase attribute)": [[24, "agentscope.models.model.ModelWrapperBase.model_name", false]], "model_name (agentscope.models.modelwrapperbase attribute)": [[20, "agentscope.models.ModelWrapperBase.model_name", false]], "model_name (agentscope.models.ollama_model.ollamachatwrapper attribute)": [[25, "agentscope.models.ollama_model.OllamaChatWrapper.model_name", false]], "model_name (agentscope.models.ollama_model.ollamaembeddingwrapper attribute)": [[25, "agentscope.models.ollama_model.OllamaEmbeddingWrapper.model_name", false]], "model_name (agentscope.models.ollama_model.ollamagenerationwrapper attribute)": [[25, "agentscope.models.ollama_model.OllamaGenerationWrapper.model_name", false]], "model_name (agentscope.models.ollama_model.ollamawrapperbase attribute)": [[25, "agentscope.models.ollama_model.OllamaWrapperBase.model_name", false]], "model_name (agentscope.models.openai_model.openaichatwrapper attribute)": [[26, "agentscope.models.openai_model.OpenAIChatWrapper.model_name", false]], "model_name (agentscope.models.openai_model.openaidallewrapper attribute)": [[26, "agentscope.models.openai_model.OpenAIDALLEWrapper.model_name", false]], "model_name (agentscope.models.openai_model.openaiembeddingwrapper attribute)": [[26, "agentscope.models.openai_model.OpenAIEmbeddingWrapper.model_name", false]], "model_name (agentscope.models.post_model.postapichatwrapper attribute)": [[27, "agentscope.models.post_model.PostAPIChatWrapper.model_name", false]], "model_name (agentscope.models.post_model.postapimodelwrapperbase attribute)": [[27, "agentscope.models.post_model.PostAPIModelWrapperBase.model_name", false]], "model_name (agentscope.models.yi_model.yichatwrapper attribute)": [[29, "agentscope.models.yi_model.YiChatWrapper.model_name", false]], "model_name (agentscope.models.zhipu_model.zhipuaichatwrapper attribute)": [[30, "agentscope.models.zhipu_model.ZhipuAIChatWrapper.model_name", false]], "model_name (agentscope.models.zhipu_model.zhipuaiembeddingwrapper attribute)": [[30, "agentscope.models.zhipu_model.ZhipuAIEmbeddingWrapper.model_name", false]], "model_type (agentscope.models.dashscope_model.dashscopechatwrapper attribute)": [[21, "agentscope.models.dashscope_model.DashScopeChatWrapper.model_type", false]], "model_type (agentscope.models.dashscope_model.dashscopeimagesynthesiswrapper attribute)": [[21, "agentscope.models.dashscope_model.DashScopeImageSynthesisWrapper.model_type", false]], "model_type (agentscope.models.dashscope_model.dashscopemultimodalwrapper attribute)": [[21, "agentscope.models.dashscope_model.DashScopeMultiModalWrapper.model_type", false]], "model_type (agentscope.models.dashscope_model.dashscopetextembeddingwrapper attribute)": [[21, "agentscope.models.dashscope_model.DashScopeTextEmbeddingWrapper.model_type", false]], "model_type (agentscope.models.dashscopechatwrapper attribute)": [[20, "agentscope.models.DashScopeChatWrapper.model_type", false]], "model_type (agentscope.models.dashscopeimagesynthesiswrapper attribute)": [[20, "agentscope.models.DashScopeImageSynthesisWrapper.model_type", false]], "model_type (agentscope.models.dashscopemultimodalwrapper attribute)": [[20, "agentscope.models.DashScopeMultiModalWrapper.model_type", false]], "model_type (agentscope.models.dashscopetextembeddingwrapper attribute)": [[20, "agentscope.models.DashScopeTextEmbeddingWrapper.model_type", false]], "model_type (agentscope.models.gemini_model.geminichatwrapper attribute)": [[22, "agentscope.models.gemini_model.GeminiChatWrapper.model_type", false]], "model_type (agentscope.models.gemini_model.geminiembeddingwrapper attribute)": [[22, "agentscope.models.gemini_model.GeminiEmbeddingWrapper.model_type", false]], "model_type (agentscope.models.geminichatwrapper attribute)": [[20, "agentscope.models.GeminiChatWrapper.model_type", false]], "model_type (agentscope.models.geminiembeddingwrapper attribute)": [[20, "agentscope.models.GeminiEmbeddingWrapper.model_type", false]], "model_type (agentscope.models.litellm_model.litellmchatwrapper attribute)": [[23, "agentscope.models.litellm_model.LiteLLMChatWrapper.model_type", false]], "model_type (agentscope.models.litellmchatwrapper attribute)": [[20, "agentscope.models.LiteLLMChatWrapper.model_type", false]], "model_type (agentscope.models.model.modelwrapperbase attribute)": [[24, "agentscope.models.model.ModelWrapperBase.model_type", false]], "model_type (agentscope.models.modelwrapperbase attribute)": [[20, "agentscope.models.ModelWrapperBase.model_type", false]], "model_type (agentscope.models.ollama_model.ollamachatwrapper attribute)": [[25, "agentscope.models.ollama_model.OllamaChatWrapper.model_type", false]], "model_type (agentscope.models.ollama_model.ollamaembeddingwrapper attribute)": [[25, "agentscope.models.ollama_model.OllamaEmbeddingWrapper.model_type", false]], "model_type (agentscope.models.ollama_model.ollamagenerationwrapper attribute)": [[25, "agentscope.models.ollama_model.OllamaGenerationWrapper.model_type", false]], "model_type (agentscope.models.ollama_model.ollamawrapperbase attribute)": [[25, "agentscope.models.ollama_model.OllamaWrapperBase.model_type", false]], "model_type (agentscope.models.ollamachatwrapper attribute)": [[20, "agentscope.models.OllamaChatWrapper.model_type", false]], "model_type (agentscope.models.ollamaembeddingwrapper attribute)": [[20, "agentscope.models.OllamaEmbeddingWrapper.model_type", false]], "model_type (agentscope.models.ollamagenerationwrapper attribute)": [[20, "agentscope.models.OllamaGenerationWrapper.model_type", false]], "model_type (agentscope.models.openai_model.openaichatwrapper attribute)": [[26, "agentscope.models.openai_model.OpenAIChatWrapper.model_type", false]], "model_type (agentscope.models.openai_model.openaidallewrapper attribute)": [[26, "agentscope.models.openai_model.OpenAIDALLEWrapper.model_type", false]], "model_type (agentscope.models.openai_model.openaiembeddingwrapper attribute)": [[26, "agentscope.models.openai_model.OpenAIEmbeddingWrapper.model_type", false]], "model_type (agentscope.models.openaichatwrapper attribute)": [[20, "agentscope.models.OpenAIChatWrapper.model_type", false]], "model_type (agentscope.models.openaidallewrapper attribute)": [[20, "agentscope.models.OpenAIDALLEWrapper.model_type", false]], "model_type (agentscope.models.openaiembeddingwrapper attribute)": [[20, "agentscope.models.OpenAIEmbeddingWrapper.model_type", false]], "model_type (agentscope.models.post_model.postapichatwrapper attribute)": [[27, "agentscope.models.post_model.PostAPIChatWrapper.model_type", false]], "model_type (agentscope.models.post_model.postapidallewrapper attribute)": [[27, "agentscope.models.post_model.PostAPIDALLEWrapper.model_type", false]], "model_type (agentscope.models.post_model.postapiembeddingwrapper attribute)": [[27, "agentscope.models.post_model.PostAPIEmbeddingWrapper.model_type", false]], "model_type (agentscope.models.post_model.postapimodelwrapperbase attribute)": [[27, "agentscope.models.post_model.PostAPIModelWrapperBase.model_type", false]], "model_type (agentscope.models.postapichatwrapper attribute)": [[20, "agentscope.models.PostAPIChatWrapper.model_type", false]], "model_type (agentscope.models.postapimodelwrapperbase attribute)": [[20, "agentscope.models.PostAPIModelWrapperBase.model_type", false]], "model_type (agentscope.models.yi_model.yichatwrapper attribute)": [[29, "agentscope.models.yi_model.YiChatWrapper.model_type", false]], "model_type (agentscope.models.yichatwrapper attribute)": [[20, "agentscope.models.YiChatWrapper.model_type", false]], "model_type (agentscope.models.zhipu_model.zhipuaichatwrapper attribute)": [[30, "agentscope.models.zhipu_model.ZhipuAIChatWrapper.model_type", false]], "model_type (agentscope.models.zhipu_model.zhipuaiembeddingwrapper attribute)": [[30, "agentscope.models.zhipu_model.ZhipuAIEmbeddingWrapper.model_type", false]], "model_type (agentscope.models.zhipuaichatwrapper attribute)": [[20, "agentscope.models.ZhipuAIChatWrapper.model_type", false]], "model_type (agentscope.models.zhipuaiembeddingwrapper attribute)": [[20, "agentscope.models.ZhipuAIEmbeddingWrapper.model_type", false]], "modelmanager (class in agentscope.manager)": [[13, "agentscope.manager.ModelManager", false]], "modelnode (class in agentscope.web.workstation.workflow_node)": [[103, "agentscope.web.workstation.workflow_node.ModelNode", false]], "modelresponse (class in agentscope.models)": [[20, "agentscope.models.ModelResponse", false]], "modelresponse (class in agentscope.models.response)": [[28, "agentscope.models.response.ModelResponse", false]], "modelwrapperbase (class in agentscope.models)": [[20, "agentscope.models.ModelWrapperBase", false]], "modelwrapperbase (class in agentscope.models.model)": [[24, "agentscope.models.model.ModelWrapperBase", false]], "module": [[0, "module-agentscope", false], [1, "module-agentscope.agents", false], [2, "module-agentscope.agents.agent", false], [3, "module-agentscope.agents.dialog_agent", false], [4, "module-agentscope.agents.dict_dialog_agent", false], [5, "module-agentscope.agents.operator", false], [6, "module-agentscope.agents.rag_agent", false], [7, "module-agentscope.agents.react_agent", false], [8, "module-agentscope.agents.rpc_agent", false], [9, "module-agentscope.agents.user_agent", false], [10, "module-agentscope.constants", false], [11, "module-agentscope.exception", false], [12, "module-agentscope.logging", false], [13, "module-agentscope.manager", false], [14, "module-agentscope.memory", false], [15, "module-agentscope.memory.memory", false], [16, "module-agentscope.memory.temporary_memory", false], [17, "module-agentscope.message", false], [18, "module-agentscope.message.msg", false], [19, "module-agentscope.message.placeholder", false], [20, "module-agentscope.models", false], [21, "module-agentscope.models.dashscope_model", false], [22, "module-agentscope.models.gemini_model", false], [23, "module-agentscope.models.litellm_model", false], [24, "module-agentscope.models.model", false], [25, "module-agentscope.models.ollama_model", false], [26, "module-agentscope.models.openai_model", false], [27, "module-agentscope.models.post_model", false], [28, "module-agentscope.models.response", false], [29, "module-agentscope.models.yi_model", false], [30, "module-agentscope.models.zhipu_model", false], [31, "module-agentscope.msghub", false], [32, "module-agentscope.parsers", false], [33, "module-agentscope.parsers.code_block_parser", false], [34, "module-agentscope.parsers.json_object_parser", false], [35, "module-agentscope.parsers.parser_base", false], [36, "module-agentscope.parsers.regex_tagged_content_parser", false], [37, "module-agentscope.parsers.tagged_content_parser", false], [38, "module-agentscope.pipelines", false], [39, "module-agentscope.pipelines.functional", false], [40, "module-agentscope.pipelines.pipeline", false], [41, "module-agentscope.prompt", false], [42, "module-agentscope.rag", false], [43, "module-agentscope.rag.knowledge", false], [44, "module-agentscope.rag.knowledge_bank", false], [45, "module-agentscope.rag.llama_index_knowledge", false], [46, "module-agentscope.rpc", false], [47, "module-agentscope.rpc.rpc_agent_client", false], [48, "module-agentscope.rpc.rpc_agent_pb2", false], [49, "module-agentscope.rpc.rpc_agent_pb2_grpc", false], [50, "module-agentscope.serialize", false], [51, "module-agentscope.server", false], [52, "module-agentscope.server.launcher", false], [53, "module-agentscope.server.servicer", false], [54, "module-agentscope.service", false], [55, "module-agentscope.service.browser", false], [56, "module-agentscope.service.browser.web_browser", false], [57, "module-agentscope.service.execute_code", false], [58, "module-agentscope.service.execute_code.exec_notebook", false], [59, "module-agentscope.service.execute_code.exec_python", false], [60, "module-agentscope.service.execute_code.exec_shell", false], [61, "module-agentscope.service.file", false], [62, "module-agentscope.service.file.common", false], [63, "module-agentscope.service.file.json", false], [64, "module-agentscope.service.file.text", false], [65, "module-agentscope.service.multi_modality", false], [66, "module-agentscope.service.multi_modality.dashscope_services", false], [67, "module-agentscope.service.multi_modality.openai_services", false], [68, "module-agentscope.service.retrieval", false], [69, "module-agentscope.service.retrieval.retrieval_from_list", false], [70, "module-agentscope.service.retrieval.similarity", false], [71, "module-agentscope.service.service_response", false], [72, "module-agentscope.service.service_status", false], [73, "module-agentscope.service.service_toolkit", false], [74, "module-agentscope.service.sql_query", false], [75, "module-agentscope.service.sql_query.mongodb", false], [76, "module-agentscope.service.sql_query.mysql", false], [77, "module-agentscope.service.sql_query.sqlite", false], [78, "module-agentscope.service.text_processing", false], [79, "module-agentscope.service.text_processing.summarization", false], [80, "module-agentscope.service.web", false], [81, "module-agentscope.service.web.arxiv", false], [82, "module-agentscope.service.web.dblp", false], [83, "module-agentscope.service.web.download", false], [84, "module-agentscope.service.web.search", false], [85, "module-agentscope.service.web.tripadvisor", false], [86, "module-agentscope.service.web.web_digest", false], [87, "module-agentscope.service.web.wikipedia", false], [88, "module-agentscope.strategy", false], [89, "module-agentscope.strategy.mixture_of_agent", false], [90, "module-agentscope.studio", false], [91, "module-agentscope.studio.utils", false], [92, "module-agentscope.utils", false], [93, "module-agentscope.utils.common", false], [94, "module-agentscope.utils.token_utils", false], [95, "module-agentscope.web", false], [96, "module-agentscope.web.gradio", false], [97, "module-agentscope.web.gradio.constants", false], [98, "module-agentscope.web.gradio.studio", false], [99, "module-agentscope.web.gradio.utils", false], [100, "module-agentscope.web.workstation", false], [101, "module-agentscope.web.workstation.workflow", false], [102, "module-agentscope.web.workstation.workflow_dag", false], [103, "module-agentscope.web.workstation.workflow_node", false], [104, "module-agentscope.web.workstation.workflow_utils", false]], "monitormanager (class in agentscope.manager)": [[13, "agentscope.manager.MonitorManager", false]], "move_directory() (in module agentscope.service)": [[54, "agentscope.service.move_directory", false]], "move_directory() (in module agentscope.service.file.common)": [[62, "agentscope.service.file.common.move_directory", false]], "move_file() (in module agentscope.service)": [[54, "agentscope.service.move_file", false]], "move_file() (in module agentscope.service.file.common)": [[62, "agentscope.service.file.common.move_file", false]], "msg (class in agentscope.message)": [[17, "agentscope.message.Msg", false]], "msg (class in agentscope.message.msg)": [[18, "agentscope.message.msg.Msg", false]], "msghub() (in module agentscope)": [[0, "agentscope.msghub", false]], "msghub() (in module agentscope.msghub)": [[31, "agentscope.msghub.msghub", false]], "msghubmanager (class in agentscope.msghub)": [[31, "agentscope.msghub.MsgHubManager", false]], "msghubnode (class in agentscope.web.workstation.workflow_node)": [[103, "agentscope.web.workstation.workflow_node.MsgHubNode", false]], "msgnode (class in agentscope.web.workstation.workflow_node)": [[103, "agentscope.web.workstation.workflow_node.MsgNode", false]], "multitaggedcontentparser (class in agentscope.parsers)": [[32, "agentscope.parsers.MultiTaggedContentParser", false]], "multitaggedcontentparser (class in agentscope.parsers.tagged_content_parser)": [[37, "agentscope.parsers.tagged_content_parser.MultiTaggedContentParser", false]], "name (agentscope.message.msg property)": [[17, "agentscope.message.Msg.name", false]], "name (agentscope.message.msg.msg property)": [[18, "agentscope.message.msg.Msg.name", false]], "name (agentscope.message.placeholder.placeholdermessage property)": [[19, "agentscope.message.placeholder.PlaceholderMessage.name", false]], "name (agentscope.message.placeholdermessage property)": [[17, "agentscope.message.PlaceholderMessage.name", false]], "name (agentscope.parsers.code_block_parser.markdowncodeblockparser attribute)": [[33, "agentscope.parsers.code_block_parser.MarkdownCodeBlockParser.name", false]], "name (agentscope.parsers.json_object_parser.markdownjsondictparser attribute)": [[34, "agentscope.parsers.json_object_parser.MarkdownJsonDictParser.name", false]], "name (agentscope.parsers.json_object_parser.markdownjsonobjectparser attribute)": [[34, "agentscope.parsers.json_object_parser.MarkdownJsonObjectParser.name", false]], "name (agentscope.parsers.markdowncodeblockparser attribute)": [[32, "agentscope.parsers.MarkdownCodeBlockParser.name", false]], "name (agentscope.parsers.markdownjsondictparser attribute)": [[32, "agentscope.parsers.MarkdownJsonDictParser.name", false]], "name (agentscope.parsers.markdownjsonobjectparser attribute)": [[32, "agentscope.parsers.MarkdownJsonObjectParser.name", false]], "name (agentscope.parsers.tagged_content_parser.taggedcontent attribute)": [[37, "agentscope.parsers.tagged_content_parser.TaggedContent.name", false]], "name (agentscope.parsers.taggedcontent attribute)": [[32, "agentscope.parsers.TaggedContent.name", false]], "name (agentscope.service.service_toolkit.servicefunction attribute)": [[73, "agentscope.service.service_toolkit.ServiceFunction.name", false]], "node_name (agentscope.service.browser.web_browser.webelementinfo attribute)": [[56, "agentscope.service.browser.web_browser.WebElementInfo.node_name", false]], "node_name (agentscope.service.webelementinfo attribute)": [[54, "agentscope.service.WebElementInfo.node_name", false]], "node_type (agentscope.web.workstation.workflow_node.bingsearchservicenode attribute)": [[103, "agentscope.web.workstation.workflow_node.BingSearchServiceNode.node_type", false]], "node_type (agentscope.web.workstation.workflow_node.copynode attribute)": [[103, "agentscope.web.workstation.workflow_node.CopyNode.node_type", false]], "node_type (agentscope.web.workstation.workflow_node.dialogagentnode attribute)": [[103, "agentscope.web.workstation.workflow_node.DialogAgentNode.node_type", false]], "node_type (agentscope.web.workstation.workflow_node.dictdialogagentnode attribute)": [[103, "agentscope.web.workstation.workflow_node.DictDialogAgentNode.node_type", false]], "node_type (agentscope.web.workstation.workflow_node.forlooppipelinenode attribute)": [[103, "agentscope.web.workstation.workflow_node.ForLoopPipelineNode.node_type", false]], "node_type (agentscope.web.workstation.workflow_node.googlesearchservicenode attribute)": [[103, "agentscope.web.workstation.workflow_node.GoogleSearchServiceNode.node_type", false]], "node_type (agentscope.web.workstation.workflow_node.ifelsepipelinenode attribute)": [[103, "agentscope.web.workstation.workflow_node.IfElsePipelineNode.node_type", false]], "node_type (agentscope.web.workstation.workflow_node.modelnode attribute)": [[103, "agentscope.web.workstation.workflow_node.ModelNode.node_type", false]], "node_type (agentscope.web.workstation.workflow_node.msghubnode attribute)": [[103, "agentscope.web.workstation.workflow_node.MsgHubNode.node_type", false]], "node_type (agentscope.web.workstation.workflow_node.msgnode attribute)": [[103, "agentscope.web.workstation.workflow_node.MsgNode.node_type", false]], "node_type (agentscope.web.workstation.workflow_node.placeholdernode attribute)": [[103, "agentscope.web.workstation.workflow_node.PlaceHolderNode.node_type", false]], "node_type (agentscope.web.workstation.workflow_node.pythonservicenode attribute)": [[103, "agentscope.web.workstation.workflow_node.PythonServiceNode.node_type", false]], "node_type (agentscope.web.workstation.workflow_node.reactagentnode attribute)": [[103, "agentscope.web.workstation.workflow_node.ReActAgentNode.node_type", false]], "node_type (agentscope.web.workstation.workflow_node.readtextservicenode attribute)": [[103, "agentscope.web.workstation.workflow_node.ReadTextServiceNode.node_type", false]], "node_type (agentscope.web.workstation.workflow_node.sequentialpipelinenode attribute)": [[103, "agentscope.web.workstation.workflow_node.SequentialPipelineNode.node_type", false]], "node_type (agentscope.web.workstation.workflow_node.switchpipelinenode attribute)": [[103, "agentscope.web.workstation.workflow_node.SwitchPipelineNode.node_type", false]], "node_type (agentscope.web.workstation.workflow_node.useragentnode attribute)": [[103, "agentscope.web.workstation.workflow_node.UserAgentNode.node_type", false]], "node_type (agentscope.web.workstation.workflow_node.whilelooppipelinenode attribute)": [[103, "agentscope.web.workstation.workflow_node.WhileLoopPipelineNode.node_type", false]], "node_type (agentscope.web.workstation.workflow_node.workflownode attribute)": [[103, "agentscope.web.workstation.workflow_node.WorkflowNode.node_type", false]], "node_type (agentscope.web.workstation.workflow_node.writetextservicenode attribute)": [[103, "agentscope.web.workstation.workflow_node.WriteTextServiceNode.node_type", false]], "node_value (agentscope.service.browser.web_browser.webelementinfo attribute)": [[56, "agentscope.service.browser.web_browser.WebElementInfo.node_value", false]], "node_value (agentscope.service.webelementinfo attribute)": [[54, "agentscope.service.WebElementInfo.node_value", false]], "nodes_not_in_graph (agentscope.web.workstation.workflow_dag.asdigraph attribute)": [[102, "agentscope.web.workstation.workflow_dag.ASDiGraph.nodes_not_in_graph", false]], "none (agentscope.constants.responseformat attribute)": [[10, "agentscope.constants.ResponseFormat.NONE", false]], "notebookexecutor (class in agentscope.service)": [[54, "agentscope.service.NoteBookExecutor", false]], "notebookexecutor (class in agentscope.service.execute_code.exec_notebook)": [[58, "agentscope.service.execute_code.exec_notebook.NoteBookExecutor", false]], "num_tokens_from_content() (in module agentscope.utils.token_utils)": [[94, "agentscope.utils.token_utils.num_tokens_from_content", false]], "observe() (agentscope.agents.agent.agentbase method)": [[2, "agentscope.agents.agent.AgentBase.observe", false]], "observe() (agentscope.agents.agentbase method)": [[1, "agentscope.agents.AgentBase.observe", false]], "observe() (agentscope.agents.rpc_agent.rpcagent method)": [[8, "agentscope.agents.rpc_agent.RpcAgent.observe", false]], "ollamachatwrapper (class in agentscope.models)": [[20, "agentscope.models.OllamaChatWrapper", false]], "ollamachatwrapper (class in agentscope.models.ollama_model)": [[25, "agentscope.models.ollama_model.OllamaChatWrapper", false]], "ollamaembeddingwrapper (class in agentscope.models)": [[20, "agentscope.models.OllamaEmbeddingWrapper", false]], "ollamaembeddingwrapper (class in agentscope.models.ollama_model)": [[25, "agentscope.models.ollama_model.OllamaEmbeddingWrapper", false]], "ollamagenerationwrapper (class in agentscope.models)": [[20, "agentscope.models.OllamaGenerationWrapper", false]], "ollamagenerationwrapper (class in agentscope.models.ollama_model)": [[25, "agentscope.models.ollama_model.OllamaGenerationWrapper", false]], "ollamawrapperbase (class in agentscope.models.ollama_model)": [[25, "agentscope.models.ollama_model.OllamaWrapperBase", false]], "openai_audio_to_text() (in module agentscope.service)": [[54, "agentscope.service.openai_audio_to_text", false]], "openai_audio_to_text() (in module agentscope.service.multi_modality.openai_services)": [[67, "agentscope.service.multi_modality.openai_services.openai_audio_to_text", false]], "openai_create_image_variation() (in module agentscope.service)": [[54, "agentscope.service.openai_create_image_variation", false]], "openai_create_image_variation() (in module agentscope.service.multi_modality.openai_services)": [[67, "agentscope.service.multi_modality.openai_services.openai_create_image_variation", false]], "openai_edit_image() (in module agentscope.service)": [[54, "agentscope.service.openai_edit_image", false]], "openai_edit_image() (in module agentscope.service.multi_modality.openai_services)": [[67, "agentscope.service.multi_modality.openai_services.openai_edit_image", false]], "openai_image_to_text() (in module agentscope.service)": [[54, "agentscope.service.openai_image_to_text", false]], "openai_image_to_text() (in module agentscope.service.multi_modality.openai_services)": [[67, "agentscope.service.multi_modality.openai_services.openai_image_to_text", false]], "openai_text_to_audio() (in module agentscope.service)": [[54, "agentscope.service.openai_text_to_audio", false]], "openai_text_to_audio() (in module agentscope.service.multi_modality.openai_services)": [[67, "agentscope.service.multi_modality.openai_services.openai_text_to_audio", false]], "openai_text_to_image() (in module agentscope.service)": [[54, "agentscope.service.openai_text_to_image", false]], "openai_text_to_image() (in module agentscope.service.multi_modality.openai_services)": [[67, "agentscope.service.multi_modality.openai_services.openai_text_to_image", false]], "openaichatwrapper (class in agentscope.models)": [[20, "agentscope.models.OpenAIChatWrapper", false]], "openaichatwrapper (class in agentscope.models.openai_model)": [[26, "agentscope.models.openai_model.OpenAIChatWrapper", false]], "openaidallewrapper (class in agentscope.models)": [[20, "agentscope.models.OpenAIDALLEWrapper", false]], "openaidallewrapper (class in agentscope.models.openai_model)": [[26, "agentscope.models.openai_model.OpenAIDALLEWrapper", false]], "openaiembeddingwrapper (class in agentscope.models)": [[20, "agentscope.models.OpenAIEmbeddingWrapper", false]], "openaiembeddingwrapper (class in agentscope.models.openai_model)": [[26, "agentscope.models.openai_model.OpenAIEmbeddingWrapper", false]], "openaiwrapperbase (class in agentscope.models)": [[20, "agentscope.models.OpenAIWrapperBase", false]], "openaiwrapperbase (class in agentscope.models.openai_model)": [[26, "agentscope.models.openai_model.OpenAIWrapperBase", false]], "operator (class in agentscope.agents)": [[1, "agentscope.agents.Operator", false]], "operator (class in agentscope.agents.operator)": [[5, "agentscope.agents.operator.Operator", false]], "options (agentscope.models.ollama_model.ollamachatwrapper attribute)": [[25, "agentscope.models.ollama_model.OllamaChatWrapper.options", false]], "options (agentscope.models.ollama_model.ollamaembeddingwrapper attribute)": [[25, "agentscope.models.ollama_model.OllamaEmbeddingWrapper.options", false]], "options (agentscope.models.ollama_model.ollamagenerationwrapper attribute)": [[25, "agentscope.models.ollama_model.OllamaGenerationWrapper.options", false]], "options (agentscope.models.ollama_model.ollamawrapperbase attribute)": [[25, "agentscope.models.ollama_model.OllamaWrapperBase.options", false]], "origin_x (agentscope.service.browser.web_browser.webelementinfo attribute)": [[56, "agentscope.service.browser.web_browser.WebElementInfo.origin_x", false]], "origin_x (agentscope.service.webelementinfo attribute)": [[54, "agentscope.service.WebElementInfo.origin_x", false]], "origin_y (agentscope.service.browser.web_browser.webelementinfo attribute)": [[56, "agentscope.service.browser.web_browser.WebElementInfo.origin_y", false]], "origin_y (agentscope.service.webelementinfo attribute)": [[54, "agentscope.service.WebElementInfo.origin_y", false]], "original_func (agentscope.service.service_toolkit.servicefunction attribute)": [[73, "agentscope.service.service_toolkit.ServiceFunction.original_func", false]], "page_html (agentscope.service.browser.web_browser.webbrowser property)": [[56, "agentscope.service.browser.web_browser.WebBrowser.page_html", false]], "page_html (agentscope.service.webbrowser property)": [[54, "agentscope.service.WebBrowser.page_html", false]], "page_markdown (agentscope.service.browser.web_browser.webbrowser property)": [[56, "agentscope.service.browser.web_browser.WebBrowser.page_markdown", false]], "page_markdown (agentscope.service.webbrowser property)": [[54, "agentscope.service.WebBrowser.page_markdown", false]], "page_screenshot (agentscope.service.browser.web_browser.webbrowser property)": [[56, "agentscope.service.browser.web_browser.WebBrowser.page_screenshot", false]], "page_screenshot (agentscope.service.webbrowser property)": [[54, "agentscope.service.WebBrowser.page_screenshot", false]], "page_title (agentscope.service.browser.web_browser.webbrowser property)": [[56, "agentscope.service.browser.web_browser.WebBrowser.page_title", false]], "page_title (agentscope.service.webbrowser property)": [[54, "agentscope.service.WebBrowser.page_title", false]], "parse() (agentscope.parsers.code_block_parser.markdowncodeblockparser method)": [[33, "agentscope.parsers.code_block_parser.MarkdownCodeBlockParser.parse", false]], "parse() (agentscope.parsers.json_object_parser.markdownjsondictparser method)": [[34, "agentscope.parsers.json_object_parser.MarkdownJsonDictParser.parse", false]], "parse() (agentscope.parsers.json_object_parser.markdownjsonobjectparser method)": [[34, "agentscope.parsers.json_object_parser.MarkdownJsonObjectParser.parse", false]], "parse() (agentscope.parsers.markdowncodeblockparser method)": [[32, "agentscope.parsers.MarkdownCodeBlockParser.parse", false]], "parse() (agentscope.parsers.markdownjsondictparser method)": [[32, "agentscope.parsers.MarkdownJsonDictParser.parse", false]], "parse() (agentscope.parsers.markdownjsonobjectparser method)": [[32, "agentscope.parsers.MarkdownJsonObjectParser.parse", false]], "parse() (agentscope.parsers.multitaggedcontentparser method)": [[32, "agentscope.parsers.MultiTaggedContentParser.parse", false]], "parse() (agentscope.parsers.parser_base.parserbase method)": [[35, "agentscope.parsers.parser_base.ParserBase.parse", false]], "parse() (agentscope.parsers.parserbase method)": [[32, "agentscope.parsers.ParserBase.parse", false]], "parse() (agentscope.parsers.regex_tagged_content_parser.regextaggedcontentparser method)": [[36, "agentscope.parsers.regex_tagged_content_parser.RegexTaggedContentParser.parse", false]], "parse() (agentscope.parsers.regextaggedcontentparser method)": [[32, "agentscope.parsers.RegexTaggedContentParser.parse", false]], "parse() (agentscope.parsers.tagged_content_parser.multitaggedcontentparser method)": [[37, "agentscope.parsers.tagged_content_parser.MultiTaggedContentParser.parse", false]], "parse_and_call_func() (agentscope.service.service_toolkit.servicetoolkit method)": [[73, "agentscope.service.service_toolkit.ServiceToolkit.parse_and_call_func", false]], "parse_and_call_func() (agentscope.service.servicetoolkit method)": [[54, "agentscope.service.ServiceToolkit.parse_and_call_func", false]], "parse_html_to_text() (in module agentscope.service)": [[54, "agentscope.service.parse_html_to_text", false]], "parse_html_to_text() (in module agentscope.service.web.web_digest)": [[86, "agentscope.service.web.web_digest.parse_html_to_text", false]], "parse_json (agentscope.parsers.tagged_content_parser.taggedcontent attribute)": [[37, "agentscope.parsers.tagged_content_parser.TaggedContent.parse_json", false]], "parse_json (agentscope.parsers.taggedcontent attribute)": [[32, "agentscope.parsers.TaggedContent.parse_json", false]], "parserbase (class in agentscope.parsers)": [[32, "agentscope.parsers.ParserBase", false]], "parserbase (class in agentscope.parsers.parser_base)": [[35, "agentscope.parsers.parser_base.ParserBase", false]], "path_db (agentscope.manager.monitormanager property)": [[13, "agentscope.manager.MonitorManager.path_db", false]], "pipeline (agentscope.web.workstation.workflow_node.workflownodetype attribute)": [[103, "agentscope.web.workstation.workflow_node.WorkflowNodeType.PIPELINE", false]], "pipelinebase (class in agentscope.pipelines)": [[38, "agentscope.pipelines.PipelineBase", false]], "pipelinebase (class in agentscope.pipelines.pipeline)": [[40, "agentscope.pipelines.pipeline.PipelineBase", false]], "placeholder() (in module agentscope.pipelines.functional)": [[39, "agentscope.pipelines.functional.placeholder", false]], "placeholdermessage (class in agentscope.message)": [[17, "agentscope.message.PlaceholderMessage", false]], "placeholdermessage (class in agentscope.message.placeholder)": [[19, "agentscope.message.placeholder.PlaceholderMessage", false]], "placeholdernode (class in agentscope.web.workstation.workflow_node)": [[103, "agentscope.web.workstation.workflow_node.PlaceHolderNode", false]], "port (agentscope.exception.agentservererror attribute)": [[11, "agentscope.exception.AgentServerError.port", false]], "post_processing() (agentscope.rag.knowledge method)": [[42, "agentscope.rag.Knowledge.post_processing", false]], "post_processing() (agentscope.rag.knowledge.knowledge method)": [[43, "agentscope.rag.knowledge.Knowledge.post_processing", false]], "postapichatwrapper (class in agentscope.models)": [[20, "agentscope.models.PostAPIChatWrapper", false]], "postapichatwrapper (class in agentscope.models.post_model)": [[27, "agentscope.models.post_model.PostAPIChatWrapper", false]], "postapidallewrapper (class in agentscope.models.post_model)": [[27, "agentscope.models.post_model.PostAPIDALLEWrapper", false]], "postapiembeddingwrapper (class in agentscope.models.post_model)": [[27, "agentscope.models.post_model.PostAPIEmbeddingWrapper", false]], "postapimodelwrapperbase (class in agentscope.models)": [[20, "agentscope.models.PostAPIModelWrapperBase", false]], "postapimodelwrapperbase (class in agentscope.models.post_model)": [[27, "agentscope.models.post_model.PostAPIModelWrapperBase", false]], "print_llm_usage() (agentscope.manager.monitormanager method)": [[13, "agentscope.manager.MonitorManager.print_llm_usage", false]], "print_llm_usage() (in module agentscope)": [[0, "agentscope.print_llm_usage", false]], "processed_func (agentscope.service.service_toolkit.servicefunction attribute)": [[73, "agentscope.service.service_toolkit.ServiceFunction.processed_func", false]], "pythonservicenode (class in agentscope.web.workstation.workflow_node)": [[103, "agentscope.web.workstation.workflow_node.PythonServiceNode", false]], "query_mongodb() (in module agentscope.service)": [[54, "agentscope.service.query_mongodb", false]], "query_mongodb() (in module agentscope.service.sql_query.mongodb)": [[75, "agentscope.service.sql_query.mongodb.query_mongodb", false]], "query_mysql() (in module agentscope.service)": [[54, "agentscope.service.query_mysql", false]], "query_mysql() (in module agentscope.service.sql_query.mysql)": [[76, "agentscope.service.sql_query.mysql.query_mysql", false]], "query_sqlite() (in module agentscope.service)": [[54, "agentscope.service.query_sqlite", false]], "query_sqlite() (in module agentscope.service.sql_query.sqlite)": [[77, "agentscope.service.sql_query.sqlite.query_sqlite", false]], "quotaexceedederror": [[11, "agentscope.exception.QuotaExceededError", false]], "raw_response (agentscope.exception.responseparsingerror attribute)": [[11, "agentscope.exception.ResponseParsingError.raw_response", false]], "reactagent (class in agentscope.agents)": [[1, "agentscope.agents.ReActAgent", false]], "reactagent (class in agentscope.agents.react_agent)": [[7, "agentscope.agents.react_agent.ReActAgent", false]], "reactagentnode (class in agentscope.web.workstation.workflow_node)": [[103, "agentscope.web.workstation.workflow_node.ReActAgentNode", false]], "read_json_file() (in module agentscope.service)": [[54, "agentscope.service.read_json_file", false]], "read_json_file() (in module agentscope.service.file.json)": [[63, "agentscope.service.file.json.read_json_file", false]], "read_text_file() (in module agentscope.service)": [[54, "agentscope.service.read_text_file", false]], "read_text_file() (in module agentscope.service.file.text)": [[64, "agentscope.service.file.text.read_text_file", false]], "readtextservicenode (class in agentscope.web.workstation.workflow_node)": [[103, "agentscope.web.workstation.workflow_node.ReadTextServiceNode", false]], "refresh_index() (agentscope.rag.llama_index_knowledge.llamaindexknowledge method)": [[45, "agentscope.rag.llama_index_knowledge.LlamaIndexKnowledge.refresh_index", false]], "regextaggedcontentparser (class in agentscope.parsers)": [[32, "agentscope.parsers.RegexTaggedContentParser", false]], "regextaggedcontentparser (class in agentscope.parsers.regex_tagged_content_parser)": [[36, "agentscope.parsers.regex_tagged_content_parser.RegexTaggedContentParser", false]], "register_agent_class() (agentscope.agents.agent.agentbase class method)": [[2, "agentscope.agents.agent.AgentBase.register_agent_class", false]], "register_agent_class() (agentscope.agents.agentbase class method)": [[1, "agentscope.agents.AgentBase.register_agent_class", false]], "remove_duplicates_from_end() (in module agentscope.web.workstation.workflow_dag)": [[102, "agentscope.web.workstation.workflow_dag.remove_duplicates_from_end", false]], "remove_interactive_marks() (agentscope.service.browser.web_browser.webbrowser method)": [[56, "agentscope.service.browser.web_browser.WebBrowser.remove_interactive_marks", false]], "remove_interactive_marks() (agentscope.service.webbrowser method)": [[54, "agentscope.service.WebBrowser.remove_interactive_marks", false]], "reply() (agentscope.agents.agent.agentbase method)": [[2, "agentscope.agents.agent.AgentBase.reply", false]], "reply() (agentscope.agents.agentbase method)": [[1, "agentscope.agents.AgentBase.reply", false]], "reply() (agentscope.agents.dialog_agent.dialogagent method)": [[3, "agentscope.agents.dialog_agent.DialogAgent.reply", false]], "reply() (agentscope.agents.dialogagent method)": [[1, "agentscope.agents.DialogAgent.reply", false]], "reply() (agentscope.agents.dict_dialog_agent.dictdialogagent method)": [[4, "agentscope.agents.dict_dialog_agent.DictDialogAgent.reply", false]], "reply() (agentscope.agents.dictdialogagent method)": [[1, "agentscope.agents.DictDialogAgent.reply", false]], "reply() (agentscope.agents.llamaindexagent method)": [[1, "agentscope.agents.LlamaIndexAgent.reply", false]], "reply() (agentscope.agents.rag_agent.llamaindexagent method)": [[6, "agentscope.agents.rag_agent.LlamaIndexAgent.reply", false]], "reply() (agentscope.agents.react_agent.reactagent method)": [[7, "agentscope.agents.react_agent.ReActAgent.reply", false]], "reply() (agentscope.agents.reactagent method)": [[1, "agentscope.agents.ReActAgent.reply", false]], "reply() (agentscope.agents.rpc_agent.rpcagent method)": [[8, "agentscope.agents.rpc_agent.RpcAgent.reply", false]], "reply() (agentscope.agents.user_agent.useragent method)": [[9, "agentscope.agents.user_agent.UserAgent.reply", false]], "reply() (agentscope.agents.useragent method)": [[1, "agentscope.agents.UserAgent.reply", false]], "require_args (agentscope.service.service_toolkit.servicefunction attribute)": [[73, "agentscope.service.service_toolkit.ServiceFunction.require_args", false]], "required_keys (agentscope.parsers.json_object_parser.markdownjsondictparser attribute)": [[34, "agentscope.parsers.json_object_parser.MarkdownJsonDictParser.required_keys", false]], "required_keys (agentscope.parsers.markdownjsondictparser attribute)": [[32, "agentscope.parsers.MarkdownJsonDictParser.required_keys", false]], "requiredfieldnotfounderror": [[11, "agentscope.exception.RequiredFieldNotFoundError", false]], "reset_audience() (agentscope.agents.agent.agentbase method)": [[2, "agentscope.agents.agent.AgentBase.reset_audience", false]], "reset_audience() (agentscope.agents.agentbase method)": [[1, "agentscope.agents.AgentBase.reset_audience", false]], "reset_glb_var() (in module agentscope.web.gradio.studio)": [[98, "agentscope.web.gradio.studio.reset_glb_var", false]], "reset_notebook() (agentscope.service.execute_code.exec_notebook.notebookexecutor method)": [[58, "agentscope.service.execute_code.exec_notebook.NoteBookExecutor.reset_notebook", false]], "reset_notebook() (agentscope.service.notebookexecutor method)": [[54, "agentscope.service.NoteBookExecutor.reset_notebook", false]], "resetexception": [[99, "agentscope.web.gradio.utils.ResetException", false]], "responseformat (class in agentscope.constants)": [[10, "agentscope.constants.ResponseFormat", false]], "responseparsingerror": [[11, "agentscope.exception.ResponseParsingError", false]], "responsestub (class in agentscope.rpc)": [[46, "agentscope.rpc.ResponseStub", false]], "responsestub (class in agentscope.rpc.rpc_agent_client)": [[47, "agentscope.rpc.rpc_agent_client.ResponseStub", false]], "retrieve() (agentscope.rag.knowledge method)": [[42, "agentscope.rag.Knowledge.retrieve", false]], "retrieve() (agentscope.rag.knowledge.knowledge method)": [[43, "agentscope.rag.knowledge.Knowledge.retrieve", false]], "retrieve() (agentscope.rag.llama_index_knowledge.llamaindexknowledge method)": [[45, "agentscope.rag.llama_index_knowledge.LlamaIndexKnowledge.retrieve", false]], "retrieve_by_embedding() (agentscope.memory.temporary_memory.temporarymemory method)": [[16, "agentscope.memory.temporary_memory.TemporaryMemory.retrieve_by_embedding", false]], "retrieve_by_embedding() (agentscope.memory.temporarymemory method)": [[14, "agentscope.memory.TemporaryMemory.retrieve_by_embedding", false]], "retrieve_from_list() (in module agentscope.service)": [[54, "agentscope.service.retrieve_from_list", false]], "retrieve_from_list() (in module agentscope.service.retrieval.retrieval_from_list)": [[69, "agentscope.service.retrieval.retrieval_from_list.retrieve_from_list", false]], "rm_audience() (agentscope.agents.agent.agentbase method)": [[2, "agentscope.agents.agent.AgentBase.rm_audience", false]], "rm_audience() (agentscope.agents.agentbase method)": [[1, "agentscope.agents.AgentBase.rm_audience", false]], "rm_database() (agentscope.manager.monitormanager method)": [[13, "agentscope.manager.MonitorManager.rm_database", false]], "role (agentscope.message.msg property)": [[17, "agentscope.message.Msg.role", false]], "role (agentscope.message.msg.msg property)": [[18, "agentscope.message.msg.Msg.role", false]], "role (agentscope.message.placeholder.placeholdermessage property)": [[19, "agentscope.message.placeholder.PlaceholderMessage.role", false]], "role (agentscope.message.placeholdermessage property)": [[17, "agentscope.message.PlaceholderMessage.role", false]], "rpcagent (class in agentscope.agents.rpc_agent)": [[8, "agentscope.agents.rpc_agent.RpcAgent", false]], "rpcagent (class in agentscope.rpc.rpc_agent_pb2_grpc)": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgent", false]], "rpcagentclient (class in agentscope.rpc)": [[46, "agentscope.rpc.RpcAgentClient", false]], "rpcagentclient (class in agentscope.rpc.rpc_agent_client)": [[47, "agentscope.rpc.rpc_agent_client.RpcAgentClient", false]], "rpcagentserverlauncher (class in agentscope.server)": [[51, "agentscope.server.RpcAgentServerLauncher", false]], "rpcagentserverlauncher (class in agentscope.server.launcher)": [[52, "agentscope.server.launcher.RpcAgentServerLauncher", false]], "rpcagentservicer (class in agentscope.rpc)": [[46, "agentscope.rpc.RpcAgentServicer", false]], "rpcagentservicer (class in agentscope.rpc.rpc_agent_pb2_grpc)": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgentServicer", false]], "rpcagentstub (class in agentscope.rpc)": [[46, "agentscope.rpc.RpcAgentStub", false]], "rpcagentstub (class in agentscope.rpc.rpc_agent_pb2_grpc)": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgentStub", false]], "rpcmsg (class in agentscope.rpc)": [[46, "agentscope.rpc.RpcMsg", false]], "run() (agentscope.web.workstation.workflow_dag.asdigraph method)": [[102, "agentscope.web.workstation.workflow_dag.ASDiGraph.run", false]], "run_app() (in module agentscope.web.gradio.studio)": [[98, "agentscope.web.gradio.studio.run_app", false]], "run_code_on_notebook() (agentscope.service.execute_code.exec_notebook.notebookexecutor method)": [[58, "agentscope.service.execute_code.exec_notebook.NoteBookExecutor.run_code_on_notebook", false]], "run_code_on_notebook() (agentscope.service.notebookexecutor method)": [[54, "agentscope.service.NoteBookExecutor.run_code_on_notebook", false]], "sanitize_node_data() (in module agentscope.web.workstation.workflow_dag)": [[102, "agentscope.web.workstation.workflow_dag.sanitize_node_data", false]], "save_api_invocation() (agentscope.manager.filemanager method)": [[13, "agentscope.manager.FileManager.save_api_invocation", false]], "save_file() (agentscope.manager.filemanager method)": [[13, "agentscope.manager.FileManager.save_file", false]], "save_image() (agentscope.manager.filemanager method)": [[13, "agentscope.manager.FileManager.save_image", false]], "save_python_code() (agentscope.manager.filemanager method)": [[13, "agentscope.manager.FileManager.save_python_code", false]], "save_runtime_information() (agentscope.manager.filemanager method)": [[13, "agentscope.manager.FileManager.save_runtime_information", false]], "send_audio() (in module agentscope.web.gradio.studio)": [[98, "agentscope.web.gradio.studio.send_audio", false]], "send_image() (in module agentscope.web.gradio.studio)": [[98, "agentscope.web.gradio.studio.send_image", false]], "send_message() (in module agentscope.web.gradio.studio)": [[98, "agentscope.web.gradio.studio.send_message", false]], "send_msg() (in module agentscope.web.gradio.utils)": [[99, "agentscope.web.gradio.utils.send_msg", false]], "send_player_input() (in module agentscope.web.gradio.utils)": [[99, "agentscope.web.gradio.utils.send_player_input", false]], "send_reset_msg() (in module agentscope.web.gradio.utils)": [[99, "agentscope.web.gradio.utils.send_reset_msg", false]], "sequentialpipeline (class in agentscope.pipelines)": [[38, "agentscope.pipelines.SequentialPipeline", false]], "sequentialpipeline (class in agentscope.pipelines.pipeline)": [[40, "agentscope.pipelines.pipeline.SequentialPipeline", false]], "sequentialpipeline() (in module agentscope.pipelines)": [[38, "agentscope.pipelines.sequentialpipeline", false]], "sequentialpipeline() (in module agentscope.pipelines.functional)": [[39, "agentscope.pipelines.functional.sequentialpipeline", false]], "sequentialpipelinenode (class in agentscope.web.workstation.workflow_node)": [[103, "agentscope.web.workstation.workflow_node.SequentialPipelineNode", false]], "serialize() (in module agentscope.serialize)": [[50, "agentscope.serialize.serialize", false]], "service (agentscope.web.workstation.workflow_node.workflownodetype attribute)": [[103, "agentscope.web.workstation.workflow_node.WorkflowNodeType.SERVICE", false]], "service_funcs (agentscope.service.service_toolkit.servicetoolkit attribute)": [[73, "agentscope.service.service_toolkit.ServiceToolkit.service_funcs", false]], "service_funcs (agentscope.service.servicetoolkit attribute)": [[54, "agentscope.service.ServiceToolkit.service_funcs", false]], "serviceexecstatus (class in agentscope.service)": [[54, "agentscope.service.ServiceExecStatus", false]], "serviceexecstatus (class in agentscope.service.service_status)": [[72, "agentscope.service.service_status.ServiceExecStatus", false]], "servicefactory (class in agentscope.service)": [[54, "agentscope.service.ServiceFactory", false]], "servicefactory (class in agentscope.service.service_toolkit)": [[73, "agentscope.service.service_toolkit.ServiceFactory", false]], "servicefunction (class in agentscope.service.service_toolkit)": [[73, "agentscope.service.service_toolkit.ServiceFunction", false]], "serviceresponse (class in agentscope.service)": [[54, "agentscope.service.ServiceResponse", false]], "serviceresponse (class in agentscope.service.service_response)": [[71, "agentscope.service.service_response.ServiceResponse", false]], "servicetoolkit (class in agentscope.service)": [[54, "agentscope.service.ServiceToolkit", false]], "servicetoolkit (class in agentscope.service.service_toolkit)": [[73, "agentscope.service.service_toolkit.ServiceToolkit", false]], "set_interactive_marks() (agentscope.service.browser.web_browser.webbrowser method)": [[56, "agentscope.service.browser.web_browser.WebBrowser.set_interactive_marks", false]], "set_interactive_marks() (agentscope.service.webbrowser method)": [[54, "agentscope.service.WebBrowser.set_interactive_marks", false]], "set_model_configs() (agentscope.rpc.rpc_agent_client.rpcagentclient method)": [[47, "agentscope.rpc.rpc_agent_client.RpcAgentClient.set_model_configs", false]], "set_model_configs() (agentscope.rpc.rpc_agent_pb2_grpc.rpcagent static method)": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgent.set_model_configs", false]], "set_model_configs() (agentscope.rpc.rpc_agent_pb2_grpc.rpcagentservicer method)": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgentServicer.set_model_configs", false]], "set_model_configs() (agentscope.rpc.rpcagentclient method)": [[46, "agentscope.rpc.RpcAgentClient.set_model_configs", false]], "set_model_configs() (agentscope.rpc.rpcagentservicer method)": [[46, "agentscope.rpc.RpcAgentServicer.set_model_configs", false]], "set_model_configs() (agentscope.server.agentserverservicer method)": [[51, "agentscope.server.AgentServerServicer.set_model_configs", false]], "set_model_configs() (agentscope.server.servicer.agentserverservicer method)": [[53, "agentscope.server.servicer.AgentServerServicer.set_model_configs", false]], "set_parser() (agentscope.agents.dict_dialog_agent.dictdialogagent method)": [[4, "agentscope.agents.dict_dialog_agent.DictDialogAgent.set_parser", false]], "set_parser() (agentscope.agents.dictdialogagent method)": [[1, "agentscope.agents.DictDialogAgent.set_parser", false]], "set_response() (agentscope.rpc.responsestub method)": [[46, "agentscope.rpc.ResponseStub.set_response", false]], "set_response() (agentscope.rpc.rpc_agent_client.responsestub method)": [[47, "agentscope.rpc.rpc_agent_client.ResponseStub.set_response", false]], "setup_logger() (in module agentscope.logging)": [[12, "agentscope.logging.setup_logger", false]], "show_image_tokens() (agentscope.manager.monitormanager method)": [[13, "agentscope.manager.MonitorManager.show_image_tokens", false]], "show_text_and_embedding_tokens() (agentscope.manager.monitormanager method)": [[13, "agentscope.manager.MonitorManager.show_text_and_embedding_tokens", false]], "shrinkpolicy (class in agentscope.constants)": [[10, "agentscope.constants.ShrinkPolicy", false]], "shutdown() (agentscope.server.launcher.rpcagentserverlauncher method)": [[52, "agentscope.server.launcher.RpcAgentServerLauncher.shutdown", false]], "shutdown() (agentscope.server.rpcagentserverlauncher method)": [[51, "agentscope.server.RpcAgentServerLauncher.shutdown", false]], "size() (agentscope.memory.memory.memorybase method)": [[15, "agentscope.memory.memory.MemoryBase.size", false]], "size() (agentscope.memory.memorybase method)": [[14, "agentscope.memory.MemoryBase.size", false]], "size() (agentscope.memory.temporary_memory.temporarymemory method)": [[16, "agentscope.memory.temporary_memory.TemporaryMemory.size", false]], "size() (agentscope.memory.temporarymemory method)": [[14, "agentscope.memory.TemporaryMemory.size", false]], "speak() (agentscope.agents.agent.agentbase method)": [[2, "agentscope.agents.agent.AgentBase.speak", false]], "speak() (agentscope.agents.agentbase method)": [[1, "agentscope.agents.AgentBase.speak", false]], "speak() (agentscope.agents.user_agent.useragent method)": [[9, "agentscope.agents.user_agent.UserAgent.speak", false]], "speak() (agentscope.agents.useragent method)": [[1, "agentscope.agents.UserAgent.speak", false]], "start_workflow() (in module agentscope.web.workstation.workflow)": [[101, "agentscope.web.workstation.workflow.start_workflow", false]], "state_dict() (agentscope.manager.asmanager method)": [[13, "agentscope.manager.ASManager.state_dict", false]], "state_dict() (agentscope.manager.filemanager method)": [[13, "agentscope.manager.FileManager.state_dict", false]], "state_dict() (agentscope.manager.modelmanager method)": [[13, "agentscope.manager.ModelManager.state_dict", false]], "state_dict() (agentscope.manager.monitormanager method)": [[13, "agentscope.manager.MonitorManager.state_dict", false]], "state_dict() (in module agentscope)": [[0, "agentscope.state_dict", false]], "static_format() (agentscope.models.openai_model.openaichatwrapper static method)": [[26, "agentscope.models.openai_model.OpenAIChatWrapper.static_format", false]], "static_format() (agentscope.models.openaichatwrapper static method)": [[20, "agentscope.models.OpenAIChatWrapper.static_format", false]], "stop() (agentscope.agents.rpc_agent.rpcagent method)": [[8, "agentscope.agents.rpc_agent.RpcAgent.stop", false]], "stop() (agentscope.rpc.rpc_agent_client.rpcagentclient method)": [[47, "agentscope.rpc.rpc_agent_client.RpcAgentClient.stop", false]], "stop() (agentscope.rpc.rpc_agent_pb2_grpc.rpcagent static method)": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgent.stop", false]], "stop() (agentscope.rpc.rpc_agent_pb2_grpc.rpcagentservicer method)": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgentServicer.stop", false]], "stop() (agentscope.rpc.rpcagentclient method)": [[46, "agentscope.rpc.RpcAgentClient.stop", false]], "stop() (agentscope.rpc.rpcagentservicer method)": [[46, "agentscope.rpc.RpcAgentServicer.stop", false]], "stop() (agentscope.server.agentserverservicer method)": [[51, "agentscope.server.AgentServerServicer.stop", false]], "stop() (agentscope.server.servicer.agentserverservicer method)": [[53, "agentscope.server.servicer.AgentServerServicer.stop", false]], "stream (agentscope.models.modelresponse property)": [[20, "agentscope.models.ModelResponse.stream", false]], "stream (agentscope.models.response.modelresponse property)": [[28, "agentscope.models.response.ModelResponse.stream", false]], "studioerror": [[11, "agentscope.exception.StudioError", false]], "studioregistererror": [[11, "agentscope.exception.StudioRegisterError", false]], "substrings_in_vision_models_names (agentscope.models.openai_model.openaichatwrapper attribute)": [[26, "agentscope.models.openai_model.OpenAIChatWrapper.substrings_in_vision_models_names", false]], "substrings_in_vision_models_names (agentscope.models.openaichatwrapper attribute)": [[20, "agentscope.models.OpenAIChatWrapper.substrings_in_vision_models_names", false]], "success (agentscope.service.service_status.serviceexecstatus attribute)": [[72, "agentscope.service.service_status.ServiceExecStatus.SUCCESS", false]], "success (agentscope.service.serviceexecstatus attribute)": [[54, "agentscope.service.ServiceExecStatus.SUCCESS", false]], "summarization() (in module agentscope.service)": [[54, "agentscope.service.summarization", false]], "summarization() (in module agentscope.service.text_processing.summarization)": [[79, "agentscope.service.text_processing.summarization.summarization", false]], "summarize (agentscope.constants.shrinkpolicy attribute)": [[10, "agentscope.constants.ShrinkPolicy.SUMMARIZE", false]], "switchpipeline (class in agentscope.pipelines)": [[38, "agentscope.pipelines.SwitchPipeline", false]], "switchpipeline (class in agentscope.pipelines.pipeline)": [[40, "agentscope.pipelines.pipeline.SwitchPipeline", false]], "switchpipeline() (in module agentscope.pipelines)": [[38, "agentscope.pipelines.switchpipeline", false]], "switchpipeline() (in module agentscope.pipelines.functional)": [[39, "agentscope.pipelines.functional.switchpipeline", false]], "switchpipelinenode (class in agentscope.web.workstation.workflow_node)": [[103, "agentscope.web.workstation.workflow_node.SwitchPipelineNode", false]], "sys_python_guard() (in module agentscope.service.execute_code.exec_python)": [[59, "agentscope.service.execute_code.exec_python.sys_python_guard", false]], "systempromptcomparer (class in agentscope.prompt)": [[41, "agentscope.prompt.SystemPromptComparer", false]], "systempromptgeneratorbase (class in agentscope.prompt)": [[41, "agentscope.prompt.SystemPromptGeneratorBase", false]], "systempromptoptimizer (class in agentscope.prompt)": [[41, "agentscope.prompt.SystemPromptOptimizer", false]], "tag_begin (agentscope.parsers.code_block_parser.markdowncodeblockparser attribute)": [[33, "agentscope.parsers.code_block_parser.MarkdownCodeBlockParser.tag_begin", false]], "tag_begin (agentscope.parsers.json_object_parser.markdownjsondictparser attribute)": [[34, "agentscope.parsers.json_object_parser.MarkdownJsonDictParser.tag_begin", false]], "tag_begin (agentscope.parsers.json_object_parser.markdownjsonobjectparser attribute)": [[34, "agentscope.parsers.json_object_parser.MarkdownJsonObjectParser.tag_begin", false]], "tag_begin (agentscope.parsers.markdowncodeblockparser attribute)": [[32, "agentscope.parsers.MarkdownCodeBlockParser.tag_begin", false]], "tag_begin (agentscope.parsers.markdownjsondictparser attribute)": [[32, "agentscope.parsers.MarkdownJsonDictParser.tag_begin", false]], "tag_begin (agentscope.parsers.markdownjsonobjectparser attribute)": [[32, "agentscope.parsers.MarkdownJsonObjectParser.tag_begin", false]], "tag_begin (agentscope.parsers.tagged_content_parser.taggedcontent attribute)": [[37, "agentscope.parsers.tagged_content_parser.TaggedContent.tag_begin", false]], "tag_begin (agentscope.parsers.taggedcontent attribute)": [[32, "agentscope.parsers.TaggedContent.tag_begin", false]], "tag_end (agentscope.parsers.code_block_parser.markdowncodeblockparser attribute)": [[33, "agentscope.parsers.code_block_parser.MarkdownCodeBlockParser.tag_end", false]], "tag_end (agentscope.parsers.json_object_parser.markdownjsondictparser attribute)": [[34, "agentscope.parsers.json_object_parser.MarkdownJsonDictParser.tag_end", false]], "tag_end (agentscope.parsers.json_object_parser.markdownjsonobjectparser attribute)": [[34, "agentscope.parsers.json_object_parser.MarkdownJsonObjectParser.tag_end", false]], "tag_end (agentscope.parsers.markdowncodeblockparser attribute)": [[32, "agentscope.parsers.MarkdownCodeBlockParser.tag_end", false]], "tag_end (agentscope.parsers.markdownjsondictparser attribute)": [[32, "agentscope.parsers.MarkdownJsonDictParser.tag_end", false]], "tag_end (agentscope.parsers.markdownjsonobjectparser attribute)": [[32, "agentscope.parsers.MarkdownJsonObjectParser.tag_end", false]], "tag_end (agentscope.parsers.tagged_content_parser.taggedcontent attribute)": [[37, "agentscope.parsers.tagged_content_parser.TaggedContent.tag_end", false]], "tag_end (agentscope.parsers.taggedcontent attribute)": [[32, "agentscope.parsers.TaggedContent.tag_end", false]], "tag_name (agentscope.service.browser.web_browser.webelementinfo attribute)": [[56, "agentscope.service.browser.web_browser.WebElementInfo.tag_name", false]], "tag_name (agentscope.service.webelementinfo attribute)": [[54, "agentscope.service.WebElementInfo.tag_name", false]], "taggedcontent (class in agentscope.parsers)": [[32, "agentscope.parsers.TaggedContent", false]], "taggedcontent (class in agentscope.parsers.tagged_content_parser)": [[37, "agentscope.parsers.tagged_content_parser.TaggedContent", false]], "tagnotfounderror": [[11, "agentscope.exception.TagNotFoundError", false]], "temporarymemory (class in agentscope.memory)": [[14, "agentscope.memory.TemporaryMemory", false]], "temporarymemory (class in agentscope.memory.temporary_memory)": [[16, "agentscope.memory.temporary_memory.TemporaryMemory", false]], "text (agentscope.models.modelresponse property)": [[20, "agentscope.models.ModelResponse.text", false]], "text (agentscope.models.response.modelresponse property)": [[28, "agentscope.models.response.ModelResponse.text", false]], "timer() (in module agentscope.utils.common)": [[93, "agentscope.utils.common.timer", false]], "timestamp (agentscope.message.msg property)": [[17, "agentscope.message.Msg.timestamp", false]], "timestamp (agentscope.message.msg.msg property)": [[18, "agentscope.message.msg.Msg.timestamp", false]], "timestamp (agentscope.message.placeholder.placeholdermessage property)": [[19, "agentscope.message.placeholder.PlaceholderMessage.timestamp", false]], "timestamp (agentscope.message.placeholdermessage property)": [[17, "agentscope.message.PlaceholderMessage.timestamp", false]], "to_content() (agentscope.parsers.parser_base.dictfiltermixin method)": [[35, "agentscope.parsers.parser_base.DictFilterMixin.to_content", false]], "to_dict() (agentscope.message.msg method)": [[17, "agentscope.message.Msg.to_dict", false]], "to_dict() (agentscope.message.msg.msg method)": [[18, "agentscope.message.msg.Msg.to_dict", false]], "to_dict() (agentscope.message.placeholder.placeholdermessage method)": [[19, "agentscope.message.placeholder.PlaceholderMessage.to_dict", false]], "to_dict() (agentscope.message.placeholdermessage method)": [[17, "agentscope.message.PlaceholderMessage.to_dict", false]], "to_dist() (agentscope.agents.agent.agentbase method)": [[2, "agentscope.agents.agent.AgentBase.to_dist", false]], "to_dist() (agentscope.agents.agentbase method)": [[1, "agentscope.agents.AgentBase.to_dist", false]], "to_memory() (agentscope.parsers.parser_base.dictfiltermixin method)": [[35, "agentscope.parsers.parser_base.DictFilterMixin.to_memory", false]], "to_metadata() (agentscope.parsers.parser_base.dictfiltermixin method)": [[35, "agentscope.parsers.parser_base.DictFilterMixin.to_metadata", false]], "to_openai_dict() (in module agentscope.utils.common)": [[93, "agentscope.utils.common.to_openai_dict", false]], "tools_calling_format (agentscope.service.service_toolkit.servicetoolkit property)": [[73, "agentscope.service.service_toolkit.ServiceToolkit.tools_calling_format", false]], "tools_calling_format (agentscope.service.servicetoolkit property)": [[54, "agentscope.service.ServiceToolkit.tools_calling_format", false]], "tools_instruction (agentscope.service.service_toolkit.servicetoolkit property)": [[73, "agentscope.service.service_toolkit.ServiceToolkit.tools_instruction", false]], "tools_instruction (agentscope.service.servicetoolkit property)": [[54, "agentscope.service.ServiceToolkit.tools_instruction", false]], "tripadvisor_search() (in module agentscope.service)": [[54, "agentscope.service.tripadvisor_search", false]], "tripadvisor_search() (in module agentscope.service.web.tripadvisor)": [[85, "agentscope.service.web.tripadvisor.tripadvisor_search", false]], "tripadvisor_search_location_details() (in module agentscope.service)": [[54, "agentscope.service.tripadvisor_search_location_details", false]], "tripadvisor_search_location_details() (in module agentscope.service.web.tripadvisor)": [[85, "agentscope.service.web.tripadvisor.tripadvisor_search_location_details", false]], "tripadvisor_search_location_photos() (in module agentscope.service)": [[54, "agentscope.service.tripadvisor_search_location_photos", false]], "tripadvisor_search_location_photos() (in module agentscope.service.web.tripadvisor)": [[85, "agentscope.service.web.tripadvisor.tripadvisor_search_location_photos", false]], "truncate (agentscope.constants.shrinkpolicy attribute)": [[10, "agentscope.constants.ShrinkPolicy.TRUNCATE", false]], "type (agentscope.service.browser.web_browser.webelementinfo attribute)": [[56, "agentscope.service.browser.web_browser.WebElementInfo.type", false]], "type (agentscope.service.webelementinfo attribute)": [[54, "agentscope.service.WebElementInfo.type", false]], "update_image_tokens() (agentscope.manager.monitormanager method)": [[13, "agentscope.manager.MonitorManager.update_image_tokens", false]], "update_placeholder() (agentscope.rpc.rpc_agent_client.rpcagentclient method)": [[47, "agentscope.rpc.rpc_agent_client.RpcAgentClient.update_placeholder", false]], "update_placeholder() (agentscope.rpc.rpc_agent_pb2_grpc.rpcagent static method)": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgent.update_placeholder", false]], "update_placeholder() (agentscope.rpc.rpc_agent_pb2_grpc.rpcagentservicer method)": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgentServicer.update_placeholder", false]], "update_placeholder() (agentscope.rpc.rpcagentclient method)": [[46, "agentscope.rpc.RpcAgentClient.update_placeholder", false]], "update_placeholder() (agentscope.rpc.rpcagentservicer method)": [[46, "agentscope.rpc.RpcAgentServicer.update_placeholder", false]], "update_placeholder() (agentscope.server.agentserverservicer method)": [[51, "agentscope.server.AgentServerServicer.update_placeholder", false]], "update_placeholder() (agentscope.server.servicer.agentserverservicer method)": [[53, "agentscope.server.servicer.AgentServerServicer.update_placeholder", false]], "update_text_and_embedding_tokens() (agentscope.manager.monitormanager method)": [[13, "agentscope.manager.MonitorManager.update_text_and_embedding_tokens", false]], "update_value() (agentscope.message.placeholder.placeholdermessage method)": [[19, "agentscope.message.placeholder.PlaceholderMessage.update_value", false]], "update_value() (agentscope.message.placeholdermessage method)": [[17, "agentscope.message.PlaceholderMessage.update_value", false]], "url (agentscope.message.msg property)": [[17, "agentscope.message.Msg.url", false]], "url (agentscope.message.msg.msg property)": [[18, "agentscope.message.msg.Msg.url", false]], "url (agentscope.message.placeholder.placeholdermessage property)": [[19, "agentscope.message.placeholder.PlaceholderMessage.url", false]], "url (agentscope.message.placeholdermessage property)": [[17, "agentscope.message.PlaceholderMessage.url", false]], "url (agentscope.service.browser.web_browser.webbrowser property)": [[56, "agentscope.service.browser.web_browser.WebBrowser.url", false]], "url (agentscope.service.webbrowser property)": [[54, "agentscope.service.WebBrowser.url", false]], "user_input() (in module agentscope.web.gradio.utils)": [[99, "agentscope.web.gradio.utils.user_input", false]], "useragent (class in agentscope.agents)": [[1, "agentscope.agents.UserAgent", false]], "useragent (class in agentscope.agents.user_agent)": [[9, "agentscope.agents.user_agent.UserAgent", false]], "useragentnode (class in agentscope.web.workstation.workflow_node)": [[103, "agentscope.web.workstation.workflow_node.UserAgentNode", false]], "wait_until_terminate() (agentscope.server.launcher.rpcagentserverlauncher method)": [[52, "agentscope.server.launcher.RpcAgentServerLauncher.wait_until_terminate", false]], "wait_until_terminate() (agentscope.server.rpcagentserverlauncher method)": [[51, "agentscope.server.RpcAgentServerLauncher.wait_until_terminate", false]], "webbrowser (class in agentscope.service)": [[54, "agentscope.service.WebBrowser", false]], "webbrowser (class in agentscope.service.browser.web_browser)": [[56, "agentscope.service.browser.web_browser.WebBrowser", false]], "webelementinfo (class in agentscope.service)": [[54, "agentscope.service.WebElementInfo", false]], "webelementinfo (class in agentscope.service.browser.web_browser)": [[56, "agentscope.service.browser.web_browser.WebElementInfo", false]], "whilelooppipeline (class in agentscope.pipelines)": [[38, "agentscope.pipelines.WhileLoopPipeline", false]], "whilelooppipeline (class in agentscope.pipelines.pipeline)": [[40, "agentscope.pipelines.pipeline.WhileLoopPipeline", false]], "whilelooppipeline() (in module agentscope.pipelines)": [[38, "agentscope.pipelines.whilelooppipeline", false]], "whilelooppipeline() (in module agentscope.pipelines.functional)": [[39, "agentscope.pipelines.functional.whilelooppipeline", false]], "whilelooppipelinenode (class in agentscope.web.workstation.workflow_node)": [[103, "agentscope.web.workstation.workflow_node.WhileLoopPipelineNode", false]], "width (agentscope.service.browser.web_browser.webelementinfo attribute)": [[56, "agentscope.service.browser.web_browser.WebElementInfo.width", false]], "width (agentscope.service.webelementinfo attribute)": [[54, "agentscope.service.WebElementInfo.width", false]], "wikipedia_search() (in module agentscope.service)": [[54, "agentscope.service.wikipedia_search", false]], "wikipedia_search() (in module agentscope.service.web.wikipedia)": [[87, "agentscope.service.web.wikipedia.wikipedia_search", false]], "wikipedia_search_categories() (in module agentscope.service)": [[54, "agentscope.service.wikipedia_search_categories", false]], "wikipedia_search_categories() (in module agentscope.service.web.wikipedia)": [[87, "agentscope.service.web.wikipedia.wikipedia_search_categories", false]], "workflownode (class in agentscope.web.workstation.workflow_node)": [[103, "agentscope.web.workstation.workflow_node.WorkflowNode", false]], "workflownodetype (class in agentscope.web.workstation.workflow_node)": [[103, "agentscope.web.workstation.workflow_node.WorkflowNodeType", false]], "write_json_file() (in module agentscope.service)": [[54, "agentscope.service.write_json_file", false]], "write_json_file() (in module agentscope.service.file.json)": [[63, "agentscope.service.file.json.write_json_file", false]], "write_text_file() (in module agentscope.service)": [[54, "agentscope.service.write_text_file", false]], "write_text_file() (in module agentscope.service.file.text)": [[64, "agentscope.service.file.text.write_text_file", false]], "writetextservicenode (class in agentscope.web.workstation.workflow_node)": [[103, "agentscope.web.workstation.workflow_node.WriteTextServiceNode", false]], "yichatwrapper (class in agentscope.models)": [[20, "agentscope.models.YiChatWrapper", false]], "yichatwrapper (class in agentscope.models.yi_model)": [[29, "agentscope.models.yi_model.YiChatWrapper", false]], "zhipuaichatwrapper (class in agentscope.models)": [[20, "agentscope.models.ZhipuAIChatWrapper", false]], "zhipuaichatwrapper (class in agentscope.models.zhipu_model)": [[30, "agentscope.models.zhipu_model.ZhipuAIChatWrapper", false]], "zhipuaiembeddingwrapper (class in agentscope.models)": [[20, "agentscope.models.ZhipuAIEmbeddingWrapper", false]], "zhipuaiembeddingwrapper (class in agentscope.models.zhipu_model)": [[30, "agentscope.models.zhipu_model.ZhipuAIEmbeddingWrapper", false]], "zhipuaiwrapperbase (class in agentscope.models.zhipu_model)": [[30, "agentscope.models.zhipu_model.ZhipuAIWrapperBase", false]]}, "objects": {"": [[0, 0, 0, "-", "agentscope"]], "agentscope": [[1, 0, 0, "-", "agents"], [10, 0, 0, "-", "constants"], [11, 0, 0, "-", "exception"], [0, 6, 1, "", "init"], [12, 0, 0, "-", "logging"], [13, 0, 0, "-", "manager"], [14, 0, 0, "-", "memory"], [17, 0, 0, "-", "message"], [20, 0, 0, "-", "models"], [31, 0, 0, "-", "msghub"], [32, 0, 0, "-", "parsers"], [38, 0, 0, "-", "pipelines"], [0, 6, 1, "", "print_llm_usage"], [41, 0, 0, "-", "prompt"], [42, 0, 0, "-", "rag"], [46, 0, 0, "-", "rpc"], [50, 0, 0, "-", "serialize"], [51, 0, 0, "-", "server"], [54, 0, 0, "-", "service"], [0, 6, 1, "", "state_dict"], [88, 0, 0, "-", "strategy"], [90, 0, 0, "-", "studio"], [92, 0, 0, "-", "utils"], [95, 0, 0, "-", "web"]], "agentscope.agents": [[1, 1, 1, "", "AgentBase"], [1, 1, 1, "", "DialogAgent"], [1, 1, 1, "", "DictDialogAgent"], [1, 1, 1, "", "DistConf"], [1, 1, 1, "", "LlamaIndexAgent"], [1, 1, 1, "", "Operator"], [1, 1, 1, "", "ReActAgent"], [1, 1, 1, "", "UserAgent"], [2, 0, 0, "-", "agent"], [3, 0, 0, "-", "dialog_agent"], [4, 0, 0, "-", "dict_dialog_agent"], [5, 0, 0, "-", "operator"], [6, 0, 0, "-", "rag_agent"], [7, 0, 0, "-", "react_agent"], [8, 0, 0, "-", "rpc_agent"], [9, 0, 0, "-", "user_agent"]], "agentscope.agents.AgentBase": [[1, 2, 1, "", "__init__"], [1, 3, 1, "", "agent_id"], [1, 2, 1, "", "clear_audience"], [1, 2, 1, "", "generate_agent_id"], [1, 2, 1, "", "get_agent_class"], [1, 2, 1, "", "observe"], [1, 2, 1, "", "register_agent_class"], [1, 2, 1, "", "reply"], [1, 2, 1, "", "reset_audience"], [1, 2, 1, "", "rm_audience"], [1, 2, 1, "", "speak"], [1, 2, 1, "", "to_dist"]], "agentscope.agents.DialogAgent": [[1, 2, 1, "", "__init__"], [1, 2, 1, "", "reply"]], "agentscope.agents.DictDialogAgent": [[1, 2, 1, "", "__init__"], [1, 2, 1, "", "reply"], [1, 2, 1, "", "set_parser"]], "agentscope.agents.DistConf": [[1, 2, 1, "", "__init__"]], "agentscope.agents.LlamaIndexAgent": [[1, 2, 1, "", "__init__"], [1, 2, 1, "", "reply"]], "agentscope.agents.ReActAgent": [[1, 2, 1, "", "__init__"], [1, 2, 1, "", "finish"], [1, 2, 1, "", "reply"]], "agentscope.agents.UserAgent": [[1, 2, 1, "", "__init__"], [1, 2, 1, "", "reply"], [1, 2, 1, "", "speak"]], "agentscope.agents.agent": [[2, 1, 1, "", "AgentBase"], [2, 1, 1, "", "DistConf"]], "agentscope.agents.agent.AgentBase": [[2, 2, 1, "", "__init__"], [2, 3, 1, "", "agent_id"], [2, 2, 1, "", "clear_audience"], [2, 2, 1, "", "generate_agent_id"], [2, 2, 1, "", "get_agent_class"], [2, 2, 1, "", "observe"], [2, 2, 1, "", "register_agent_class"], [2, 2, 1, "", "reply"], [2, 2, 1, "", "reset_audience"], [2, 2, 1, "", "rm_audience"], [2, 2, 1, "", "speak"], [2, 2, 1, "", "to_dist"]], "agentscope.agents.agent.DistConf": [[2, 2, 1, "", "__init__"]], "agentscope.agents.dialog_agent": [[3, 1, 1, "", "DialogAgent"]], "agentscope.agents.dialog_agent.DialogAgent": [[3, 2, 1, "", "__init__"], [3, 2, 1, "", "reply"]], "agentscope.agents.dict_dialog_agent": [[4, 1, 1, "", "DictDialogAgent"]], "agentscope.agents.dict_dialog_agent.DictDialogAgent": [[4, 2, 1, "", "__init__"], [4, 2, 1, "", "reply"], [4, 2, 1, "", "set_parser"]], "agentscope.agents.operator": [[5, 1, 1, "", "Operator"]], "agentscope.agents.rag_agent": [[6, 1, 1, "", "LlamaIndexAgent"]], "agentscope.agents.rag_agent.LlamaIndexAgent": [[6, 2, 1, "", "__init__"], [6, 2, 1, "", "reply"]], "agentscope.agents.react_agent": [[7, 1, 1, "", "ReActAgent"]], "agentscope.agents.react_agent.ReActAgent": [[7, 2, 1, "", "__init__"], [7, 2, 1, "", "finish"], [7, 2, 1, "", "reply"]], "agentscope.agents.rpc_agent": [[8, 1, 1, "", "RpcAgent"]], "agentscope.agents.rpc_agent.RpcAgent": [[8, 2, 1, "", "__init__"], [8, 2, 1, "", "clone_instances"], [8, 2, 1, "", "observe"], [8, 2, 1, "", "reply"], [8, 2, 1, "", "stop"]], "agentscope.agents.user_agent": [[9, 1, 1, "", "UserAgent"]], "agentscope.agents.user_agent.UserAgent": [[9, 2, 1, "", "__init__"], [9, 2, 1, "", "reply"], [9, 2, 1, "", "speak"]], "agentscope.constants": [[10, 1, 1, "", "ResponseFormat"], [10, 1, 1, "", "ShrinkPolicy"]], "agentscope.constants.ResponseFormat": [[10, 4, 1, "", "JSON"], [10, 4, 1, "", "NONE"]], "agentscope.constants.ShrinkPolicy": [[10, 4, 1, "", "SUMMARIZE"], [10, 4, 1, "", "TRUNCATE"]], "agentscope.exception": [[11, 5, 1, "", "AgentCallError"], [11, 5, 1, "", "AgentCreationError"], [11, 5, 1, "", "AgentServerError"], [11, 5, 1, "", "AgentServerNotAliveError"], [11, 5, 1, "", "ArgumentNotFoundError"], [11, 5, 1, "", "ArgumentTypeError"], [11, 5, 1, "", "FunctionCallError"], [11, 5, 1, "", "FunctionCallFormatError"], [11, 5, 1, "", "FunctionNotFoundError"], [11, 5, 1, "", "JsonDictValidationError"], [11, 5, 1, "", "JsonParsingError"], [11, 5, 1, "", "JsonTypeError"], [11, 5, 1, "", "QuotaExceededError"], [11, 5, 1, "", "RequiredFieldNotFoundError"], [11, 5, 1, "", "ResponseParsingError"], [11, 5, 1, "", "StudioError"], [11, 5, 1, "", "StudioRegisterError"], [11, 5, 1, "", "TagNotFoundError"]], "agentscope.exception.AgentServerError": [[11, 2, 1, "", "__init__"], [11, 4, 1, "", "host"], [11, 4, 1, "", "message"], [11, 4, 1, "", "port"]], "agentscope.exception.FunctionCallError": [[11, 2, 1, "", "__init__"]], "agentscope.exception.QuotaExceededError": [[11, 2, 1, "", "__init__"]], "agentscope.exception.ResponseParsingError": [[11, 2, 1, "", "__init__"], [11, 4, 1, "", "raw_response"]], "agentscope.exception.StudioError": [[11, 2, 1, "", "__init__"]], "agentscope.exception.TagNotFoundError": [[11, 2, 1, "", "__init__"], [11, 4, 1, "", "missing_begin_tag"], [11, 4, 1, "", "missing_end_tag"]], "agentscope.logging": [[12, 6, 1, "", "log_gradio"], [12, 6, 1, "", "log_msg"], [12, 6, 1, "", "log_stream_msg"], [12, 6, 1, "", "setup_logger"]], "agentscope.manager": [[13, 1, 1, "", "ASManager"], [13, 1, 1, "", "FileManager"], [13, 1, 1, "", "ModelManager"], [13, 1, 1, "", "MonitorManager"]], "agentscope.manager.ASManager": [[13, 2, 1, "", "__init__"], [13, 2, 1, "", "flush"], [13, 2, 1, "", "get_instance"], [13, 2, 1, "", "initialize"], [13, 2, 1, "", "load_dict"], [13, 2, 1, "", "state_dict"]], "agentscope.manager.FileManager": [[13, 2, 1, "", "__init__"], [13, 2, 1, "", "cache_text_embedding"], [13, 3, 1, "", "code_dir"], [13, 3, 1, "", "embedding_cache_dir"], [13, 2, 1, "", "fetch_cached_text_embedding"], [13, 3, 1, "", "file_dir"], [13, 2, 1, "", "flush"], [13, 2, 1, "", "get_instance"], [13, 2, 1, "", "initialize"], [13, 3, 1, "", "invoke_dir"], [13, 2, 1, "", "is_initialized"], [13, 2, 1, "", "load_dict"], [13, 2, 1, "", "save_api_invocation"], [13, 2, 1, "", "save_file"], [13, 2, 1, "", "save_image"], [13, 2, 1, "", "save_python_code"], [13, 2, 1, "", "save_runtime_information"], [13, 2, 1, "", "state_dict"]], "agentscope.manager.ModelManager": [[13, 2, 1, "", "__init__"], [13, 2, 1, "", "clear_model_configs"], [13, 2, 1, "", "flush"], [13, 2, 1, "", "get_config_by_name"], [13, 2, 1, "", "get_instance"], [13, 2, 1, "", "get_model_by_config_name"], [13, 2, 1, "", "initialize"], [13, 2, 1, "", "load_dict"], [13, 2, 1, "", "load_model_configs"], [13, 4, 1, "", "model_configs"], [13, 2, 1, "", "state_dict"]], "agentscope.manager.MonitorManager": [[13, 2, 1, "", "__init__"], [13, 2, 1, "", "flush"], [13, 2, 1, "", "get_instance"], [13, 2, 1, "", "initialize"], [13, 2, 1, "", "load_dict"], [13, 3, 1, "", "path_db"], [13, 2, 1, "", "print_llm_usage"], [13, 2, 1, "", "rm_database"], [13, 2, 1, "", "show_image_tokens"], [13, 2, 1, "", "show_text_and_embedding_tokens"], [13, 2, 1, "", "state_dict"], [13, 2, 1, "", "update_image_tokens"], [13, 2, 1, "", "update_text_and_embedding_tokens"]], "agentscope.memory": [[14, 1, 1, "", "MemoryBase"], [14, 1, 1, "", "TemporaryMemory"], [15, 0, 0, "-", "memory"], [16, 0, 0, "-", "temporary_memory"]], "agentscope.memory.MemoryBase": [[14, 2, 1, "", "add"], [14, 2, 1, "", "clear"], [14, 2, 1, "", "delete"], [14, 2, 1, "", "export"], [14, 2, 1, "", "get_memory"], [14, 2, 1, "", "load"], [14, 2, 1, "", "size"]], "agentscope.memory.TemporaryMemory": [[14, 2, 1, "", "__init__"], [14, 2, 1, "", "add"], [14, 2, 1, "", "clear"], [14, 2, 1, "", "delete"], [14, 2, 1, "", "export"], [14, 2, 1, "", "get_embeddings"], [14, 2, 1, "", "get_memory"], [14, 2, 1, "", "load"], [14, 2, 1, "", "retrieve_by_embedding"], [14, 2, 1, "", "size"]], "agentscope.memory.memory": [[15, 1, 1, "", "MemoryBase"]], "agentscope.memory.memory.MemoryBase": [[15, 2, 1, "", "add"], [15, 2, 1, "", "clear"], [15, 2, 1, "", "delete"], [15, 2, 1, "", "export"], [15, 2, 1, "", "get_memory"], [15, 2, 1, "", "load"], [15, 2, 1, "", "size"]], "agentscope.memory.temporary_memory": [[16, 1, 1, "", "TemporaryMemory"]], "agentscope.memory.temporary_memory.TemporaryMemory": [[16, 2, 1, "", "__init__"], [16, 2, 1, "", "add"], [16, 2, 1, "", "clear"], [16, 2, 1, "", "delete"], [16, 2, 1, "", "export"], [16, 2, 1, "", "get_embeddings"], [16, 2, 1, "", "get_memory"], [16, 2, 1, "", "load"], [16, 2, 1, "", "retrieve_by_embedding"], [16, 2, 1, "", "size"]], "agentscope.message": [[17, 1, 1, "", "Msg"], [17, 1, 1, "", "PlaceholderMessage"], [18, 0, 0, "-", "msg"], [19, 0, 0, "-", "placeholder"]], "agentscope.message.Msg": [[17, 2, 1, "", "__init__"], [17, 3, 1, "", "content"], [17, 2, 1, "", "formatted_str"], [17, 2, 1, "", "from_dict"], [17, 3, 1, "", "id"], [17, 3, 1, "", "metadata"], [17, 3, 1, "", "name"], [17, 3, 1, "", "role"], [17, 3, 1, "", "timestamp"], [17, 2, 1, "", "to_dict"], [17, 3, 1, "", "url"]], "agentscope.message.PlaceholderMessage": [[17, 2, 1, "", "__init__"], [17, 3, 1, "", "content"], [17, 2, 1, "", "from_dict"], [17, 3, 1, "", "id"], [17, 3, 1, "", "metadata"], [17, 3, 1, "", "name"], [17, 3, 1, "", "role"], [17, 3, 1, "", "timestamp"], [17, 2, 1, "", "to_dict"], [17, 2, 1, "", "update_value"], [17, 3, 1, "", "url"]], "agentscope.message.msg": [[18, 1, 1, "", "Msg"]], "agentscope.message.msg.Msg": [[18, 2, 1, "", "__init__"], [18, 3, 1, "", "content"], [18, 2, 1, "", "formatted_str"], [18, 2, 1, "", "from_dict"], [18, 3, 1, "", "id"], [18, 3, 1, "", "metadata"], [18, 3, 1, "", "name"], [18, 3, 1, "", "role"], [18, 3, 1, "", "timestamp"], [18, 2, 1, "", "to_dict"], [18, 3, 1, "", "url"]], "agentscope.message.placeholder": [[19, 1, 1, "", "PlaceholderMessage"]], "agentscope.message.placeholder.PlaceholderMessage": [[19, 2, 1, "", "__init__"], [19, 3, 1, "", "content"], [19, 2, 1, "", "from_dict"], [19, 3, 1, "", "id"], [19, 3, 1, "", "metadata"], [19, 3, 1, "", "name"], [19, 3, 1, "", "role"], [19, 3, 1, "", "timestamp"], [19, 2, 1, "", "to_dict"], [19, 2, 1, "", "update_value"], [19, 3, 1, "", "url"]], "agentscope.models": [[20, 1, 1, "", "DashScopeChatWrapper"], [20, 1, 1, "", "DashScopeImageSynthesisWrapper"], [20, 1, 1, "", "DashScopeMultiModalWrapper"], [20, 1, 1, "", "DashScopeTextEmbeddingWrapper"], [20, 1, 1, "", "GeminiChatWrapper"], [20, 1, 1, "", "GeminiEmbeddingWrapper"], [20, 1, 1, "", "LiteLLMChatWrapper"], [20, 1, 1, "", "ModelResponse"], [20, 1, 1, "", "ModelWrapperBase"], [20, 1, 1, "", "OllamaChatWrapper"], [20, 1, 1, "", "OllamaEmbeddingWrapper"], [20, 1, 1, "", "OllamaGenerationWrapper"], [20, 1, 1, "", "OpenAIChatWrapper"], [20, 1, 1, "", "OpenAIDALLEWrapper"], [20, 1, 1, "", "OpenAIEmbeddingWrapper"], [20, 1, 1, "", "OpenAIWrapperBase"], [20, 1, 1, "", "PostAPIChatWrapper"], [20, 1, 1, "", "PostAPIModelWrapperBase"], [20, 1, 1, "", "YiChatWrapper"], [20, 1, 1, "", "ZhipuAIChatWrapper"], [20, 1, 1, "", "ZhipuAIEmbeddingWrapper"], [21, 0, 0, "-", "dashscope_model"], [22, 0, 0, "-", "gemini_model"], [23, 0, 0, "-", "litellm_model"], [24, 0, 0, "-", "model"], [25, 0, 0, "-", "ollama_model"], [26, 0, 0, "-", "openai_model"], [27, 0, 0, "-", "post_model"], [28, 0, 0, "-", "response"], [29, 0, 0, "-", "yi_model"], [30, 0, 0, "-", "zhipu_model"]], "agentscope.models.DashScopeChatWrapper": [[20, 2, 1, "", "__init__"], [20, 4, 1, "", "deprecated_model_type"], [20, 2, 1, "", "format"], [20, 4, 1, "", "model_type"]], "agentscope.models.DashScopeImageSynthesisWrapper": [[20, 4, 1, "", "model_type"]], "agentscope.models.DashScopeMultiModalWrapper": [[20, 2, 1, "", "convert_url"], [20, 2, 1, "", "format"], [20, 4, 1, "", "model_type"]], "agentscope.models.DashScopeTextEmbeddingWrapper": [[20, 4, 1, "", "model_type"]], "agentscope.models.GeminiChatWrapper": [[20, 2, 1, "", "__init__"], [20, 2, 1, "", "format"], [20, 4, 1, "", "generation_method"], [20, 4, 1, "", "model_type"]], "agentscope.models.GeminiEmbeddingWrapper": [[20, 4, 1, "", "model_type"]], "agentscope.models.LiteLLMChatWrapper": [[20, 2, 1, "", "__init__"], [20, 2, 1, "", "format"], [20, 4, 1, "", "model_type"]], "agentscope.models.ModelResponse": [[20, 2, 1, "", "__init__"], [20, 3, 1, "", "is_stream_exhausted"], [20, 3, 1, "", "stream"], [20, 3, 1, "", "text"]], "agentscope.models.ModelWrapperBase": [[20, 2, 1, "", "__init__"], [20, 4, 1, "", "config_name"], [20, 2, 1, "", "format"], [20, 2, 1, "", "format_for_common_chat_models"], [20, 2, 1, "", "get_wrapper"], [20, 4, 1, "", "model_name"], [20, 4, 1, "", "model_type"]], "agentscope.models.OllamaChatWrapper": [[20, 2, 1, "", "__init__"], [20, 2, 1, "", "format"], [20, 4, 1, "", "model_type"]], "agentscope.models.OllamaEmbeddingWrapper": [[20, 2, 1, "", "format"], [20, 4, 1, "", "model_type"]], "agentscope.models.OllamaGenerationWrapper": [[20, 2, 1, "", "format"], [20, 4, 1, "", "model_type"]], "agentscope.models.OpenAIChatWrapper": [[20, 2, 1, "", "__init__"], [20, 4, 1, "", "deprecated_model_type"], [20, 2, 1, "", "format"], [20, 4, 1, "", "model_type"], [20, 2, 1, "", "static_format"], [20, 4, 1, "", "substrings_in_vision_models_names"]], "agentscope.models.OpenAIDALLEWrapper": [[20, 4, 1, "", "model_type"]], "agentscope.models.OpenAIEmbeddingWrapper": [[20, 4, 1, "", "model_type"]], "agentscope.models.OpenAIWrapperBase": [[20, 2, 1, "", "__init__"], [20, 2, 1, "", "format"]], "agentscope.models.PostAPIChatWrapper": [[20, 2, 1, "", "format"], [20, 4, 1, "", "model_type"]], "agentscope.models.PostAPIModelWrapperBase": [[20, 2, 1, "", "__init__"], [20, 4, 1, "", "model_type"]], "agentscope.models.YiChatWrapper": [[20, 2, 1, "", "__init__"], [20, 2, 1, "", "format"], [20, 4, 1, "", "model_type"]], "agentscope.models.ZhipuAIChatWrapper": [[20, 2, 1, "", "__init__"], [20, 2, 1, "", "format"], [20, 4, 1, "", "model_type"]], "agentscope.models.ZhipuAIEmbeddingWrapper": [[20, 4, 1, "", "model_type"]], "agentscope.models.dashscope_model": [[21, 1, 1, "", "DashScopeChatWrapper"], [21, 1, 1, "", "DashScopeImageSynthesisWrapper"], [21, 1, 1, "", "DashScopeMultiModalWrapper"], [21, 1, 1, "", "DashScopeTextEmbeddingWrapper"], [21, 1, 1, "", "DashScopeWrapperBase"]], "agentscope.models.dashscope_model.DashScopeChatWrapper": [[21, 2, 1, "", "__init__"], [21, 4, 1, "", "config_name"], [21, 4, 1, "", "deprecated_model_type"], [21, 2, 1, "", "format"], [21, 4, 1, "", "model_name"], [21, 4, 1, "", "model_type"]], "agentscope.models.dashscope_model.DashScopeImageSynthesisWrapper": [[21, 4, 1, "", "config_name"], [21, 4, 1, "", "model_name"], [21, 4, 1, "", "model_type"]], "agentscope.models.dashscope_model.DashScopeMultiModalWrapper": [[21, 4, 1, "", "config_name"], [21, 2, 1, "", "convert_url"], [21, 2, 1, "", "format"], [21, 4, 1, "", "model_name"], [21, 4, 1, "", "model_type"]], "agentscope.models.dashscope_model.DashScopeTextEmbeddingWrapper": [[21, 4, 1, "", "config_name"], [21, 4, 1, "", "model_name"], [21, 4, 1, "", "model_type"]], "agentscope.models.dashscope_model.DashScopeWrapperBase": [[21, 2, 1, "", "__init__"], [21, 2, 1, "", "format"]], "agentscope.models.gemini_model": [[22, 1, 1, "", "GeminiChatWrapper"], [22, 1, 1, "", "GeminiEmbeddingWrapper"], [22, 1, 1, "", "GeminiWrapperBase"]], "agentscope.models.gemini_model.GeminiChatWrapper": [[22, 2, 1, "", "__init__"], [22, 4, 1, "", "config_name"], [22, 2, 1, "", "format"], [22, 4, 1, "", "generation_method"], [22, 4, 1, "", "model_name"], [22, 4, 1, "", "model_type"]], "agentscope.models.gemini_model.GeminiEmbeddingWrapper": [[22, 4, 1, "", "config_name"], [22, 4, 1, "", "model_name"], [22, 4, 1, "", "model_type"]], "agentscope.models.gemini_model.GeminiWrapperBase": [[22, 2, 1, "", "__init__"], [22, 2, 1, "", "list_models"]], "agentscope.models.litellm_model": [[23, 1, 1, "", "LiteLLMChatWrapper"], [23, 1, 1, "", "LiteLLMWrapperBase"]], "agentscope.models.litellm_model.LiteLLMChatWrapper": [[23, 2, 1, "", "__init__"], [23, 4, 1, "", "config_name"], [23, 2, 1, "", "format"], [23, 4, 1, "", "model_name"], [23, 4, 1, "", "model_type"]], "agentscope.models.litellm_model.LiteLLMWrapperBase": [[23, 2, 1, "", "__init__"], [23, 2, 1, "", "format"]], "agentscope.models.model": [[24, 1, 1, "", "ModelWrapperBase"]], "agentscope.models.model.ModelWrapperBase": [[24, 2, 1, "", "__init__"], [24, 4, 1, "", "config_name"], [24, 2, 1, "", "format"], [24, 2, 1, "", "format_for_common_chat_models"], [24, 2, 1, "", "get_wrapper"], [24, 4, 1, "", "model_name"], [24, 4, 1, "", "model_type"]], "agentscope.models.ollama_model": [[25, 1, 1, "", "OllamaChatWrapper"], [25, 1, 1, "", "OllamaEmbeddingWrapper"], [25, 1, 1, "", "OllamaGenerationWrapper"], [25, 1, 1, "", "OllamaWrapperBase"]], "agentscope.models.ollama_model.OllamaChatWrapper": [[25, 2, 1, "", "__init__"], [25, 4, 1, "", "config_name"], [25, 2, 1, "", "format"], [25, 4, 1, "", "keep_alive"], [25, 4, 1, "", "model_name"], [25, 4, 1, "", "model_type"], [25, 4, 1, "", "options"]], "agentscope.models.ollama_model.OllamaEmbeddingWrapper": [[25, 4, 1, "", "config_name"], [25, 2, 1, "", "format"], [25, 4, 1, "", "keep_alive"], [25, 4, 1, "", "model_name"], [25, 4, 1, "", "model_type"], [25, 4, 1, "", "options"]], "agentscope.models.ollama_model.OllamaGenerationWrapper": [[25, 4, 1, "", "config_name"], [25, 2, 1, "", "format"], [25, 4, 1, "", "keep_alive"], [25, 4, 1, "", "model_name"], [25, 4, 1, "", "model_type"], [25, 4, 1, "", "options"]], "agentscope.models.ollama_model.OllamaWrapperBase": [[25, 2, 1, "", "__init__"], [25, 4, 1, "", "keep_alive"], [25, 4, 1, "", "model_name"], [25, 4, 1, "", "model_type"], [25, 4, 1, "", "options"]], "agentscope.models.openai_model": [[26, 1, 1, "", "OpenAIChatWrapper"], [26, 1, 1, "", "OpenAIDALLEWrapper"], [26, 1, 1, "", "OpenAIEmbeddingWrapper"], [26, 1, 1, "", "OpenAIWrapperBase"]], "agentscope.models.openai_model.OpenAIChatWrapper": [[26, 2, 1, "", "__init__"], [26, 4, 1, "", "config_name"], [26, 4, 1, "", "deprecated_model_type"], [26, 2, 1, "", "format"], [26, 4, 1, "", "model_name"], [26, 4, 1, "", "model_type"], [26, 2, 1, "", "static_format"], [26, 4, 1, "", "substrings_in_vision_models_names"]], "agentscope.models.openai_model.OpenAIDALLEWrapper": [[26, 4, 1, "", "config_name"], [26, 4, 1, "", "model_name"], [26, 4, 1, "", "model_type"]], "agentscope.models.openai_model.OpenAIEmbeddingWrapper": [[26, 4, 1, "", "config_name"], [26, 4, 1, "", "model_name"], [26, 4, 1, "", "model_type"]], "agentscope.models.openai_model.OpenAIWrapperBase": [[26, 2, 1, "", "__init__"], [26, 2, 1, "", "format"]], "agentscope.models.post_model": [[27, 1, 1, "", "PostAPIChatWrapper"], [27, 1, 1, "", "PostAPIDALLEWrapper"], [27, 1, 1, "", "PostAPIEmbeddingWrapper"], [27, 1, 1, "", "PostAPIModelWrapperBase"]], "agentscope.models.post_model.PostAPIChatWrapper": [[27, 4, 1, "", "config_name"], [27, 2, 1, "", "format"], [27, 4, 1, "", "model_name"], [27, 4, 1, "", "model_type"]], "agentscope.models.post_model.PostAPIDALLEWrapper": [[27, 4, 1, "", "deprecated_model_type"], [27, 2, 1, "", "format"], [27, 4, 1, "", "model_type"]], "agentscope.models.post_model.PostAPIEmbeddingWrapper": [[27, 2, 1, "", "format"], [27, 4, 1, "", "model_type"]], "agentscope.models.post_model.PostAPIModelWrapperBase": [[27, 2, 1, "", "__init__"], [27, 4, 1, "", "config_name"], [27, 4, 1, "", "model_name"], [27, 4, 1, "", "model_type"]], "agentscope.models.response": [[28, 1, 1, "", "ModelResponse"]], "agentscope.models.response.ModelResponse": [[28, 2, 1, "", "__init__"], [28, 3, 1, "", "is_stream_exhausted"], [28, 3, 1, "", "stream"], [28, 3, 1, "", "text"]], "agentscope.models.yi_model": [[29, 1, 1, "", "YiChatWrapper"]], "agentscope.models.yi_model.YiChatWrapper": [[29, 2, 1, "", "__init__"], [29, 4, 1, "", "config_name"], [29, 2, 1, "", "format"], [29, 4, 1, "", "model_name"], [29, 4, 1, "", "model_type"]], "agentscope.models.zhipu_model": [[30, 1, 1, "", "ZhipuAIChatWrapper"], [30, 1, 1, "", "ZhipuAIEmbeddingWrapper"], [30, 1, 1, "", "ZhipuAIWrapperBase"]], "agentscope.models.zhipu_model.ZhipuAIChatWrapper": [[30, 2, 1, "", "__init__"], [30, 4, 1, "", "config_name"], [30, 2, 1, "", "format"], [30, 4, 1, "", "model_name"], [30, 4, 1, "", "model_type"]], "agentscope.models.zhipu_model.ZhipuAIEmbeddingWrapper": [[30, 4, 1, "", "config_name"], [30, 4, 1, "", "model_name"], [30, 4, 1, "", "model_type"]], "agentscope.models.zhipu_model.ZhipuAIWrapperBase": [[30, 2, 1, "", "__init__"], [30, 2, 1, "", "format"]], "agentscope.msghub": [[31, 1, 1, "", "MsgHubManager"], [31, 6, 1, "", "msghub"]], "agentscope.msghub.MsgHubManager": [[31, 2, 1, "", "__init__"], [31, 2, 1, "", "add"], [31, 2, 1, "", "broadcast"], [31, 2, 1, "", "delete"]], "agentscope.parsers": [[32, 1, 1, "", "MarkdownCodeBlockParser"], [32, 1, 1, "", "MarkdownJsonDictParser"], [32, 1, 1, "", "MarkdownJsonObjectParser"], [32, 1, 1, "", "MultiTaggedContentParser"], [32, 1, 1, "", "ParserBase"], [32, 1, 1, "", "RegexTaggedContentParser"], [32, 1, 1, "", "TaggedContent"], [33, 0, 0, "-", "code_block_parser"], [34, 0, 0, "-", "json_object_parser"], [35, 0, 0, "-", "parser_base"], [36, 0, 0, "-", "regex_tagged_content_parser"], [37, 0, 0, "-", "tagged_content_parser"]], "agentscope.parsers.MarkdownCodeBlockParser": [[32, 2, 1, "", "__init__"], [32, 4, 1, "", "content_hint"], [32, 4, 1, "", "format_instruction"], [32, 4, 1, "", "name"], [32, 2, 1, "", "parse"], [32, 4, 1, "", "tag_begin"], [32, 4, 1, "", "tag_end"]], "agentscope.parsers.MarkdownJsonDictParser": [[32, 2, 1, "", "__init__"], [32, 4, 1, "", "content_hint"], [32, 3, 1, "", "format_instruction"], [32, 4, 1, "", "name"], [32, 2, 1, "", "parse"], [32, 4, 1, "", "required_keys"], [32, 4, 1, "", "tag_begin"], [32, 4, 1, "", "tag_end"]], "agentscope.parsers.MarkdownJsonObjectParser": [[32, 2, 1, "", "__init__"], [32, 4, 1, "", "content_hint"], [32, 3, 1, "", "format_instruction"], [32, 4, 1, "", "name"], [32, 2, 1, "", "parse"], [32, 4, 1, "", "tag_begin"], [32, 4, 1, "", "tag_end"]], "agentscope.parsers.MultiTaggedContentParser": [[32, 2, 1, "", "__init__"], [32, 4, 1, "", "format_instruction"], [32, 4, 1, "", "json_required_hint"], [32, 2, 1, "", "parse"]], "agentscope.parsers.ParserBase": [[32, 2, 1, "", "parse"]], "agentscope.parsers.RegexTaggedContentParser": [[32, 2, 1, "", "__init__"], [32, 3, 1, "", "format_instruction"], [32, 2, 1, "", "parse"]], "agentscope.parsers.TaggedContent": [[32, 2, 1, "", "__init__"], [32, 4, 1, "", "content_hint"], [32, 4, 1, "", "name"], [32, 4, 1, "", "parse_json"], [32, 4, 1, "", "tag_begin"], [32, 4, 1, "", "tag_end"]], "agentscope.parsers.code_block_parser": [[33, 1, 1, "", "MarkdownCodeBlockParser"]], "agentscope.parsers.code_block_parser.MarkdownCodeBlockParser": [[33, 2, 1, "", "__init__"], [33, 4, 1, "", "content_hint"], [33, 4, 1, "", "format_instruction"], [33, 4, 1, "", "name"], [33, 2, 1, "", "parse"], [33, 4, 1, "", "tag_begin"], [33, 4, 1, "", "tag_end"]], "agentscope.parsers.json_object_parser": [[34, 1, 1, "", "MarkdownJsonDictParser"], [34, 1, 1, "", "MarkdownJsonObjectParser"]], "agentscope.parsers.json_object_parser.MarkdownJsonDictParser": [[34, 2, 1, "", "__init__"], [34, 4, 1, "", "content_hint"], [34, 3, 1, "", "format_instruction"], [34, 4, 1, "", "name"], [34, 2, 1, "", "parse"], [34, 4, 1, "", "required_keys"], [34, 4, 1, "", "tag_begin"], [34, 4, 1, "", "tag_end"]], "agentscope.parsers.json_object_parser.MarkdownJsonObjectParser": [[34, 2, 1, "", "__init__"], [34, 4, 1, "", "content_hint"], [34, 3, 1, "", "format_instruction"], [34, 4, 1, "", "name"], [34, 2, 1, "", "parse"], [34, 4, 1, "", "tag_begin"], [34, 4, 1, "", "tag_end"]], "agentscope.parsers.parser_base": [[35, 1, 1, "", "DictFilterMixin"], [35, 1, 1, "", "ParserBase"]], "agentscope.parsers.parser_base.DictFilterMixin": [[35, 2, 1, "", "__init__"], [35, 2, 1, "", "to_content"], [35, 2, 1, "", "to_memory"], [35, 2, 1, "", "to_metadata"]], "agentscope.parsers.parser_base.ParserBase": [[35, 2, 1, "", "parse"]], "agentscope.parsers.regex_tagged_content_parser": [[36, 1, 1, "", "RegexTaggedContentParser"]], "agentscope.parsers.regex_tagged_content_parser.RegexTaggedContentParser": [[36, 2, 1, "", "__init__"], [36, 3, 1, "", "format_instruction"], [36, 2, 1, "", "parse"]], "agentscope.parsers.tagged_content_parser": [[37, 1, 1, "", "MultiTaggedContentParser"], [37, 1, 1, "", "TaggedContent"]], "agentscope.parsers.tagged_content_parser.MultiTaggedContentParser": [[37, 2, 1, "", "__init__"], [37, 4, 1, "", "format_instruction"], [37, 4, 1, "", "json_required_hint"], [37, 2, 1, "", "parse"]], "agentscope.parsers.tagged_content_parser.TaggedContent": [[37, 2, 1, "", "__init__"], [37, 4, 1, "", "content_hint"], [37, 4, 1, "", "name"], [37, 4, 1, "", "parse_json"], [37, 4, 1, "", "tag_begin"], [37, 4, 1, "", "tag_end"]], "agentscope.pipelines": [[38, 1, 1, "", "ForLoopPipeline"], [38, 1, 1, "", "IfElsePipeline"], [38, 1, 1, "", "PipelineBase"], [38, 1, 1, "", "SequentialPipeline"], [38, 1, 1, "", "SwitchPipeline"], [38, 1, 1, "", "WhileLoopPipeline"], [38, 6, 1, "", "forlooppipeline"], [39, 0, 0, "-", "functional"], [38, 6, 1, "", "ifelsepipeline"], [40, 0, 0, "-", "pipeline"], [38, 6, 1, "", "sequentialpipeline"], [38, 6, 1, "", "switchpipeline"], [38, 6, 1, "", "whilelooppipeline"]], "agentscope.pipelines.ForLoopPipeline": [[38, 2, 1, "", "__init__"]], "agentscope.pipelines.IfElsePipeline": [[38, 2, 1, "", "__init__"]], "agentscope.pipelines.PipelineBase": [[38, 2, 1, "", "__init__"]], "agentscope.pipelines.SequentialPipeline": [[38, 2, 1, "", "__init__"]], "agentscope.pipelines.SwitchPipeline": [[38, 2, 1, "", "__init__"]], "agentscope.pipelines.WhileLoopPipeline": [[38, 2, 1, "", "__init__"]], "agentscope.pipelines.functional": [[39, 6, 1, "", "forlooppipeline"], [39, 6, 1, "", "ifelsepipeline"], [39, 6, 1, "", "placeholder"], [39, 6, 1, "", "sequentialpipeline"], [39, 6, 1, "", "switchpipeline"], [39, 6, 1, "", "whilelooppipeline"]], "agentscope.pipelines.pipeline": [[40, 1, 1, "", "ForLoopPipeline"], [40, 1, 1, "", "IfElsePipeline"], [40, 1, 1, "", "PipelineBase"], [40, 1, 1, "", "SequentialPipeline"], [40, 1, 1, "", "SwitchPipeline"], [40, 1, 1, "", "WhileLoopPipeline"]], "agentscope.pipelines.pipeline.ForLoopPipeline": [[40, 2, 1, "", "__init__"]], "agentscope.pipelines.pipeline.IfElsePipeline": [[40, 2, 1, "", "__init__"]], "agentscope.pipelines.pipeline.PipelineBase": [[40, 2, 1, "", "__init__"]], "agentscope.pipelines.pipeline.SequentialPipeline": [[40, 2, 1, "", "__init__"]], "agentscope.pipelines.pipeline.SwitchPipeline": [[40, 2, 1, "", "__init__"]], "agentscope.pipelines.pipeline.WhileLoopPipeline": [[40, 2, 1, "", "__init__"]], "agentscope.prompt": [[41, 1, 1, "", "ChineseSystemPromptGenerator"], [41, 1, 1, "", "EnglishSystemPromptGenerator"], [41, 1, 1, "", "SystemPromptComparer"], [41, 1, 1, "", "SystemPromptGeneratorBase"], [41, 1, 1, "", "SystemPromptOptimizer"]], "agentscope.prompt.ChineseSystemPromptGenerator": [[41, 2, 1, "", "__init__"]], "agentscope.prompt.EnglishSystemPromptGenerator": [[41, 2, 1, "", "__init__"]], "agentscope.prompt.SystemPromptComparer": [[41, 2, 1, "", "__init__"], [41, 2, 1, "", "compare_in_dialog"], [41, 2, 1, "", "compare_with_queries"]], "agentscope.prompt.SystemPromptGeneratorBase": [[41, 2, 1, "", "__init__"], [41, 2, 1, "", "generate"]], "agentscope.prompt.SystemPromptOptimizer": [[41, 2, 1, "", "__init__"], [41, 2, 1, "", "generate_notes"]], "agentscope.rag": [[42, 1, 1, "", "Knowledge"], [42, 1, 1, "", "KnowledgeBank"], [43, 0, 0, "-", "knowledge"], [44, 0, 0, "-", "knowledge_bank"], [45, 0, 0, "-", "llama_index_knowledge"]], "agentscope.rag.Knowledge": [[42, 2, 1, "", "__init__"], [42, 2, 1, "", "post_processing"], [42, 2, 1, "", "retrieve"]], "agentscope.rag.KnowledgeBank": [[42, 2, 1, "", "__init__"], [42, 2, 1, "", "add_data_as_knowledge"], [42, 2, 1, "", "equip"], [42, 2, 1, "", "get_knowledge"]], "agentscope.rag.knowledge": [[43, 1, 1, "", "Knowledge"]], "agentscope.rag.knowledge.Knowledge": [[43, 2, 1, "", "__init__"], [43, 2, 1, "", "post_processing"], [43, 2, 1, "", "retrieve"]], "agentscope.rag.knowledge_bank": [[44, 1, 1, "", "KnowledgeBank"]], "agentscope.rag.knowledge_bank.KnowledgeBank": [[44, 2, 1, "", "__init__"], [44, 2, 1, "", "add_data_as_knowledge"], [44, 2, 1, "", "equip"], [44, 2, 1, "", "get_knowledge"]], "agentscope.rag.llama_index_knowledge": [[45, 1, 1, "", "LlamaIndexKnowledge"]], "agentscope.rag.llama_index_knowledge.LlamaIndexKnowledge": [[45, 2, 1, "", "__init__"], [45, 2, 1, "", "refresh_index"], [45, 2, 1, "", "retrieve"]], "agentscope.rpc": [[46, 1, 1, "", "ResponseStub"], [46, 1, 1, "", "RpcAgentClient"], [46, 1, 1, "", "RpcAgentServicer"], [46, 1, 1, "", "RpcAgentStub"], [46, 1, 1, "", "RpcMsg"], [46, 6, 1, "", "add_RpcAgentServicer_to_server"], [46, 6, 1, "", "call_in_thread"], [47, 0, 0, "-", "rpc_agent_client"], [48, 0, 0, "-", "rpc_agent_pb2"], [49, 0, 0, "-", "rpc_agent_pb2_grpc"]], "agentscope.rpc.ResponseStub": [[46, 2, 1, "", "__init__"], [46, 2, 1, "", "get_response"], [46, 2, 1, "", "set_response"]], "agentscope.rpc.RpcAgentClient": [[46, 2, 1, "", "__init__"], [46, 2, 1, "", "call_agent_func"], [46, 2, 1, "", "clone_agent"], [46, 2, 1, "", "create_agent"], [46, 2, 1, "", "delete_agent"], [46, 2, 1, "", "delete_all_agent"], [46, 2, 1, "", "download_file"], [46, 2, 1, "", "get_agent_list"], [46, 2, 1, "", "get_agent_memory"], [46, 2, 1, "", "get_server_info"], [46, 2, 1, "", "is_alive"], [46, 2, 1, "", "set_model_configs"], [46, 2, 1, "", "stop"], [46, 2, 1, "", "update_placeholder"]], "agentscope.rpc.RpcAgentServicer": [[46, 2, 1, "", "call_agent_func"], [46, 2, 1, "", "clone_agent"], [46, 2, 1, "", "create_agent"], [46, 2, 1, "", "delete_agent"], [46, 2, 1, "", "delete_all_agents"], [46, 2, 1, "", "download_file"], [46, 2, 1, "", "get_agent_list"], [46, 2, 1, "", "get_agent_memory"], [46, 2, 1, "", "get_server_info"], [46, 2, 1, "", "is_alive"], [46, 2, 1, "", "set_model_configs"], [46, 2, 1, "", "stop"], [46, 2, 1, "", "update_placeholder"]], "agentscope.rpc.RpcAgentStub": [[46, 2, 1, "", "__init__"]], "agentscope.rpc.RpcMsg": [[46, 4, 1, "", "DESCRIPTOR"]], "agentscope.rpc.rpc_agent_client": [[47, 1, 1, "", "ResponseStub"], [47, 1, 1, "", "RpcAgentClient"], [47, 6, 1, "", "call_in_thread"]], "agentscope.rpc.rpc_agent_client.ResponseStub": [[47, 2, 1, "", "__init__"], [47, 2, 1, "", "get_response"], [47, 2, 1, "", "set_response"]], "agentscope.rpc.rpc_agent_client.RpcAgentClient": [[47, 2, 1, "", "__init__"], [47, 2, 1, "", "call_agent_func"], [47, 2, 1, "", "clone_agent"], [47, 2, 1, "", "create_agent"], [47, 2, 1, "", "delete_agent"], [47, 2, 1, "", "delete_all_agent"], [47, 2, 1, "", "download_file"], [47, 2, 1, "", "get_agent_list"], [47, 2, 1, "", "get_agent_memory"], [47, 2, 1, "", "get_server_info"], [47, 2, 1, "", "is_alive"], [47, 2, 1, "", "set_model_configs"], [47, 2, 1, "", "stop"], [47, 2, 1, "", "update_placeholder"]], "agentscope.rpc.rpc_agent_pb2_grpc": [[49, 1, 1, "", "RpcAgent"], [49, 1, 1, "", "RpcAgentServicer"], [49, 1, 1, "", "RpcAgentStub"], [49, 6, 1, "", "add_RpcAgentServicer_to_server"]], "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgent": [[49, 2, 1, "", "call_agent_func"], [49, 2, 1, "", "clone_agent"], [49, 2, 1, "", "create_agent"], [49, 2, 1, "", "delete_agent"], [49, 2, 1, "", "delete_all_agents"], [49, 2, 1, "", "download_file"], [49, 2, 1, "", "get_agent_list"], [49, 2, 1, "", "get_agent_memory"], [49, 2, 1, "", "get_server_info"], [49, 2, 1, "", "is_alive"], [49, 2, 1, "", "set_model_configs"], [49, 2, 1, "", "stop"], [49, 2, 1, "", "update_placeholder"]], "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgentServicer": [[49, 2, 1, "", "call_agent_func"], [49, 2, 1, "", "clone_agent"], [49, 2, 1, "", "create_agent"], [49, 2, 1, "", "delete_agent"], [49, 2, 1, "", "delete_all_agents"], [49, 2, 1, "", "download_file"], [49, 2, 1, "", "get_agent_list"], [49, 2, 1, "", "get_agent_memory"], [49, 2, 1, "", "get_server_info"], [49, 2, 1, "", "is_alive"], [49, 2, 1, "", "set_model_configs"], [49, 2, 1, "", "stop"], [49, 2, 1, "", "update_placeholder"]], "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgentStub": [[49, 2, 1, "", "__init__"]], "agentscope.serialize": [[50, 6, 1, "", "deserialize"], [50, 6, 1, "", "is_serializable"], [50, 6, 1, "", "serialize"]], "agentscope.server": [[51, 1, 1, "", "AgentServerServicer"], [51, 1, 1, "", "RpcAgentServerLauncher"], [51, 6, 1, "", "as_server"], [52, 0, 0, "-", "launcher"], [53, 0, 0, "-", "servicer"]], "agentscope.server.AgentServerServicer": [[51, 2, 1, "", "__init__"], [51, 2, 1, "", "agent_exists"], [51, 2, 1, "", "call_agent_func"], [51, 2, 1, "", "clone_agent"], [51, 2, 1, "", "create_agent"], [51, 2, 1, "", "delete_agent"], [51, 2, 1, "", "delete_all_agents"], [51, 2, 1, "", "download_file"], [51, 2, 1, "", "get_agent"], [51, 2, 1, "", "get_agent_list"], [51, 2, 1, "", "get_agent_memory"], [51, 2, 1, "", "get_server_info"], [51, 2, 1, "", "get_task_id"], [51, 2, 1, "", "is_alive"], [51, 2, 1, "", "set_model_configs"], [51, 2, 1, "", "stop"], [51, 2, 1, "", "update_placeholder"]], "agentscope.server.RpcAgentServerLauncher": [[51, 2, 1, "", "__init__"], [51, 2, 1, "", "generate_server_id"], [51, 2, 1, "", "launch"], [51, 2, 1, "", "shutdown"], [51, 2, 1, "", "wait_until_terminate"]], "agentscope.server.launcher": [[52, 1, 1, "", "RpcAgentServerLauncher"], [52, 6, 1, "", "as_server"], [52, 6, 1, "", "load_agents_from_dir"], [52, 6, 1, "", "load_agents_from_file"]], "agentscope.server.launcher.RpcAgentServerLauncher": [[52, 2, 1, "", "__init__"], [52, 2, 1, "", "generate_server_id"], [52, 2, 1, "", "launch"], [52, 2, 1, "", "shutdown"], [52, 2, 1, "", "wait_until_terminate"]], "agentscope.server.servicer": [[53, 1, 1, "", "AgentServerServicer"]], "agentscope.server.servicer.AgentServerServicer": [[53, 2, 1, "", "__init__"], [53, 2, 1, "", "agent_exists"], [53, 2, 1, "", "call_agent_func"], [53, 2, 1, "", "clone_agent"], [53, 2, 1, "", "create_agent"], [53, 2, 1, "", "delete_agent"], [53, 2, 1, "", "delete_all_agents"], [53, 2, 1, "", "download_file"], [53, 2, 1, "", "get_agent"], [53, 2, 1, "", "get_agent_list"], [53, 2, 1, "", "get_agent_memory"], [53, 2, 1, "", "get_server_info"], [53, 2, 1, "", "get_task_id"], [53, 2, 1, "", "is_alive"], [53, 2, 1, "", "set_model_configs"], [53, 2, 1, "", "stop"], [53, 2, 1, "", "update_placeholder"]], "agentscope.service": [[54, 1, 1, "", "NoteBookExecutor"], [54, 1, 1, "", "ServiceExecStatus"], [54, 1, 1, "", "ServiceFactory"], [54, 1, 1, "", "ServiceResponse"], [54, 1, 1, "", "ServiceToolkit"], [54, 1, 1, "", "WebBrowser"], [54, 1, 1, "", "WebElementInfo"], [54, 6, 1, "", "arxiv_search"], [54, 6, 1, "", "bing_search"], [55, 0, 0, "-", "browser"], [54, 6, 1, "", "cos_sim"], [54, 6, 1, "", "create_directory"], [54, 6, 1, "", "create_file"], [54, 6, 1, "", "dashscope_image_to_text"], [54, 6, 1, "", "dashscope_text_to_audio"], [54, 6, 1, "", "dashscope_text_to_image"], [54, 6, 1, "", "dblp_search_authors"], [54, 6, 1, "", "dblp_search_publications"], [54, 6, 1, "", "dblp_search_venues"], [54, 6, 1, "", "delete_directory"], [54, 6, 1, "", "delete_file"], [54, 6, 1, "", "digest_webpage"], [54, 6, 1, "", "download_from_url"], [57, 0, 0, "-", "execute_code"], [54, 6, 1, "", "execute_python_code"], [54, 6, 1, "", "execute_shell_command"], [61, 0, 0, "-", "file"], [54, 6, 1, "", "get_current_directory"], [54, 6, 1, "", "get_help"], [54, 6, 1, "", "google_search"], [54, 6, 1, "", "list_directory_content"], [54, 6, 1, "", "load_web"], [54, 6, 1, "", "move_directory"], [54, 6, 1, "", "move_file"], [65, 0, 0, "-", "multi_modality"], [54, 6, 1, "", "openai_audio_to_text"], [54, 6, 1, "", "openai_create_image_variation"], [54, 6, 1, "", "openai_edit_image"], [54, 6, 1, "", "openai_image_to_text"], [54, 6, 1, "", "openai_text_to_audio"], [54, 6, 1, "", "openai_text_to_image"], [54, 6, 1, "", "parse_html_to_text"], [54, 6, 1, "", "query_mongodb"], [54, 6, 1, "", "query_mysql"], [54, 6, 1, "", "query_sqlite"], [54, 6, 1, "", "read_json_file"], [54, 6, 1, "", "read_text_file"], [68, 0, 0, "-", "retrieval"], [54, 6, 1, "", "retrieve_from_list"], [71, 0, 0, "-", "service_response"], [72, 0, 0, "-", "service_status"], [73, 0, 0, "-", "service_toolkit"], [74, 0, 0, "-", "sql_query"], [54, 6, 1, "", "summarization"], [78, 0, 0, "-", "text_processing"], [54, 6, 1, "", "tripadvisor_search"], [54, 6, 1, "", "tripadvisor_search_location_details"], [54, 6, 1, "", "tripadvisor_search_location_photos"], [80, 0, 0, "-", "web"], [54, 6, 1, "", "wikipedia_search"], [54, 6, 1, "", "wikipedia_search_categories"], [54, 6, 1, "", "write_json_file"], [54, 6, 1, "", "write_text_file"]], "agentscope.service.NoteBookExecutor": [[54, 2, 1, "", "__init__"], [54, 2, 1, "", "async_run_code_on_notebook"], [54, 3, 1, "", "cells_length"], [54, 2, 1, "", "reset_notebook"], [54, 2, 1, "", "run_code_on_notebook"]], "agentscope.service.ServiceExecStatus": [[54, 4, 1, "", "ERROR"], [54, 4, 1, "", "SUCCESS"]], "agentscope.service.ServiceFactory": [[54, 2, 1, "", "get"]], "agentscope.service.ServiceResponse": [[54, 2, 1, "", "__init__"]], "agentscope.service.ServiceToolkit": [[54, 2, 1, "", "__init__"], [54, 2, 1, "", "add"], [54, 2, 1, "", "get"], [54, 3, 1, "", "json_schemas"], [54, 2, 1, "", "parse_and_call_func"], [54, 4, 1, "", "service_funcs"], [54, 3, 1, "", "tools_calling_format"], [54, 3, 1, "", "tools_instruction"]], "agentscope.service.WebBrowser": [[54, 2, 1, "", "__init__"], [54, 2, 1, "", "action_click"], [54, 2, 1, "", "action_press_key"], [54, 2, 1, "", "action_scroll_down"], [54, 2, 1, "", "action_scroll_up"], [54, 2, 1, "", "action_type"], [54, 2, 1, "", "action_visit_url"], [54, 2, 1, "", "close"], [54, 2, 1, "", "get_action_functions"], [54, 3, 1, "", "page_html"], [54, 3, 1, "", "page_markdown"], [54, 3, 1, "", "page_screenshot"], [54, 3, 1, "", "page_title"], [54, 2, 1, "", "remove_interactive_marks"], [54, 2, 1, "", "set_interactive_marks"], [54, 3, 1, "", "url"]], "agentscope.service.WebElementInfo": [[54, 4, 1, "", "aria_label"], [54, 4, 1, "", "height"], [54, 4, 1, "", "html"], [54, 4, 1, "", "inner_text"], [54, 4, 1, "", "is_clickable"], [54, 4, 1, "", "meta_data"], [54, 4, 1, "", "model_computed_fields"], [54, 4, 1, "", "model_config"], [54, 4, 1, "", "model_fields"], [54, 4, 1, "", "node_name"], [54, 4, 1, "", "node_value"], [54, 4, 1, "", "origin_x"], [54, 4, 1, "", "origin_y"], [54, 4, 1, "", "tag_name"], [54, 4, 1, "", "type"], [54, 4, 1, "", "width"]], "agentscope.service.browser": [[56, 0, 0, "-", "web_browser"]], "agentscope.service.browser.web_browser": [[56, 1, 1, "", "WebBrowser"], [56, 1, 1, "", "WebElementInfo"]], "agentscope.service.browser.web_browser.WebBrowser": [[56, 2, 1, "", "__init__"], [56, 2, 1, "", "action_click"], [56, 2, 1, "", "action_press_key"], [56, 2, 1, "", "action_scroll_down"], [56, 2, 1, "", "action_scroll_up"], [56, 2, 1, "", "action_type"], [56, 2, 1, "", "action_visit_url"], [56, 2, 1, "", "close"], [56, 2, 1, "", "get_action_functions"], [56, 3, 1, "", "page_html"], [56, 3, 1, "", "page_markdown"], [56, 3, 1, "", "page_screenshot"], [56, 3, 1, "", "page_title"], [56, 2, 1, "", "remove_interactive_marks"], [56, 2, 1, "", "set_interactive_marks"], [56, 3, 1, "", "url"]], "agentscope.service.browser.web_browser.WebElementInfo": [[56, 4, 1, "", "aria_label"], [56, 4, 1, "", "height"], [56, 4, 1, "", "html"], [56, 4, 1, "", "inner_text"], [56, 4, 1, "", "is_clickable"], [56, 4, 1, "", "meta_data"], [56, 4, 1, "", "model_computed_fields"], [56, 4, 1, "", "model_config"], [56, 4, 1, "", "model_fields"], [56, 4, 1, "", "node_name"], [56, 4, 1, "", "node_value"], [56, 4, 1, "", "origin_x"], [56, 4, 1, "", "origin_y"], [56, 4, 1, "", "tag_name"], [56, 4, 1, "", "type"], [56, 4, 1, "", "width"]], "agentscope.service.execute_code": [[58, 0, 0, "-", "exec_notebook"], [59, 0, 0, "-", "exec_python"], [60, 0, 0, "-", "exec_shell"]], "agentscope.service.execute_code.exec_notebook": [[58, 1, 1, "", "NoteBookExecutor"]], "agentscope.service.execute_code.exec_notebook.NoteBookExecutor": [[58, 2, 1, "", "__init__"], [58, 2, 1, "", "async_run_code_on_notebook"], [58, 3, 1, "", "cells_length"], [58, 2, 1, "", "reset_notebook"], [58, 2, 1, "", "run_code_on_notebook"]], "agentscope.service.execute_code.exec_python": [[59, 6, 1, "", "execute_python_code"], [59, 6, 1, "", "sys_python_guard"]], "agentscope.service.execute_code.exec_shell": [[60, 6, 1, "", "execute_shell_command"]], "agentscope.service.file": [[62, 0, 0, "-", "common"], [63, 0, 0, "-", "json"], [64, 0, 0, "-", "text"]], "agentscope.service.file.common": [[62, 6, 1, "", "create_directory"], [62, 6, 1, "", "create_file"], [62, 6, 1, "", "delete_directory"], [62, 6, 1, "", "delete_file"], [62, 6, 1, "", "get_current_directory"], [62, 6, 1, "", "list_directory_content"], [62, 6, 1, "", "move_directory"], [62, 6, 1, "", "move_file"]], "agentscope.service.file.json": [[63, 6, 1, "", "read_json_file"], [63, 6, 1, "", "write_json_file"]], "agentscope.service.file.text": [[64, 6, 1, "", "read_text_file"], [64, 6, 1, "", "write_text_file"]], "agentscope.service.multi_modality": [[66, 0, 0, "-", "dashscope_services"], [67, 0, 0, "-", "openai_services"]], "agentscope.service.multi_modality.dashscope_services": [[66, 6, 1, "", "dashscope_image_to_text"], [66, 6, 1, "", "dashscope_text_to_audio"], [66, 6, 1, "", "dashscope_text_to_image"]], "agentscope.service.multi_modality.openai_services": [[67, 6, 1, "", "openai_audio_to_text"], [67, 6, 1, "", "openai_create_image_variation"], [67, 6, 1, "", "openai_edit_image"], [67, 6, 1, "", "openai_image_to_text"], [67, 6, 1, "", "openai_text_to_audio"], [67, 6, 1, "", "openai_text_to_image"]], "agentscope.service.retrieval": [[69, 0, 0, "-", "retrieval_from_list"], [70, 0, 0, "-", "similarity"]], "agentscope.service.retrieval.retrieval_from_list": [[69, 6, 1, "", "retrieve_from_list"]], "agentscope.service.retrieval.similarity": [[70, 6, 1, "", "cos_sim"]], "agentscope.service.service_response": [[71, 1, 1, "", "ServiceResponse"]], "agentscope.service.service_response.ServiceResponse": [[71, 2, 1, "", "__init__"]], "agentscope.service.service_status": [[72, 1, 1, "", "ServiceExecStatus"]], "agentscope.service.service_status.ServiceExecStatus": [[72, 4, 1, "", "ERROR"], [72, 4, 1, "", "SUCCESS"]], "agentscope.service.service_toolkit": [[73, 1, 1, "", "ServiceFactory"], [73, 1, 1, "", "ServiceFunction"], [73, 1, 1, "", "ServiceToolkit"]], "agentscope.service.service_toolkit.ServiceFactory": [[73, 2, 1, "", "get"]], "agentscope.service.service_toolkit.ServiceFunction": [[73, 2, 1, "", "__init__"], [73, 4, 1, "", "json_schema"], [73, 4, 1, "", "name"], [73, 4, 1, "", "original_func"], [73, 4, 1, "", "processed_func"], [73, 4, 1, "", "require_args"]], "agentscope.service.service_toolkit.ServiceToolkit": [[73, 2, 1, "", "__init__"], [73, 2, 1, "", "add"], [73, 2, 1, "", "get"], [73, 3, 1, "", "json_schemas"], [73, 2, 1, "", "parse_and_call_func"], [73, 4, 1, "", "service_funcs"], [73, 3, 1, "", "tools_calling_format"], [73, 3, 1, "", "tools_instruction"]], "agentscope.service.sql_query": [[75, 0, 0, "-", "mongodb"], [76, 0, 0, "-", "mysql"], [77, 0, 0, "-", "sqlite"]], "agentscope.service.sql_query.mongodb": [[75, 6, 1, "", "query_mongodb"]], "agentscope.service.sql_query.mysql": [[76, 6, 1, "", "query_mysql"]], "agentscope.service.sql_query.sqlite": [[77, 6, 1, "", "query_sqlite"]], "agentscope.service.text_processing": [[79, 0, 0, "-", "summarization"]], "agentscope.service.text_processing.summarization": [[79, 6, 1, "", "summarization"]], "agentscope.service.web": [[81, 0, 0, "-", "arxiv"], [82, 0, 0, "-", "dblp"], [83, 0, 0, "-", "download"], [84, 0, 0, "-", "search"], [85, 0, 0, "-", "tripadvisor"], [86, 0, 0, "-", "web_digest"], [87, 0, 0, "-", "wikipedia"]], "agentscope.service.web.arxiv": [[81, 6, 1, "", "arxiv_search"]], "agentscope.service.web.dblp": [[82, 6, 1, "", "dblp_search_authors"], [82, 6, 1, "", "dblp_search_publications"], [82, 6, 1, "", "dblp_search_venues"]], "agentscope.service.web.download": [[83, 6, 1, "", "download_from_url"]], "agentscope.service.web.search": [[84, 6, 1, "", "bing_search"], [84, 6, 1, "", "google_search"]], "agentscope.service.web.tripadvisor": [[85, 6, 1, "", "tripadvisor_search"], [85, 6, 1, "", "tripadvisor_search_location_details"], [85, 6, 1, "", "tripadvisor_search_location_photos"]], "agentscope.service.web.web_digest": [[86, 6, 1, "", "digest_webpage"], [86, 6, 1, "", "is_valid_url"], [86, 6, 1, "", "load_web"], [86, 6, 1, "", "parse_html_to_text"]], "agentscope.service.web.wikipedia": [[87, 6, 1, "", "wikipedia_search"], [87, 6, 1, "", "wikipedia_search_categories"]], "agentscope.strategy": [[88, 1, 1, "", "MixtureOfAgents"], [89, 0, 0, "-", "mixture_of_agent"]], "agentscope.strategy.MixtureOfAgents": [[88, 2, 1, "", "__init__"]], "agentscope.strategy.mixture_of_agent": [[89, 1, 1, "", "MixtureOfAgents"]], "agentscope.strategy.mixture_of_agent.MixtureOfAgents": [[89, 2, 1, "", "__init__"]], "agentscope.studio": [[90, 6, 1, "", "init"], [91, 0, 0, "-", "utils"]], "agentscope.studio.utils": [[91, 6, 1, "", "decode_jwt"], [91, 6, 1, "", "generate_jwt"]], "agentscope.utils": [[93, 0, 0, "-", "common"], [94, 0, 0, "-", "token_utils"]], "agentscope.utils.common": [[93, 1, 1, "", "ImportErrorReporter"], [93, 6, 1, "", "create_tempdir"], [93, 6, 1, "", "timer"], [93, 6, 1, "", "to_openai_dict"]], "agentscope.utils.common.ImportErrorReporter": [[93, 2, 1, "", "__init__"]], "agentscope.utils.token_utils": [[94, 6, 1, "", "count_openai_token"], [94, 6, 1, "", "get_openai_max_length"], [94, 6, 1, "", "num_tokens_from_content"]], "agentscope.web": [[96, 0, 0, "-", "gradio"], [100, 0, 0, "-", "workstation"]], "agentscope.web.gradio": [[97, 0, 0, "-", "constants"], [98, 0, 0, "-", "studio"], [99, 0, 0, "-", "utils"]], "agentscope.web.gradio.studio": [[98, 6, 1, "", "fn_choice"], [98, 6, 1, "", "get_chat"], [98, 6, 1, "", "import_function_from_path"], [98, 6, 1, "", "init_uid_list"], [98, 6, 1, "", "reset_glb_var"], [98, 6, 1, "", "run_app"], [98, 6, 1, "", "send_audio"], [98, 6, 1, "", "send_image"], [98, 6, 1, "", "send_message"]], "agentscope.web.gradio.utils": [[99, 5, 1, "", "ResetException"], [99, 6, 1, "", "audio2text"], [99, 6, 1, "", "check_uuid"], [99, 6, 1, "", "cycle_dots"], [99, 6, 1, "", "generate_image_from_name"], [99, 6, 1, "", "get_chat_msg"], [99, 6, 1, "", "get_player_input"], [99, 6, 1, "", "get_reset_msg"], [99, 6, 1, "", "init_uid_queues"], [99, 6, 1, "", "send_msg"], [99, 6, 1, "", "send_player_input"], [99, 6, 1, "", "send_reset_msg"], [99, 6, 1, "", "user_input"]], "agentscope.web.workstation": [[101, 0, 0, "-", "workflow"], [102, 0, 0, "-", "workflow_dag"], [103, 0, 0, "-", "workflow_node"], [104, 0, 0, "-", "workflow_utils"]], "agentscope.web.workstation.workflow": [[101, 6, 1, "", "compile_workflow"], [101, 6, 1, "", "load_config"], [101, 6, 1, "", "main"], [101, 6, 1, "", "start_workflow"]], "agentscope.web.workstation.workflow_dag": [[102, 1, 1, "", "ASDiGraph"], [102, 6, 1, "", "build_dag"], [102, 6, 1, "", "remove_duplicates_from_end"], [102, 6, 1, "", "sanitize_node_data"]], "agentscope.web.workstation.workflow_dag.ASDiGraph": [[102, 2, 1, "", "__init__"], [102, 2, 1, "", "add_as_node"], [102, 2, 1, "", "compile"], [102, 2, 1, "", "exec_node"], [102, 4, 1, "", "nodes_not_in_graph"], [102, 2, 1, "", "run"]], "agentscope.web.workstation.workflow_node": [[103, 1, 1, "", "BingSearchServiceNode"], [103, 1, 1, "", "CopyNode"], [103, 1, 1, "", "DialogAgentNode"], [103, 1, 1, "", "DictDialogAgentNode"], [103, 1, 1, "", "ForLoopPipelineNode"], [103, 1, 1, "", "GoogleSearchServiceNode"], [103, 1, 1, "", "IfElsePipelineNode"], [103, 1, 1, "", "ModelNode"], [103, 1, 1, "", "MsgHubNode"], [103, 1, 1, "", "MsgNode"], [103, 1, 1, "", "PlaceHolderNode"], [103, 1, 1, "", "PythonServiceNode"], [103, 1, 1, "", "ReActAgentNode"], [103, 1, 1, "", "ReadTextServiceNode"], [103, 1, 1, "", "SequentialPipelineNode"], [103, 1, 1, "", "SwitchPipelineNode"], [103, 1, 1, "", "UserAgentNode"], [103, 1, 1, "", "WhileLoopPipelineNode"], [103, 1, 1, "", "WorkflowNode"], [103, 1, 1, "", "WorkflowNodeType"], [103, 1, 1, "", "WriteTextServiceNode"], [103, 6, 1, "", "get_all_agents"]], "agentscope.web.workstation.workflow_node.BingSearchServiceNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_node.CopyNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_node.DialogAgentNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_node.DictDialogAgentNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_node.ForLoopPipelineNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_node.GoogleSearchServiceNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_node.IfElsePipelineNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_node.ModelNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_node.MsgHubNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_node.MsgNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_node.PlaceHolderNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_node.PythonServiceNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_node.ReActAgentNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_node.ReadTextServiceNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_node.SequentialPipelineNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_node.SwitchPipelineNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_node.UserAgentNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_node.WhileLoopPipelineNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_node.WorkflowNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_node.WorkflowNodeType": [[103, 4, 1, "", "AGENT"], [103, 4, 1, "", "COPY"], [103, 4, 1, "", "MESSAGE"], [103, 4, 1, "", "MODEL"], [103, 4, 1, "", "PIPELINE"], [103, 4, 1, "", "SERVICE"]], "agentscope.web.workstation.workflow_node.WriteTextServiceNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_utils": [[104, 6, 1, "", "deps_converter"], [104, 6, 1, "", "dict_converter"], [104, 6, 1, "", "is_callable_expression"], [104, 6, 1, "", "kwarg_converter"]]}, "objnames": {"0": ["py", "module", "Python module"], "1": ["py", "class", "Python class"], "2": ["py", "method", "Python method"], "3": ["py", "property", "Python property"], "4": ["py", "attribute", "Python attribute"], "5": ["py", "exception", "Python exception"], "6": ["py", "function", "Python function"]}, "objtypes": {"0": "py:module", "1": "py:class", "2": "py:method", "3": "py:property", "4": "py:attribute", "5": "py:exception", "6": "py:function"}, "terms": {"": [0, 1, 2, 3, 4, 6, 8, 9, 17, 18, 20, 21, 23, 24, 25, 26, 29, 30, 31, 32, 34, 35, 36, 37, 41, 50, 54, 59, 66, 67, 82, 84, 87, 89, 91, 102, 103, 104, 107, 108, 109, 110, 111, 112, 113, 114, 115, 118, 119, 121, 122, 123, 124, 126, 127], "0": [10, 13, 20, 21, 23, 24, 25, 26, 29, 30, 38, 40, 41, 54, 67, 81, 82, 85, 87, 88, 89, 90, 103, 110, 114, 121, 122, 123, 124], "0001": [54, 82], "0002": [54, 82], "001": [20, 22, 114], "0017594862": [20, 25], "002": [20, 26, 109, 114], "0023064255": [20, 26], "0028842222": [20, 26], "005519774276763201": [20, 30], "008599704": [20, 25], "009327292": [20, 26], "010071029": [20, 25], "014949671924114227": [20, 30], "019060475751757622": [20, 30], "025878139": [20, 25], "02675454691052437": [20, 30], "03": [20, 22, 119], "034d": [20, 21], "03629": [1, 7], "04": 119, "04692972": [20, 25], "04t19": [20, 25], "04t20": [54, 85], "05": [54, 82, 120], "05007221": [20, 25], "06": 41, "07": 120, "08": [20, 25, 120], "09": [54, 85], "0x16e516fb0": 124, "1": [1, 4, 6, 7, 10, 14, 16, 20, 21, 22, 25, 27, 29, 32, 36, 38, 40, 41, 42, 44, 45, 54, 56, 58, 60, 66, 67, 72, 73, 79, 82, 84, 85, 87, 88, 89, 90, 103, 109, 114, 115, 117, 120, 122, 123, 124], "10": [1, 7, 41, 54, 73, 82, 84, 85, 87, 117, 120], "100": [54, 75, 76, 124], "1000": [41, 54, 87], "1009": [20, 29], "102": [20, 21], "1024": [20, 30, 54, 66, 120], "1024x1024": [54, 67], "1024x1792": [54, 67], "104527_7def6u": 120, "105441414": [20, 25], "1080": [54, 56], "10\u5e74\u5185\u53ef\u80fd\u7684\u804c\u4e1a\u53d1\u5c55\u8d8b\u52bf": 41, "11": [54, 85], "1109": [54, 82], "111": [54, 85], "11186623": [20, 21], "113": [20, 29], "11434": [20, 25], "117": 120, "12": [20, 25, 26, 54, 85], "120": [54, 83], "12001": 121, "12002": 121, "123": [20, 25, 26, 114], "12345": [51, 52], "123456": [54, 85], "1247": [20, 21], "127": [20, 25, 90, 120, 121, 122, 124], "1277": [20, 21], "1280": [54, 56, 66], "129": 120, "12958129": [20, 25], "12t14": [20, 25], "13": [20, 25, 41], "14": [54, 85], "15": [41, 120], "150": [54, 85], "1536": [20, 26], "1589478378": [20, 26], "1677652288": [20, 26], "1703487403": [20, 30], "172": 120, "1792x1024": [54, 67], "17\u5c81": 41, "18": 123, "188": [54, 85], "1920": [54, 85], "1_code": [54, 67], "2": [1, 4, 6, 7, 20, 21, 22, 23, 25, 29, 30, 41, 42, 44, 45, 54, 56, 60, 67, 73, 82, 84, 85, 103, 114, 115, 120, 122, 123, 124], "20": 120, "200": [20, 21], "2016": [54, 85], "2021": [54, 82], "2023": [20, 25, 54, 82], "2024": [20, 22, 41, 119, 120], "203": [1, 4], "2048": [20, 27], "20th": [54, 85], "21": [20, 22, 26, 120], "211862": [54, 82], "215321638": [54, 85], "2154458": [20, 25], "217": [20, 30], "22": [20, 25, 54, 85, 119], "2210": [1, 7], "233488": [54, 87], "23\u5c81": 41, "24727": 120, "248": [20, 30], "24\u5c81": 41, "25": [20, 21], "250": [54, 85], "25395815": [54, 85], "2560": [54, 85], "256x256": [54, 67], "25\u5c81": 41, "26": [20, 25], "27": 120, "27\u5c81": 41, "284z": [54, 85], "28\u5c81": 41, "290": [20, 25], "294014": [54, 85], "298": [20, 25], "298087": [54, 85], "2ee7": [20, 21], "3": [1, 4, 6, 20, 21, 23, 24, 25, 27, 29, 41, 45, 54, 56, 67, 73, 82, 83, 85, 99, 103, 108, 109, 112, 114, 115, 117, 119, 120, 123, 124], "30": [20, 27, 54, 56, 82], "300": [46, 47, 54, 58, 59], "301": 120, "30\u5c81": 41, "31": [20, 30, 120], "32": 41, "3233": [54, 82], "325953000": [20, 25], "32\u5c81": 41, "3306": [54, 76], "34": [41, 120], "342": [54, 85], "35": 120, "35\u5c81": 41, "37": 123, "37db858ae738": [20, 21], "383809000": [20, 25], "38\u5c81": 41, "3\u5e74\u7684\u804c\u4e1a\u53d1\u5c55\u8def\u5f84\u56fe": 41, "4": [20, 26, 30, 54, 67, 82, 85, 103, 109, 114, 115, 119, 120, 123, 124], "40": [54, 85], "401": 91, "403": 91, "4096": 124, "40\u5c81": 41, "413": [54, 85], "416799z": [20, 25], "4217": [54, 85], "42\u5c81": 41, "43": [20, 25, 120], "43f7": [20, 21], "45": [20, 25, 41, 120], "455": [54, 82], "459b": [20, 21], "45\u5c81": 41, "46342": [54, 85], "466": [54, 82], "4709213000": [20, 25], "4799921000": [20, 25], "48000": [54, 66], "499127z": [20, 25], "4o": [20, 26, 54, 67, 119, 120], "5": [20, 23, 24, 41, 54, 56, 85, 86, 103, 109, 112, 114, 115, 119, 124], "50": [54, 85], "5000": [90, 121, 122], "5025959": [20, 25], "5043500667": [20, 25], "512x512": [54, 67, 114], "5191566416": [20, 25], "53": [54, 85], "54": 120, "550": [54, 85], "574818": [54, 85], "5785971": [20, 29], "59": [54, 85], "5m": [20, 25, 114], "6": 110, "60": [41, 54, 56], "60\u79d2": 41, "62": [54, 85], "6212": [20, 21], "6300": [54, 82], "639": [54, 67], "67911196": [54, 87], "7": [54, 85, 120], "7108fa70op6eqf": [20, 21], "720": [54, 66], "7200": [1, 2, 8, 51, 52, 53], "77": [20, 21, 120], "7b": 124, "7def6u": 120, "7e346eb5rvirbw": [20, 21], "7fde1f5atqsaln": [20, 21], "8": [20, 26], "8000": 124, "808c": [20, 21], "81": [20, 21], "8192": [1, 2, 8, 51, 52, 53], "82374": [54, 85], "8239375684858666781": [20, 30], "8450357913970947": [20, 21], "889": 120, "890": 120, "891": 120, "891b": [20, 21], "896": [20, 29], "8b": 114, "9": [20, 21, 26, 29, 108], "93e0": [20, 21], "9477984": [54, 82], "957d": [20, 21], "9595": [20, 21], "9667": [20, 21], "996523eb": [20, 21], "9dac": [20, 21], "A": [0, 1, 3, 5, 6, 7, 8, 13, 14, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 46, 47, 49, 51, 52, 53, 54, 56, 59, 64, 66, 67, 69, 70, 73, 75, 76, 77, 81, 82, 83, 84, 85, 87, 91, 93, 101, 102, 103, 109, 110, 115, 117, 118, 121, 122, 123, 127], "AND": [54, 81], "AS": 97, "And": [112, 119, 121], "As": [41, 110, 112, 115, 118, 121, 122, 123, 124], "At": 121, "But": 121, "By": [32, 36, 110, 115, 121, 122], "For": [1, 4, 20, 21, 23, 24, 25, 41, 45, 50, 51, 52, 54, 81, 82, 84, 86, 108, 109, 110, 112, 113, 114, 115, 116, 117, 118, 119, 121, 122, 123, 124, 125, 128], "If": [0, 1, 2, 4, 7, 8, 9, 11, 13, 14, 15, 16, 17, 18, 20, 21, 22, 26, 28, 30, 32, 34, 35, 36, 37, 41, 51, 52, 54, 56, 59, 66, 67, 69, 71, 79, 85, 86, 91, 101, 102, 108, 109, 110, 112, 114, 117, 118, 119, 121, 122, 123, 124, 126, 127], "In": [0, 14, 16, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 41, 45, 51, 52, 54, 56, 87, 107, 109, 110, 112, 113, 114, 115, 118, 119, 121, 122, 124, 125, 127], "It": [1, 9, 20, 21, 35, 41, 45, 54, 59, 82, 84, 87, 88, 89, 103, 105, 107, 110, 112, 113, 114, 115, 117, 118, 119, 121, 122, 123, 124, 125, 129], "Its": 115, "NOT": [54, 60], "No": [54, 82, 110], "Not": 123, "OR": [54, 81], "Of": [32, 36, 115, 122], "On": 108, "One": [0, 31, 123], "Or": [54, 85, 113, 114, 122, 123], "Such": 119, "That": [115, 117], "The": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 45, 46, 47, 50, 51, 52, 53, 54, 56, 58, 59, 60, 62, 63, 64, 66, 67, 69, 71, 73, 75, 76, 77, 79, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 93, 102, 103, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125], "Their": [122, 123], "Then": [112, 121, 122, 123], "There": [17, 18, 119], "These": [110, 113, 117, 118, 119, 122], "To": [1, 6, 20, 23, 25, 30, 41, 43, 54, 58, 108, 109, 110, 112, 113, 114, 115, 116, 117, 119, 120, 121, 122, 123, 125, 127], "With": [20, 21, 41, 107, 110, 121, 123, 127], "_": [38, 39, 40, 110], "__": [38, 39, 40], "__call__": [1, 5, 20, 22, 24, 112, 113, 114, 121], "__delattr__": 118, "__fields__": [54, 56], "__getattr__": [117, 118], "__getitem__": 117, "__init__": [0, 1, 2, 3, 4, 6, 7, 8, 9, 11, 13, 14, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 40, 41, 42, 43, 44, 45, 46, 47, 49, 51, 52, 53, 54, 55, 56, 57, 58, 71, 73, 88, 89, 92, 93, 100, 102, 103, 112, 114, 117, 118, 123, 124], "__main__": [54, 56, 124], "__module__": [17, 18], "__name__": [17, 18, 54, 56, 112, 117, 124], "__serialized_attr": [17, 18], "__setattr__": [117, 118], "__setitem__": 117, "__str__": 121, "__type": 118, "_agentmeta": [1, 2, 8, 46, 47], "_code": [32, 33], "_data_to_doc": 124, "_data_to_index": 124, "_default_meta_prompt_templ": 41, "_default_system_prompt": [54, 79], "_default_token_limit_prompt": [54, 79], "_docs_to_nod": 124, "_get_timestamp": 118, "_load_index": 124, "_messag": 46, "_monitor": 120, "_parse_respons": 114, "_print_tabl": 120, "_require_auth": 91, "_upb": 46, "_welco": [54, 67], "a0dc436c": [20, 21], "a2c4g": [20, 21], "a75a1b22": [20, 21], "a_json_dictionari": 115, "aaai": [54, 82], "aaaif": [54, 82], "aac": [54, 67], "ab": [1, 7, 54, 81], "abc": [1, 5, 14, 15, 20, 21, 22, 23, 25, 26, 27, 30, 32, 35, 41, 42, 43, 103, 115, 118], "abdullah": [54, 82], "abil": [41, 110, 115, 123], "abl": [107, 123], "abort": 91, "about": [1, 4, 20, 21, 22, 41, 54, 56, 85, 102, 105, 109, 110, 112, 114, 121, 123, 126, 129], "abov": [20, 21, 22, 41, 109, 110, 115, 117, 119, 121, 123, 125], "absolut": 123, "abstract": [1, 5, 14, 15, 32, 35, 42, 43, 103, 107, 112, 118], "abstractmethod": [113, 115], "abtest": 41, "ac88": [20, 21], "academ": 41, "accept": [118, 119, 124], "access": [41, 91, 116, 118, 121, 122, 124], "access_token": 91, "accident": [54, 76, 77], "accommod": [1, 2, 8, 41, 42, 43, 44, 51, 52, 53, 107], "accompani": 41, "accomplish": 123, "accord": [32, 36, 41, 114, 115, 117, 119, 121, 123, 124, 127], "accordingli": [20, 28, 109, 117, 121, 124], "account": [54, 76], "accrodingli": 121, "accur": [41, 88, 89, 123], "accuraci": [41, 54, 67, 88, 89, 123], "achiev": [41, 110, 115, 119], "acquaint": 122, "acquir": 41, "acquisit": 41, "acronym": [54, 82], "across": [41, 113, 123], "act": [1, 7, 20, 28, 39, 54, 84, 103, 110, 112, 113, 119], "action": [1, 2, 8, 41, 54, 56, 58, 99, 102, 107, 110, 113, 125], "action_": 125, "action_click": [0, 54, 55, 56, 125], "action_press_kei": [0, 54, 55, 56], "action_scroll_down": [0, 54, 55, 56], "action_scroll_up": [0, 54, 55, 56], "action_typ": [0, 54, 55, 56], "action_visit_url": [0, 54, 55, 56, 125], "activ": [0, 12, 41, 108, 120, 122], "actor": [105, 107, 129], "actual": [0, 1, 7, 31, 38, 39, 40, 41, 109], "acycl": 102, "ad": [1, 3, 4, 6, 9, 14, 15, 16, 20, 21, 41, 102, 108, 110, 112, 117, 118, 119, 127], "ada": [20, 26, 109, 114], "adapt": [41, 119, 123], "add": [0, 1, 6, 14, 15, 16, 31, 41, 54, 58, 67, 73, 102, 110, 111, 112, 113, 115, 116, 117, 118, 119, 123, 124, 127], "add_argu": 124, "add_as_nod": [100, 102], "add_data_as_knowledg": [0, 42, 44, 124], "add_rpcagentservicer_to_serv": [0, 46, 49], "added_not": 123, "addit": [1, 9, 17, 18, 19, 41, 54, 59, 79, 84, 91, 107, 112, 115, 117, 121, 127], "addition": [109, 113, 118, 121], "address": [17, 19, 41, 54, 75, 76, 85, 112, 121, 122, 127], "address_obj": [54, 85], "address_str": [54, 85], "aden": [54, 85], "adept": [41, 123], "adher": [41, 88, 89, 117], "adjust": [41, 54, 87, 112], "adorn": 41, "adult": 41, "advanac": 124, "advanc": [20, 21, 32, 36, 41, 42, 44, 45, 107, 109, 110, 119, 124], "advantech": [54, 82], "adventur": 110, "adversari": [1, 2, 8], "advic": 41, "affect": [54, 67], "affili": [54, 82], "aforement": 124, "after": [1, 2, 24, 25, 41, 51, 52, 53, 54, 56, 79, 109, 110, 114, 115, 116, 121, 122, 124, 125], "ag": 41, "again": [41, 54, 87, 127], "against": 107, "agent": [0, 11, 17, 19, 20, 28, 31, 35, 38, 39, 40, 41, 42, 44, 46, 47, 49, 51, 52, 53, 54, 56, 73, 79, 84, 99, 100, 103, 105, 106, 108, 111, 113, 114, 116, 117, 118, 119, 123, 126, 129], "agent1": [0, 31, 110, 113], "agent1_info": 121, "agent2": [0, 31, 110, 113], "agent2_info": 121, "agent3": [0, 31, 110, 113], "agent4": [110, 113], "agent5": 113, "agent_class": [1, 2, 8], "agent_class_nam": [1, 2], "agent_config": [0, 8, 46, 47, 110], "agent_dir": [51, 52], "agent_exist": [0, 51, 53], "agent_fil": 52, "agent_id": [0, 1, 2, 8, 46, 47, 49, 51, 53, 121], "agent_list": 121, "agent_memori": 121, "agenta": 121, "agentb": 121, "agentbas": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 31, 42, 44, 51, 52, 53, 110, 113, 116, 117, 121, 123], "agentcallerror": [0, 11, 106], "agentcreationerror": [0, 11, 106], "agentscop": [109, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 123, 125, 128], "agentscope_tutorial_rag": [42, 44, 124], "agentserv": [51, 52], "agentservererror": [0, 11, 106], "agentservernotaliveerror": [0, 11, 106], "agentserverservic": [0, 51, 53], "agent\u7684\u6280\u80fd\u70b9": 41, "aggreg": [88, 89], "aggregator_prompt": [88, 89], "agre": 115, "agreement": [107, 115], "ai": [20, 22, 23, 25, 45, 54, 79, 109, 112, 114], "aim": [41, 110], "akif": [54, 82], "al": 14, "album": [54, 85], "algorithm": [1, 7, 54, 82, 112, 115], "alic": [109, 119], "align": [20, 28, 41], "alik": 41, "aliv": [11, 46, 47, 49, 51, 53, 110], "aliyun": [20, 21, 54, 66], "all": [0, 1, 2, 9, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23, 24, 25, 29, 30, 31, 38, 40, 41, 42, 46, 47, 49, 51, 52, 53, 54, 62, 73, 79, 81, 88, 89, 103, 108, 109, 110, 112, 113, 115, 117, 118, 119, 121, 122, 123, 124, 125], "allianc": 41, "alloc": 110, "alloi": [54, 67], "allow": [20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 32, 35, 36, 37, 54, 56, 59, 76, 77, 103, 107, 110, 112, 113, 114, 115, 116, 118, 121, 122, 123, 125, 126], "allow_change_data": [54, 76, 77], "allow_miss": 35, "along": 122, "alreadi": [8, 20, 28, 54, 63, 64, 103, 108, 117, 123, 124, 127], "also": [1, 2, 3, 4, 6, 7, 8, 9, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 41, 110, 111, 113, 114, 115, 118, 120, 121, 122, 123, 124, 125, 126], "altern": [20, 21, 22, 108, 119, 122], "alwai": 41, "am": 123, "amin": [20, 30], "among": [0, 31, 38, 40, 41, 110, 112, 113, 114], "an": [1, 2, 4, 5, 6, 7, 8, 11, 17, 18, 19, 20, 21, 23, 24, 27, 29, 30, 38, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 51, 52, 54, 59, 60, 62, 63, 64, 67, 79, 82, 84, 93, 98, 99, 103, 105, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 126, 127, 129], "analog": 107, "analys": [54, 86], "analysi": 41, "analyst": 41, "analyz": 41, "ancestor": [54, 85], "andnot": [54, 81], "angel": [20, 29], "ani": [1, 2, 3, 4, 6, 8, 9, 12, 13, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 32, 34, 38, 39, 40, 41, 42, 43, 45, 50, 51, 53, 54, 60, 62, 63, 64, 69, 71, 73, 75, 76, 77, 84, 86, 91, 102, 103, 112, 113, 117, 118, 119, 121, 122, 123, 126, 127], "annot": [54, 56, 117], "announc": [0, 31, 103, 110, 113], "anoth": [1, 6, 54, 84, 103, 110, 112, 113, 117, 121, 122, 123], "answer": [41, 42, 43, 88, 89, 107, 123, 124], "anthropic_api_kei": [20, 23], "antidot": 115, "api": [0, 13, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 54, 66, 67, 73, 79, 81, 82, 84, 85, 93, 94, 107, 108, 109, 112, 116, 117, 118, 119, 120, 121], "api_kei": [20, 21, 22, 24, 26, 29, 30, 54, 66, 67, 73, 84, 85, 109, 110, 114, 117, 119, 123], "api_token": 24, "api_url": [20, 24, 27, 114, 124], "app": 124, "appeal": [41, 123], "appear": 41, "append": [14, 15, 16, 17, 18], "appli": [118, 121], "applic": [35, 41, 42, 44, 91, 98, 99, 101, 105, 107, 108, 109, 111, 112, 113, 115, 119, 123, 126, 129], "approach": [41, 54, 82, 109, 113], "appropri": [41, 54, 56, 123], "ar": [1, 2, 7, 8, 14, 15, 16, 17, 18, 20, 21, 22, 23, 24, 25, 29, 30, 32, 36, 37, 38, 39, 40, 41, 51, 52, 54, 56, 59, 60, 73, 79, 85, 86, 93, 102, 107, 108, 109, 110, 111, 112, 113, 114, 115, 117, 118, 119, 121, 122, 123, 124, 125, 126, 127], "arc": 41, "archaic": 41, "architectur": [107, 112], "area": [41, 122], "arg": [1, 2, 3, 4, 6, 7, 8, 9, 13, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 42, 43, 46, 47, 54, 73, 102, 110, 112, 113, 117, 118, 122, 124], "argpars": 124, "argument": [0, 1, 2, 7, 11, 13, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 51, 52, 54, 58, 59, 71, 73, 84, 101, 102, 117, 121, 122], "argument1": 117, "argument2": 117, "argumentnotfounderror": [0, 11, 106], "argumentpars": 124, "argumenttypeerror": [0, 11, 106], "aria": [54, 56], "aria_label": [0, 54, 55, 56], "arm": 41, "around": 41, "arrai": 13, "arrow": 121, "arrowdown": [54, 56], "arrowright": [54, 56], "arrowup": [54, 56], "art": 41, "arthur": 41, "articl": [54, 82], "articul": 41, "artifici": [54, 82, 123], "arxiv": [1, 7, 54, 80, 117], "arxiv_search": [0, 54, 80, 81, 117], "as_host": 122, "as_port": 122, "as_serv": [0, 51, 52, 121], "as_studio": 122, "as_workflow": 122, "asdigraph": [95, 100, 102], "asia": [54, 85], "ask": [32, 36, 37, 41, 115, 117, 126, 128], "aslan": [54, 82], "asmanag": [0, 13], "asp": [54, 84], "aspir": 41, "asr": 99, "assert": 121, "assign": [110, 111, 118, 121, 124], "assist": [1, 2, 7, 17, 18, 19, 20, 21, 23, 24, 25, 26, 29, 30, 109, 112, 115, 116, 118, 119, 123, 126], "associ": [54, 85, 91, 102, 110], "assum": [41, 54, 84, 110, 114], "astut": 41, "astyp": 124, "async": [54, 58], "async_run_code_on_notebook": [0, 54, 57, 58], "asynchron": [54, 56], "attach": [20, 21, 32, 36, 41, 109, 118, 123], "attempt": 110, "attent": 41, "attitud": 41, "attract": [41, 54, 85, 123], "attraction_review": [54, 85], "attribut": [14, 16, 17, 19, 54, 56, 82, 112, 115, 117, 118, 119, 122, 124], "attribute_nam": 118, "attributeerror": 118, "au": [54, 81], "audienc": [1, 2, 41, 113], "audio": [13, 20, 21, 54, 66, 67, 98, 99, 107, 109, 112, 114, 117, 118, 119], "audio2text": [95, 96, 99], "audio_fil": [54, 67], "audio_file_url": [54, 67], "audio_path": [54, 66, 67, 99], "audio_term": 98, "augment": [43, 105, 129], "authent": [54, 84, 91, 117], "author": [24, 54, 81, 82, 91, 114, 117], "authorit": 41, "auto": [51, 53, 124], "automat": [1, 2, 54, 73, 107, 110, 112, 114, 115, 116, 118, 121], "autonom": [107, 110], "auxiliari": 107, "avail": [20, 22, 28, 54, 59, 82, 93, 99, 109, 112, 113, 116, 117, 121, 126], "avatar": 99, "avoid": [13, 41, 54, 75, 76, 77, 103, 121, 123, 124], "awar": [115, 123], "award": [54, 85], "azur": [20, 23], "azure_api_bas": [20, 23], "azure_api_kei": [20, 23], "azure_api_vers": [20, 23], "b": [54, 70, 73, 117, 121, 127], "b340b95007a4": [20, 21], "b3771cba3788": [20, 21], "b54ffeb8": [20, 21], "b986": [20, 21], "back": [121, 122, 123, 124, 125], "background": [41, 121], "backquot": [54, 56], "backslash": [54, 56], "backspac": [54, 56], "balanc": 41, "band": 41, "bank": [1, 6, 42, 44], "bar": 122, "bard": 41, "base": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 51, 52, 53, 54, 56, 58, 66, 67, 71, 72, 73, 82, 88, 89, 93, 99, 101, 102, 103, 105, 107, 110, 112, 113, 114, 115, 117, 118, 119, 121, 123, 124, 125, 129], "base64": 119, "base_dir": 120, "base_url": [20, 30], "baseembed": 45, "basemodel": [54, 56, 115], "baseretriev": 45, "bash": [54, 60, 124], "basic": [20, 22, 41, 45, 109, 110, 118, 124, 125], "batch": 43, "battl": 41, "battlefield": 41, "bayesian": [54, 87], "bearer": [24, 114], "beauti": [54, 66], "becam": 41, "becaus": [13, 20, 25, 54, 56, 121], "becom": [114, 122, 126], "been": [1, 2, 13, 20, 28, 88, 89, 103, 116, 121, 127], "befit": 41, "befor": [13, 14, 15, 16, 41, 54, 73, 79, 99, 110, 118, 121, 122], "begin": [0, 11, 20, 22, 31, 32, 33, 37, 41, 110, 119], "beginn": [119, 122], "behalf": [54, 84], "behavior": [1, 5, 110, 112, 118, 123], "behind": 41, "being": [41, 46, 47, 54, 59, 102, 110, 124], "believ": 41, "below": [1, 2, 32, 37, 110, 112, 113, 115, 117, 119, 123, 126], "besid": [110, 112, 115, 118, 125], "best": [119, 123], "beta": [6, 125], "better": [14, 16, 20, 22, 41, 88, 89, 109, 123, 125, 127], "between": [14, 16, 20, 21, 27, 28, 32, 33, 34, 37, 54, 70, 102, 107, 109, 110, 111, 113, 115, 117, 118, 119, 121, 123], "bias": [41, 88, 89], "bigmodel": [20, 30], "bin": 108, "binari": 13, "bing": [54, 56, 73, 84, 103, 117, 125], "bing_api_kei": [54, 84], "bing_search": [0, 54, 73, 80, 84, 117], "bingsearchservicenod": [95, 100, 103], "bingwebsearch": 41, "bite": 41, "blank": 41, "blob": [20, 25, 58, 59, 93], "block": [1, 6, 13, 32, 33, 34, 54, 58, 93, 110, 113, 115, 121, 124], "blue": [20, 25], "blueprint": [20, 30], "blunt": 41, "bob": [20, 21, 23, 24, 25, 29, 30, 109, 119], "bodi": [20, 22, 38, 39, 40], "bomb": 59, "book": [41, 123], "bool": [0, 1, 2, 3, 4, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23, 25, 26, 28, 29, 30, 32, 34, 35, 36, 37, 38, 39, 40, 42, 43, 44, 45, 46, 47, 50, 51, 52, 53, 54, 56, 59, 63, 64, 69, 73, 76, 77, 85, 86, 88, 89, 90, 99, 103, 104, 112, 115, 117, 118], "boolean": [14, 16, 54, 62, 63, 64, 81, 115, 116, 117], "boost": 41, "borrow": 93, "bot": 112, "both": [14, 15, 16, 41, 54, 59, 85, 88, 89, 107, 115, 116, 117, 121, 124, 127], "bound": 41, "box": [110, 125], "branch": [39, 113], "brave": 41, "braveri": 41, "break": [38, 39, 40, 109, 110, 113, 115], "break_condit": 113, "break_func": [38, 39, 40], "breviti": [112, 113, 117, 118], "bridg": [20, 28], "brief": [121, 127], "brilliant": 123, "bring": 41, "broadcast": [0, 31, 103, 110], "brought": 121, "brows": [54, 84, 125], "browser": [0, 54], "browser_height": [54, 56], "browser_vis": [54, 56], "browser_width": [54, 56], "budget": 41, "buffer": 48, "bug": [126, 128], "build": [1, 6, 20, 22, 41, 45, 102, 105, 107, 109, 112, 115, 119, 123, 124, 125, 129], "build_dag": [95, 100, 102], "built": [54, 79, 107, 110, 111, 112, 115, 121, 123], "bulk": [118, 122], "burgeon": 41, "busi": [41, 54, 84, 85, 123], "button": [122, 125], "bygon": 41, "byte": [13, 54, 56, 59], "c": [0, 54, 73, 117, 121], "c462009dec4d": [20, 21], "cach": [0, 1, 2, 13, 51, 52, 53, 120, 123], "cache_dir": [0, 13, 120], "cache_text_embed": [0, 13], "cacheagentscop": 0, "cai": [54, 82], "call": [1, 2, 8, 11, 13, 17, 18, 19, 20, 21, 22, 23, 24, 26, 27, 29, 30, 41, 46, 47, 49, 51, 53, 54, 56, 58, 67, 73, 93, 102, 103, 109, 110, 111, 112, 113, 114, 115, 117, 118, 120, 121, 123, 124, 125], "call_agent_func": [0, 46, 47, 49, 51, 53], "call_credenti": 49, "call_in_thread": [0, 46, 47], "callabl": [1, 5, 14, 15, 16, 38, 39, 40, 41, 54, 56, 69, 73, 86, 98, 102, 104, 118], "calm": 41, "campaign": 41, "can": [0, 1, 2, 3, 4, 6, 7, 8, 9, 14, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 29, 30, 32, 36, 37, 41, 42, 44, 45, 51, 52, 53, 54, 56, 59, 66, 73, 82, 85, 88, 89, 102, 103, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127], "candid": 41, "cannot": [1, 7, 42, 43, 115, 122, 124], "capabl": [41, 105, 107, 115, 117, 123, 129], "capac": [54, 84], "captain": 41, "caption": [54, 85], "captiv": 41, "captur": [41, 54, 59, 111, 123], "care": [54, 60], "career": 41, "carri": 41, "carrier": [107, 118], "case": [38, 40, 41, 51, 52, 103, 110, 112, 124], "case1": 113, "case2": 113, "case_oper": [38, 39, 40, 113], "castl": 41, "cat": [54, 60, 81, 119], "categor": [107, 113], "categori": [41, 54, 85, 87, 114], "caus": [20, 21, 41], "caution": 122, "cautiou": 41, "cautious": 122, "cd": [54, 60, 108, 110, 125, 127], "cdn": [54, 85], "cell": [54, 58], "cells_length": [0, 54, 57, 58], "central": [105, 107, 108, 121, 122, 129], "centric": 107, "certain": [11, 14, 15, 41, 102], "chain": [1, 7], "challeng": [41, 123], "chanc": 110, "chang": [1, 4, 41, 54, 56, 60, 76, 77, 93, 107, 122, 123], "channel": [46, 49, 107], "channel_credenti": 49, "chao": [54, 82], "charact": [32, 37, 41, 110, 115], "characterist": [41, 112], "chart": 121, "chat": [12, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 94, 98, 99, 109, 110, 113, 116, 117, 118, 119, 126], "chatbot": [41, 98, 119], "chatcmpl": [20, 26], "check": [13, 14, 15, 16, 32, 34, 46, 47, 49, 50, 51, 53, 54, 59, 73, 86, 91, 99, 101, 104, 110, 112, 121, 127], "check_uuid": [95, 96, 99], "check_win": 110, "checkout": 127, "chemic": [54, 84], "chengm": [54, 82], "child": 122, "children": 41, "chines": [41, 54, 82, 85], "chinesesystempromptgener": [0, 41, 123], "chivalr": 41, "chivalri": 41, "choic": [1, 6, 20, 21, 23, 26, 29, 30, 110, 114], "choos": [1, 6, 41, 107, 109, 110, 115, 121, 122, 123], "chosen": [17, 18, 19, 41, 54, 56, 110, 122], "chunk": [1, 2, 43, 124], "chunk_lin": 124, "chunk_overlap": 124, "chunk_siz": 124, "citi": [54, 67, 85], "claim": 123, "clarifi": 41, "clariti": 41, "class": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 40, 41, 42, 43, 44, 45, 46, 47, 49, 51, 52, 53, 54, 56, 58, 71, 72, 73, 88, 89, 93, 102, 103, 110, 112, 113, 114, 115, 116, 117, 119, 121, 122, 123, 124], "classic": 115, "classmethod": [1, 2, 13, 17, 18, 19, 20, 24, 51, 52, 54, 73], "classvar": [54, 56], "claud": [20, 23], "clean": [14, 15, 16, 102], "clear": [0, 13, 14, 15, 16, 41, 46, 49, 51, 53, 113, 118, 123, 127], "clear_audi": [0, 1, 2], "clear_exist": 13, "clear_model_config": [0, 13], "clearer": 111, "clearli": [41, 123], "click": [54, 56, 122, 125], "clickabl": [54, 56], "client": [8, 17, 19, 20, 26, 30, 41, 46, 47, 49, 114, 121], "client_arg": [20, 24, 26, 30, 114], "climax": 41, "clone": [8, 46, 47, 49, 51, 53, 108, 125], "clone_ag": [0, 46, 47, 49, 51, 53], "clone_inst": [1, 8], "close": [0, 32, 34, 54, 55, 56, 122], "cloud": [20, 22], "clspipelin": 113, "clue": 41, "cmpl": [20, 29], "cn": [20, 22, 30], "co": [54, 81], "coach": 41, "code": [0, 1, 2, 3, 4, 13, 20, 21, 31, 32, 33, 34, 41, 48, 54, 56, 58, 59, 85, 86, 93, 101, 102, 103, 108, 110, 112, 113, 114, 115, 117, 118, 120, 121, 122, 124, 126], "code_block_pars": [0, 32], "code_dir": [0, 13], "codebas": 128, "codesplitt": 124, "coher": [88, 89, 112, 118], "collabor": [112, 113, 126], "colleagu": 41, "collect": [41, 54, 75, 88, 89, 103, 112, 117, 124], "color": [17, 18, 20, 25, 111], "column": 122, "com": [20, 21, 22, 25, 26, 29, 45, 54, 56, 58, 59, 66, 67, 81, 84, 85, 88, 89, 93, 108, 117, 118, 119, 124, 125, 127], "combat": 41, "combin": [20, 22, 41, 115, 119], "come": [112, 117, 122, 124], "command": [41, 51, 52, 54, 60, 99, 101, 108, 121, 122, 124], "comment": 41, "commit": 41, "common": [0, 5, 20, 21, 23, 24, 30, 54, 61, 92, 121, 124], "commun": [41, 105, 109, 110, 113, 121, 122, 123, 127, 128, 129], "compar": [32, 36, 41, 54, 69, 113, 115, 121, 127], "compare_in_dialog": [0, 41, 123], "compare_with_queri": [0, 41, 123], "compared_system_prompt": [41, 123], "comparison": [54, 82, 123], "compat": [20, 27, 107, 116, 119, 124], "compel": [41, 123], "compet": 41, "competit": 41, "competitor": 41, "compil": [100, 102, 103, 122], "compile_workflow": [95, 100, 101], "compiled_filenam": [101, 102], "complet": [20, 23, 25, 26, 29, 41, 42, 44, 54, 82, 115, 117, 120, 121], "completion_token": [13, 20, 23, 26, 29, 30, 120, 124], "complex": [41, 107, 109, 112, 113, 115, 121, 122, 123], "compli": [41, 101], "complic": [107, 124], "compon": [42, 43, 45, 105, 107, 122, 124, 129], "compos": [45, 112, 124], "comprehens": [41, 88, 89, 112], "compress": 49, "compris": [107, 109], "comput": [14, 16, 54, 56, 70, 82, 102, 107, 112, 117, 121, 122], "computedfieldinfo": [54, 56], "comrad": 41, "conan": 41, "concept": [45, 110, 113, 121, 124], "conceptu": 41, "concern": 41, "concis": [41, 127], "conclus": 41, "concret": 118, "condit": [38, 39, 40, 41, 103, 110, 113, 123], "condition_func": [38, 39, 40], "condition_oper": [38, 40], "conduct": 41, "conduit": 113, "conf": [54, 82], "confer": [54, 82], "confid": [54, 59], "confidenti": 41, "config": [0, 1, 2, 3, 4, 6, 7, 8, 13, 20, 21, 23, 24, 26, 30, 41, 42, 44, 46, 47, 49, 51, 52, 53, 54, 56, 88, 89, 101, 102, 109, 121, 122, 124], "config_nam": [0, 13, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 109, 110, 114, 116, 119, 121, 123, 124], "config_path": 101, "configdict": [54, 56], "configur": [1, 2, 3, 4, 7, 13, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 41, 42, 43, 44, 45, 54, 56, 90, 101, 102, 103, 109, 110, 112, 115, 122, 123], "conflict": 41, "conform": [54, 56], "connect": [1, 2, 17, 19, 46, 47, 102, 107, 122, 126], "connect_exist": 8, "consid": [41, 124], "consider": [20, 22], "consist": [41, 110, 111, 112, 118, 119, 122], "constant": [0, 95, 96, 106], "constraint": [20, 22, 41, 119, 123], "construct": [32, 36, 41, 54, 58, 102, 110, 112, 113, 115, 117, 118], "constructor": [32, 36, 41, 46, 49, 54, 71, 114, 117], "consult": 41, "consum": [41, 121], "consumpt": 121, "contain": [0, 1, 7, 17, 18, 24, 25, 32, 36, 37, 38, 39, 40, 41, 51, 52, 54, 59, 60, 62, 63, 64, 66, 67, 75, 76, 77, 79, 82, 83, 87, 101, 102, 115, 117, 119, 121, 122, 124], "content": [2, 6, 7, 9, 11, 18, 19, 21, 23, 24, 25, 26, 29, 30, 33, 34, 35, 36, 37, 43, 45, 56, 62, 63, 64, 66, 67, 71, 79, 81, 82, 84, 85, 86, 87, 94, 106, 107, 109, 110, 111, 112, 114, 116, 117, 118, 119, 121, 122, 124], "content1": [32, 36], "content2": [32, 36], "content_hint": [0, 32, 33, 34, 37, 110, 115], "contentembed": [20, 22], "context": [20, 25, 41, 46, 49, 51, 53, 54, 56, 93, 112, 113, 118, 127], "contextmanag": 93, "contextu": 123, "continu": [38, 39, 40, 41, 107, 109, 110, 112, 113, 115, 119, 122], "contrast": 115, "contribut": [88, 89, 105, 122, 126, 128, 129], "control": [20, 25, 35, 38, 39, 40, 41, 105, 110, 113, 114, 115, 121, 129], "convei": 41, "conveni": [115, 123], "convers": [14, 16, 20, 21, 22, 23, 24, 25, 29, 30, 41, 54, 67, 73, 110, 111, 112, 114, 119, 121, 123], "conversation_with_rag_ag": [42, 44], "convert": [1, 2, 20, 21, 32, 34, 45, 54, 66, 67, 73, 93, 98, 99, 104, 115, 117, 119, 122], "convert_url": [0, 20, 21], "cook": 41, "cookbook": 118, "coordin": [54, 56], "copi": [42, 44, 100, 103, 124], "copynod": [95, 100, 103], "copyright": 41, "core": [41, 45, 107, 110, 112, 113, 124], "cornerston": 112, "correct": [41, 121, 122], "correctli": [54, 56, 121, 122], "correspond": [1, 6, 32, 34, 35, 36, 37, 38, 39, 40, 41, 49, 54, 56, 75, 107, 109, 110, 114, 115, 121, 122, 123], "cos_sim": [0, 54, 68, 70, 117], "cosin": [54, 70, 117], "cost": [41, 123], "could": [20, 23, 41, 54, 84, 119, 123], "counselor": 41, "count": [94, 120], "count_openai_token": [0, 92, 94], "counterpart": 39, "countri": [54, 85], "coupl": [54, 85], "cours": [32, 36, 115, 122], "court": 41, "courteou": 41, "cover": [0, 41], "cpu": [114, 121, 122, 123], "craft": [41, 112, 119, 123], "creat": [0, 1, 2, 9, 11, 17, 18, 19, 20, 23, 26, 29, 30, 31, 41, 46, 47, 49, 51, 53, 54, 62, 67, 93, 103, 110, 112, 115, 118, 119, 121, 122, 123], "create_ag": [0, 46, 47, 49, 51, 53], "create_directori": [0, 54, 61, 62, 117], "create_fil": [0, 54, 61, 62, 117], "create_object": 124, "create_tempdir": [0, 92, 93], "create_timestamp": 124, "createagentrequest": [51, 53], "created_at": [20, 25], "creation": [46, 47, 118, 122], "creativ": 41, "creator": 41, "crime": 41, "crimin": 41, "criteria": [117, 118], "critic": [0, 12, 13, 88, 89, 111, 118, 119], "crown": 41, "crucial": [41, 88, 89, 110, 111, 123], "crucibl": 41, "crusad": 41, "cse": [54, 84], "cse_id": [54, 84], "csv": 124, "cuisin": 41, "culinari": 41, "cultiv": 41, "cultur": 41, "cun": 41, "curat": 112, "currenc": [41, 54, 85], "current": [1, 2, 3, 4, 6, 14, 15, 16, 38, 39, 40, 41, 54, 56, 59, 60, 62, 79, 93, 114, 117, 118, 120, 121, 122, 123, 124, 125], "custom": [41, 42, 44, 51, 52, 54, 84, 99, 105, 107, 109, 110, 111, 114, 117, 118, 119, 121, 122, 123, 129], "custom_agent_class": [51, 52, 121], "cut": 41, "cycle_dot": [95, 96, 99], "d": [121, 124], "dag": [102, 107], "dai": 110, "daili": 41, "dall": [20, 26, 54, 67, 114, 120], "dall_": 27, "dashscop": [20, 21, 54, 66, 116, 117, 119], "dashscope_chat": [20, 21, 114, 116], "dashscope_image_synthesi": [20, 21, 114], "dashscope_image_to_text": [0, 54, 65, 66, 117], "dashscope_model": [0, 20], "dashscope_multimod": [20, 21, 114], "dashscope_servic": [54, 65], "dashscope_text_embed": [20, 21, 114], "dashscope_text_to_audio": [0, 54, 65, 66, 117], "dashscope_text_to_imag": [0, 54, 65, 66, 117], "dashscopechatwrapp": [0, 20, 21, 114, 116], "dashscopeimagesynthesiswrapp": [0, 20, 21, 114], "dashscopemultimodalwrapp": [0, 20, 21, 114], "dashscopetextembeddingwrapp": [0, 20, 21, 114], "dashscopewrapperbas": [0, 20, 21], "data": [1, 3, 4, 6, 13, 15, 20, 26, 28, 30, 41, 42, 43, 44, 45, 46, 47, 54, 56, 63, 69, 76, 77, 82, 85, 98, 102, 103, 107, 112, 113, 114, 115, 118, 119, 124], "data_dirs_and_typ": [42, 44, 124], "data_process": 124, "databas": [13, 41, 42, 43, 45, 54, 75, 76, 77, 82, 117], "dataset": 124, "date": [20, 21, 23, 24, 25, 29, 30, 41, 126], "datetim": 124, "daytim": [110, 115], "db": [54, 82, 120], "dblp": [54, 80, 117], "dblp_search_author": [0, 54, 80, 82, 117], "dblp_search_publ": [0, 54, 80, 82, 117], "dblp_search_venu": [0, 54, 80, 82, 117], "dead": 122, "dead_nam": 110, "dead_play": 110, "deal": 123, "death": 110, "debug": [0, 12, 13, 90, 110, 111, 115, 123], "decid": [14, 15, 20, 22, 110, 119, 123, 124], "decis": [20, 22, 41], "decod": [1, 4, 91], "decode_jwt": [0, 90, 91], "decor": 91, "decoupl": [109, 114, 115], "dedic": 41, "deduc": [41, 110], "deduct": 110, "deed": 41, "deep": [41, 54, 81, 123, 124], "deepcopi": [42, 44], "deepli": 41, "def": [54, 73, 110, 112, 113, 114, 115, 116, 117, 118, 123, 124], "default": [0, 1, 2, 3, 4, 6, 7, 8, 9, 11, 12, 13, 14, 16, 17, 18, 19, 20, 21, 22, 23, 25, 26, 27, 29, 30, 31, 32, 34, 36, 37, 38, 39, 40, 41, 42, 43, 45, 46, 47, 51, 52, 53, 54, 56, 58, 59, 64, 66, 67, 69, 73, 75, 76, 77, 79, 81, 82, 83, 84, 85, 88, 89, 90, 99, 102, 103, 107, 112, 115, 117, 118, 121, 122, 123, 124], "default_ag": 113, "default_oper": [38, 39, 40], "defend": 41, "defer": 112, "defin": [1, 2, 5, 8, 41, 42, 44, 49, 54, 56, 69, 73, 102, 109, 112, 113, 117, 118, 122, 124], "definit": [54, 84, 107, 118], "del": 118, "delet": [0, 1, 2, 14, 15, 16, 31, 46, 47, 49, 51, 52, 53, 54, 56, 62, 110, 117, 118, 121, 122], "delete_ag": [0, 46, 47, 49, 51, 53, 121], "delete_all_ag": [0, 46, 47, 49, 51, 53, 121], "delete_directori": [0, 54, 61, 62, 117], "delete_fil": [0, 54, 61, 62, 117], "demand": 112, "demeanor": 41, "demograph": 123, "demonstr": [110, 112, 123], "denot": 118, "dep_opt": 103, "dep_var": 104, "depart": [54, 82], "depend": [14, 15, 16, 54, 81, 84, 85, 102, 107, 121], "deploi": [20, 27, 109, 121], "deploy": [107, 109, 114, 121], "deprec": [1, 2], "deprecated_model_typ": [0, 20, 21, 26, 27], "deps_convert": [95, 100, 104], "depth": [41, 112], "deriv": 112, "describ": [54, 66, 67, 73, 110, 113, 119, 121], "descript": [41, 54, 67, 73, 86, 112, 113, 115, 117, 123, 127], "descriptor": [0, 46], "deseri": [0, 14, 15, 16, 17, 18, 50, 106], "design": [1, 5, 6, 14, 15, 16, 31, 41, 45, 54, 56, 103, 105, 109, 110, 111, 112, 113, 115, 119, 121, 122, 123, 129], "desir": [41, 119], "despit": 41, "destin": [41, 54, 62], "destination_path": [54, 62], "destruct": 59, "detail": [1, 2, 7, 9, 20, 21, 23, 41, 54, 56, 66, 67, 82, 84, 85, 109, 110, 112, 115, 117, 118, 119, 120, 121, 123, 125, 127], "detect": 41, "determin": [38, 39, 40, 41, 54, 59, 110, 115, 118], "detriment": 41, "dev": [20, 22, 30, 127], "develop": [1, 4, 7, 20, 21, 23, 24, 25, 29, 30, 41, 54, 56, 73, 84, 105, 107, 108, 112, 114, 115, 117, 118, 119, 121, 122, 123, 126, 127, 129], "deviat": [41, 123], "devic": 124, "devot": 41, "di": 58, "diagnosi": [54, 82], "dialog": [1, 3, 4, 31, 41, 107, 109, 113, 118, 123], "dialog_ag": [0, 1, 109], "dialog_agent_config": 112, "dialog_histori": 41, "dialogag": [0, 1, 3, 103, 109], "dialogagentnod": [95, 100, 103], "dialogu": [1, 3, 4, 6, 41, 107, 111, 112, 113], "dict": [0, 1, 2, 3, 4, 6, 7, 8, 9, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 54, 56, 63, 66, 67, 69, 71, 73, 75, 84, 86, 91, 93, 99, 101, 102, 103, 104, 107, 109, 113, 114, 117, 118, 119, 124], "dict_convert": [95, 100, 104], "dict_dialog_ag": [0, 1], "dict_input": 117, "dictat": 110, "dictdialogag": [0, 1, 4, 103, 110, 112, 115], "dictdialogagentnod": [95, 100, 103], "dictfiltermixin": [0, 32, 34, 35, 36, 37, 115], "diction": 41, "dictionari": [4, 13, 17, 18, 19, 20, 21, 23, 26, 32, 34, 35, 36, 37, 38, 39, 40, 41, 42, 44, 54, 56, 66, 67, 73, 81, 82, 84, 85, 99, 101, 102, 104, 109, 114, 117, 118, 119, 123], "did": 127, "didn": 115, "diet": 41, "dietari": 41, "differ": [1, 7, 8, 12, 13, 20, 22, 23, 24, 28, 32, 36, 41, 43, 54, 70, 75, 88, 89, 103, 105, 107, 108, 110, 111, 112, 113, 114, 115, 117, 118, 119, 121, 122, 123, 124, 129], "difficult": 119, "difficulti": [41, 115, 123], "digest": [54, 86, 117], "digest_prompt": [54, 86], "digest_webpag": [0, 54, 80, 86, 117], "digit0": [54, 56], "digit9": [54, 56], "digraph": 102, "dine": 41, "dingtalk": 128, "dinner": 41, "diplomaci": 41, "dir": [0, 45, 51, 52, 121], "direcotri": [54, 62], "direct": [41, 102, 103, 118, 123], "directli": [1, 6, 32, 34, 35, 37, 41, 42, 43, 54, 58, 59, 73, 108, 114, 115, 117, 118, 119, 121, 122, 123, 124], "director": 41, "directori": [0, 1, 9, 12, 13, 42, 44, 45, 51, 52, 54, 60, 62, 63, 64, 66, 67, 90, 93, 110, 114, 117, 121, 122, 124], "directory_path": [54, 62], "disabl": [0, 54, 59, 120], "disable_gradio": 12, "disable_sav": [0, 13, 120], "disciplin": 41, "disclos": 41, "discord": 128, "discours": 41, "discover": 41, "discuss": [20, 22, 41, 110, 115, 126, 127], "disguis": 110, "dish": 41, "disk": [14, 16], "displai": [32, 34, 41, 54, 59, 99, 115, 116, 121, 122], "disput": 41, "distconf": [0, 1, 2, 121], "distinct": [41, 103, 110, 112], "distinguish": [114, 118, 119, 121, 122], "distribut": [1, 2, 13, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 42, 44, 52, 53, 105, 107, 108, 112, 122, 129], "div": [54, 86], "divers": [88, 89, 107, 112, 115, 123, 127], "divid": [110, 114], "do": [38, 39, 40, 41, 54, 60, 84, 85, 108, 110, 111, 113, 121, 123], "do_someth": 121, "doc": [20, 22, 23, 25, 26, 29, 42, 44, 45, 67, 107, 114, 124], "docker": [54, 59, 117], "docstr": [54, 73, 117], "document": [41, 42, 43, 45, 66, 67, 107, 115, 117, 119, 121, 124, 127], "doe": [14, 15, 38, 39, 40, 41, 115, 118, 121], "doesn": [1, 2, 3, 4, 6, 8, 9, 13, 14, 16], "dog": 119, "doi": [54, 82], "domest": 41, "don": [13, 110, 118, 120, 121], "done": [20, 25], "dong": [54, 82], "dot": 99, "doubl": 115, "down": [54, 56], "download": [25, 46, 47, 51, 53, 54, 80, 117, 124], "download_fil": [0, 46, 47, 49, 51, 53], "download_from_url": [0, 54, 80, 83, 117], "drag": 122, "draggabl": 122, "draw": [20, 30], "dream": 41, "drive": 41, "drop": 122, "dry": 41, "due": [32, 37, 115, 123], "dump": [117, 118, 120], "duplic": [42, 44, 102, 103, 124], "durdu": [54, 82], "dure": [1, 7, 11, 35, 41, 110, 115, 117, 118], "duti": 41, "dynam": [32, 36, 41, 110, 112, 113], "e": [20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 41, 42, 44, 54, 56, 59, 60, 62, 67, 71, 73, 76, 107, 108, 109, 110, 114, 117, 118, 119, 120, 121, 123, 124, 125, 127], "e512": [20, 21], "ea89ae83": [20, 29], "each": [0, 1, 6, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 37, 41, 51, 53, 54, 58, 82, 84, 85, 88, 89, 102, 107, 109, 112, 113, 115, 117, 118, 119, 121, 122, 123, 124, 127], "earn": 41, "eas": [105, 107, 113, 119, 129], "easi": [0, 1, 6, 31, 41, 42, 44, 105, 122, 124, 129], "easier": 44, "easili": [41, 108, 110, 113, 115, 121], "echo": [17, 18, 54, 67, 118], "edg": 102, "edit": [54, 60, 67, 108, 117, 122], "edited_image_url1": [54, 67], "edited_image_url2": [54, 67], "educ": 41, "effect": [0, 1, 2, 31, 41, 54, 84, 123], "effici": [41, 107, 112, 123], "effort": [41, 107, 112], "eiffel": [54, 85], "either": [14, 15, 16, 20, 22, 54, 60, 84, 85, 109, 110, 118, 119], "eleg": [0, 31, 41], "element": [20, 30, 54, 56, 59, 69, 86, 102, 119, 122, 125], "element_id": [54, 56], "elementari": [41, 107], "elif": [113, 116], "elimin": [41, 110], "els": [38, 39, 40, 41, 103, 110, 113, 116, 117, 118], "else_body_oper": [38, 39, 40], "emb": [14, 16, 41, 54, 69, 124], "emb_model": [42, 43, 45], "emb_model_config_nam": 124, "emb_model_nam": [42, 44, 124], "embed": [13, 14, 16, 20, 21, 22, 25, 26, 27, 28, 30, 41, 42, 43, 44, 45, 54, 69, 70, 109, 114, 117, 118, 120, 123], "embed_model_config_nam": [41, 123], "embedding_cache_dir": [0, 13], "embedding_model": [13, 14, 16, 54, 69], "emblemat": 41, "embodi": 41, "emma": 41, "emot": 41, "empathet": 41, "empir": [88, 89], "emploi": 41, "empow": [105, 107, 115, 119, 122, 129], "empti": [20, 25, 51, 53, 54, 73, 86, 98, 102, 117, 119], "en": [1, 4, 42, 44, 45, 54, 67, 84, 85, 117, 124], "enabl": [20, 23, 25, 26, 30, 42, 44, 45, 90, 103, 105, 107, 112, 113, 118, 119, 129], "encapsul": [1, 9, 20, 28, 112, 113, 119, 121], "enclos": 41, "encod": [91, 124], "encoding_format": 114, "encount": [111, 126], "encourag": [1, 7, 20, 21, 23, 24, 25, 29, 30, 41, 88, 89, 123], "end": [1, 7, 11, 14, 15, 16, 20, 22, 32, 33, 34, 36, 37, 41, 54, 56, 58, 102, 110, 115, 116, 119, 123], "end_discuss": 115, "endow": [41, 110, 112], "engag": [41, 112, 123, 126], "engin": [1, 7, 20, 21, 23, 24, 25, 29, 30, 41, 54, 73, 82, 84, 102, 105, 107, 112, 114, 115, 123, 129], "english": 41, "englishsystempromptgener": [0, 41, 123], "enhanc": [41, 88, 89, 105, 111, 117, 129], "enjoi": 41, "enough": 123, "enrich": 112, "ensembl": 112, "ensur": [41, 54, 56, 88, 89, 107, 110, 112, 113, 115, 121, 122, 123], "enter": [54, 56, 115, 121, 122], "enthusiast": 123, "entir": 121, "entiti": [54, 87, 107], "entj": 41, "entj\u4eba\u683c\u7c7b\u578b": 41, "entri": [0, 54, 56, 85, 90, 98, 124], "enum": [10, 54, 72, 81, 82, 84, 85, 103], "environ": [1, 2, 8, 20, 22, 23, 26, 30, 54, 59, 107, 109, 110, 113, 114, 117, 121, 122, 123, 124], "environment": 113, "equal": [32, 37, 54, 56, 110, 123], "equip": [0, 1, 6, 41, 42, 44, 112, 123, 124], "equival": [115, 121], "era": 41, "error": [0, 11, 12, 13, 20, 21, 41, 54, 59, 60, 62, 63, 64, 71, 72, 75, 76, 77, 79, 81, 82, 83, 84, 85, 91, 93, 111, 115, 117, 122, 127], "escap": [32, 37, 54, 56, 115], "especi": [41, 54, 59, 119], "essenc": 41, "essenti": [54, 56, 109, 112, 118], "estim": 41, "estj": 41, "estj\u4eba\u683c\u7c7b\u578b": 41, "etc": [20, 29, 41, 54, 56, 59, 71, 84, 114, 115, 117, 124, 125], "ethic": 41, "europ": 41, "evafalleth": [54, 85], "eval": [59, 93], "eval_count": [20, 25], "eval_dur": [20, 25], "evalu": [88, 89, 102, 103, 113], "even": [41, 110, 115, 116, 124], "event": [51, 53, 98, 110], "eventdata": 98, "everi": [41, 110, 122], "everyon": 126, "evid": 41, "evok": 41, "exactli": 121, "exagger": 123, "exam": 41, "exampl": [0, 1, 2, 4, 6, 7, 20, 21, 23, 24, 25, 29, 30, 31, 32, 34, 36, 41, 42, 43, 44, 45, 54, 56, 58, 66, 67, 73, 79, 81, 82, 84, 85, 86, 87, 105, 107, 109, 113, 114, 115, 116, 118, 119, 120, 121, 123, 125, 127, 129], "example_dict": 115, "example_list": [41, 123], "example_num": [41, 123], "example_prompt_templ": 41, "example_selection_strategi": [41, 123], "exce": [1, 9, 11, 41, 54, 59, 79], "exceed": [1, 2, 51, 52, 53], "excel": 41, "except": [0, 20, 27, 32, 36, 41, 99, 105, 106, 107, 115, 117, 118], "exchang": [41, 107], "exec_nod": [100, 102], "exec_notebook": [54, 57], "exec_python": [54, 57], "exec_shel": [54, 57], "execut": [1, 5, 7, 38, 39, 40, 41, 54, 56, 58, 59, 60, 71, 72, 73, 75, 76, 77, 83, 84, 87, 93, 102, 103, 107, 109, 110, 113, 117, 121, 122], "execute_cod": [0, 54], "execute_nb_cod": 58, "execute_python_cod": [0, 54, 57, 59, 117], "execute_shell_command": [0, 54, 57, 60], "exercis": 41, "exert": [54, 84], "exeuct": [38, 39], "exist": [1, 2, 20, 21, 28, 32, 34, 51, 53, 54, 63, 64, 86, 112, 113, 118, 121, 124], "existing_ag": 113, "exit": [1, 2, 41, 109, 113, 121, 123], "expand": [112, 122], "expect": [1, 4, 41, 45, 54, 69, 111, 115, 123], "expedit": 112, "experi": [41, 122, 123, 126], "experienc": 41, "expert": [41, 123], "expertis": [41, 123], "expir": [1, 2, 51, 52, 53, 91], "explain": [41, 127], "explan": [41, 115], "explanatori": [54, 73, 117], "explicit": 41, "explicitli": [54, 84, 115], "exploit": 41, "export": [0, 14, 15, 16, 118, 124], "expos": 35, "express": [41, 102, 104, 115], "extend": [8, 102, 113, 118, 123], "extens": [41, 42, 44, 107, 112, 124], "extern": 118, "extra": [20, 21, 23, 25, 26, 30, 93], "extract": [20, 24, 32, 33, 36, 37, 41, 54, 56, 73, 86, 103, 115, 117, 123], "extract_name_and_id": 110, "extras_requir": 93, "extrem": [41, 54, 82], "ey": 127, "f": [112, 117, 118, 121], "f1": [54, 56], "f12": [54, 56], "fabl": [41, 54, 67], "facilit": [113, 118, 121, 122, 125], "fact": 41, "factor": 41, "factori": [54, 73], "fail": [1, 4, 11, 20, 21, 27, 51, 53, 54, 82, 115, 121, 123], "failur": [41, 117], "fair": 41, "fall": [54, 82], "fals": [0, 1, 2, 7, 8, 9, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23, 25, 26, 29, 30, 32, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 49, 51, 52, 54, 56, 59, 63, 64, 73, 76, 77, 85, 86, 88, 89, 90, 99, 103, 110, 113, 115, 118, 120, 121, 123, 124], "falsehood": 41, "famili": [54, 85], "familiar": 41, "faq": 82, "fast": [42, 44], "fastchat": [20, 27, 110, 114], "fat": 41, "fatih": [54, 82], "fault": [54, 82, 105, 107, 115, 129], "favor": 41, "fd564688": [20, 21], "feasibl": [41, 115], "featur": [41, 105, 107, 111, 115, 120, 121, 122, 123, 126, 128, 129], "fed": [35, 114], "feed": [54, 79, 86], "feedback": [41, 122, 127], "feel": [41, 127], "fenc": [32, 33, 34, 115], "festiv": 41, "fetch": [13, 82, 121], "fetch_cached_text_embed": [0, 13], "few": 110, "field": [1, 2, 4, 7, 9, 11, 20, 21, 22, 25, 28, 32, 33, 34, 35, 36, 37, 51, 53, 54, 56, 86, 107, 109, 110, 112, 114, 115, 116, 117, 118, 119, 121, 122], "fieldinfo": [54, 56], "fierc": 41, "fig_path": [54, 66], "fight": 41, "figur": [20, 21], "figure1": [20, 21], "figure2": [20, 21], "figure3": [20, 21], "file": [0, 1, 6, 9, 12, 13, 14, 15, 16, 20, 21, 24, 42, 44, 46, 47, 49, 51, 52, 53, 54, 59, 60, 67, 83, 86, 99, 101, 107, 109, 110, 112, 114, 117, 118, 119, 120, 121, 124], "file_dir": [0, 13], "file_path": [14, 15, 16, 54, 62, 63, 64, 117, 118], "filemanag": [0, 13], "filenam": 13, "filenotfounderror": 101, "filepath": [54, 83], "filesystem": 59, "fill": [1, 2, 32, 34, 41, 54, 86, 115, 121, 122], "filter": [1, 4, 14, 15, 16, 32, 34, 35, 36, 37, 115, 118], "filter_func": [14, 15, 16, 118], "final": [32, 37, 45, 88, 89, 102, 112], "financi": 41, "find": [41, 54, 60, 75, 85, 114, 117, 122, 127], "fine": 111, "finish": [0, 1, 7, 115], "finish_discuss": [110, 115], "finish_reason": [20, 21, 23, 26, 29, 30], "firm": 41, "firmli": 41, "first": [14, 15, 16, 20, 21, 25, 31, 54, 58, 81, 82, 87, 102, 108, 110, 118, 119, 121, 122, 123, 124, 127], "firstli": 110, "fit": [1, 7, 41, 112, 119], "five": 117, "fix": [32, 36, 126, 127], "flac": [54, 67], "flag": 110, "flask": [114, 124], "flask_model": 124, "flavor": 41, "flexibl": [32, 36, 107, 109, 112, 115, 123], "flexibli": 115, "float": [13, 14, 16, 20, 26, 29, 54, 56, 59, 67, 69, 70, 93, 114, 124], "flow": [38, 39, 40, 103, 109, 110, 111, 113, 115, 122], "flush": [0, 13, 99], "fly": 45, "fn_choic": [95, 96, 98], "focu": [41, 121], "focus": [41, 127], "foe": 41, "follow": [0, 1, 7, 12, 20, 21, 22, 23, 24, 25, 27, 29, 30, 31, 32, 33, 36, 38, 40, 41, 43, 51, 52, 54, 56, 79, 82, 84, 85, 108, 109, 110, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125], "food": 41, "forc": [54, 84], "forecast": 41, "fork": 59, "forlooppipelin": [0, 38, 39, 40, 122], "forlooppipelinenod": [95, 100, 103], "form": [41, 118], "formal": 41, "format": [0, 1, 3, 4, 6, 9, 10, 11, 17, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 36, 37, 41, 42, 43, 54, 56, 59, 67, 73, 79, 94, 110, 111, 112, 117, 118, 119, 120, 121, 123, 125, 127], "format_": 124, "format_exampl": [32, 34], "format_for_common_chat_model": [0, 20, 24], "format_instruct": [0, 32, 33, 34, 36, 37, 115], "format_map": 110, "formatted_str": [0, 17, 18], "formerli": [51, 53], "forthright": 41, "forward": [20, 25, 41, 122], "fought": 41, "found": [7, 11, 20, 22, 54, 66, 101, 103, 110, 115, 121], "foundat": 112, "four": 43, "fp_44709d6fcb": [20, 26], "fragment": [14, 15, 16], "frame": 41, "framework": [41, 45], "free": [41, 127], "freedom": 115, "freeli": [115, 123], "frequent": 125, "friend": [41, 54, 85], "friendli": 122, "from": [1, 2, 3, 4, 6, 7, 11, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 29, 30, 31, 32, 36, 41, 42, 43, 44, 45, 46, 47, 49, 51, 52, 53, 54, 56, 58, 59, 60, 62, 67, 69, 73, 75, 81, 82, 83, 84, 85, 86, 87, 88, 89, 93, 98, 99, 102, 103, 107, 109, 110, 113, 115, 117, 118, 119, 121, 122, 123, 124, 125, 127], "from_dict": [0, 17, 18, 19], "fulfil": [41, 107], "full": [41, 54, 66, 108, 116, 125], "func": [46, 49, 54, 73, 117], "func_nam": [46, 47], "funcpipelin": 113, "function": [0, 1, 2, 3, 4, 6, 7, 11, 13, 14, 15, 16, 17, 18, 20, 21, 22, 24, 32, 35, 36, 38, 40, 41, 42, 43, 45, 46, 47, 50, 51, 53, 54, 56, 58, 59, 69, 70, 73, 75, 79, 85, 86, 91, 93, 98, 101, 102, 107, 108, 109, 110, 111, 112, 113, 114, 116, 118, 119, 120, 121, 122, 123, 124, 125], "function_nam": [98, 117], "functioncallerror": [0, 11, 106], "functioncallformaterror": [0, 11, 106], "functionnotfounderror": [0, 11, 106], "fundament": [107, 112], "further": [117, 122], "furthermor": 107, "futur": [1, 2, 41, 54, 56, 75, 123, 125], "futurist": [54, 67], "fuzzi": [54, 82], "g": [20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 41, 42, 44, 54, 56, 59, 60, 71, 73, 76, 107, 109, 110, 114, 117, 119, 123, 124, 125], "gain": [41, 110], "galleri": 122, "game": [105, 129], "game_werewolf": [1, 4, 110], "gather": [41, 112, 119, 123], "geekan": 58, "gemini": [20, 22, 108, 109, 116, 119], "gemini_api_kei": 114, "gemini_chat": [20, 22, 114, 116], "gemini_embed": [20, 22, 114], "gemini_model": [0, 20], "geminichatwrapp": [0, 20, 22, 114, 116], "geminiembeddingwrapp": [0, 20, 22, 114], "geminiwrapperbas": [0, 20, 22], "gener": [0, 1, 2, 3, 4, 6, 7, 8, 9, 13, 14, 16, 17, 18, 19, 20, 21, 22, 23, 25, 26, 28, 29, 30, 32, 33, 37, 41, 42, 43, 45, 46, 47, 48, 51, 52, 53, 54, 59, 66, 67, 73, 82, 88, 89, 91, 93, 98, 99, 101, 103, 105, 107, 109, 111, 112, 114, 115, 116, 117, 118, 119, 121, 122, 124, 129], "generalrespons": [51, 53], "generate_agent_id": [0, 1, 2], "generate_arg": [20, 21, 23, 24, 26, 30, 110, 114], "generate_cont": [20, 22], "generate_image_from_nam": [95, 96, 99], "generate_jwt": [0, 90, 91], "generate_not": [0, 41, 123], "generate_server_id": [0, 51, 52], "generatecont": [20, 22], "generated_system_prompt": 123, "generation_method": [0, 20, 22], "generatortyp": 116, "geniu": 123, "genr": 123, "gentl": 41, "geo_location_id": [54, 85], "geo_location_nam": [54, 85], "get": [0, 1, 2, 13, 14, 16, 17, 19, 20, 24, 32, 34, 37, 41, 42, 44, 46, 47, 49, 51, 53, 54, 62, 73, 85, 88, 89, 94, 99, 107, 117, 120, 121, 122, 123, 124, 127], "get_action_funct": [0, 54, 55, 56, 125], "get_ag": [0, 51, 53], "get_agent_class": [0, 1, 2], "get_agent_list": [0, 46, 47, 49, 51, 53, 121], "get_agent_memori": [0, 46, 47, 49, 51, 53, 121], "get_all_ag": [95, 100, 103], "get_chat": [95, 96, 98], "get_chat_msg": [95, 96, 99], "get_config_by_nam": [0, 13], "get_current_directori": [0, 54, 61, 62], "get_embed": [0, 14, 16, 118, 124], "get_help": [0, 54], "get_inst": [0, 13], "get_json": 124, "get_knowledg": [0, 42, 44, 124], "get_memori": [0, 14, 15, 16, 112, 118, 123], "get_model_by_config_nam": [0, 13], "get_openai_max_length": [0, 92, 94], "get_player_input": [95, 96, 99], "get_reset_msg": [95, 96, 99], "get_respons": [0, 46, 47], "get_server_info": [0, 46, 47, 49, 51, 53, 121], "get_task_id": [0, 51, 53], "get_tripadvisor_location_detail": [54, 85], "get_wrapp": [0, 20, 24], "getawai": [54, 85], "git": [108, 125, 127], "github": [1, 4, 20, 22, 25, 45, 58, 59, 81, 88, 89, 93, 108, 125, 127, 128], "give": [41, 54, 66, 110, 115], "given": [1, 2, 7, 8, 9, 13, 20, 21, 31, 41, 54, 56, 60, 66, 67, 81, 83, 84, 86, 87, 88, 89, 90, 93, 98, 99, 101, 102, 103, 112, 113, 117, 123], "glm": [20, 30, 114, 119], "glm4": 114, "global": [41, 98, 124], "globe": 41, "gluten": 41, "go": [112, 124], "goal": [41, 119], "gone": 111, "good": [32, 37, 110, 123], "googl": [20, 22, 46, 54, 73, 84, 103, 109, 117], "google_search": [0, 54, 80, 84, 117], "googlesearchservicenod": [95, 100, 103], "govern": [54, 84], "gpt": [20, 23, 24, 26, 54, 67, 109, 110, 112, 114, 119, 120, 123], "grace": 41, "gradio": [0, 12, 95], "graph": [102, 107], "grasp": 41, "great": [41, 123], "greater": 110, "grep": [54, 60], "group": [0, 31, 32, 36, 54, 84, 85, 110, 113, 126], "growth": [41, 126], "grpc": [8, 46, 49], "gte": 124, "guid": [41, 110, 111, 112, 115, 117, 123], "guidanc": [41, 119], "h": [54, 86, 124], "ha": [0, 1, 2, 3, 4, 13, 17, 18, 20, 21, 28, 31, 41, 54, 59, 69, 84, 110, 111, 112, 114, 115, 116, 119, 121, 122, 124, 127], "habit": 41, "hand": 115, "handl": [41, 54, 73, 98, 103, 110, 113, 115, 116, 117, 118, 124], "happen": 41, "hard": [1, 2, 3, 4, 14, 16, 32, 36, 41], "hash": 99, "hasn": 110, "have": [13, 14, 16, 20, 21, 22, 41, 73, 88, 89, 103, 108, 110, 112, 115, 118, 119, 121, 122, 123, 126, 127], "hawkwood": 41, "hd": [54, 67], "hd_1024": 120, "hdr": [54, 67], "header": [20, 24, 27, 114], "heal": 110, "healing_used_tonight": 110, "healthi": [41, 123], "heart": 41, "height": [0, 54, 55, 56, 85], "hello": [20, 25, 26, 54, 67, 111, 115, 123], "helloworld": [54, 58], "helloworldn": [54, 58], "help": [1, 7, 20, 21, 23, 24, 25, 29, 30, 41, 54, 66, 79, 109, 110, 111, 112, 114, 115, 119, 122, 123, 125, 127], "helper": [107, 110, 113], "her": 110, "here": [54, 71, 73, 110, 111, 112, 113, 114, 115, 117, 118, 121, 123, 124, 126, 127], "heterogen": [88, 89], "hex": 118, "hf": 124, "hf_endpoint": 124, "hi": [20, 21, 23, 24, 25, 29, 30, 41, 109, 119, 123], "hierarch": 107, "high": [17, 18, 41, 88, 89, 105, 107, 123, 129], "higher": [14, 16, 41, 108], "highest": [54, 69, 88, 89], "highli": [41, 119, 122, 123], "highlight": 117, "hinder": 41, "hint": [1, 9, 32, 33, 34, 37, 110, 112, 115, 119], "hire": 41, "histor": [41, 118], "histori": [20, 21, 23, 24, 25, 29, 30, 41, 90, 110, 113, 119, 123], "hl": [20, 22], "hold": [41, 121], "home": [0, 41, 54, 56, 84, 122], "hong": [54, 82], "honor": 41, "hook": 127, "host": [0, 1, 2, 8, 11, 17, 18, 19, 20, 25, 46, 47, 51, 52, 53, 54, 59, 75, 76, 90, 110, 121, 122], "hostmsg": 110, "hostnam": [1, 2, 8, 11, 17, 19, 46, 47, 51, 52, 53, 54, 75, 122], "hous": 41, "how": [6, 14, 15, 16, 20, 21, 23, 24, 25, 26, 29, 30, 41, 54, 66, 67, 82, 109, 111, 112, 113, 114, 116, 122, 123, 126, 127], "how_to_format_inputs_to_chatgpt_model": 118, "howev": [13, 41, 115, 116, 118, 119, 123], "hr": 41, "html": [0, 1, 4, 42, 44, 45, 54, 55, 56, 82, 86, 117, 122, 124, 125], "html_selected_tag": [54, 86], "html_text": [54, 86], "html_to_text": [54, 86], "http": [1, 4, 7, 20, 21, 22, 23, 25, 26, 29, 30, 45, 54, 56, 58, 59, 66, 67, 81, 82, 84, 85, 88, 89, 93, 108, 114, 117, 118, 119, 121, 122, 124, 125, 127], "hu": [54, 82], "hub": [31, 103, 110, 113], "hub_manag": 113, "huggingfac": [24, 109, 114, 124], "human": [41, 59, 93], "human_ev": [59, 93], "humor": 41, "hygien": 41, "i": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 34, 36, 37, 38, 40, 41, 45, 46, 47, 49, 50, 51, 53, 54, 56, 59, 62, 63, 66, 67, 69, 71, 73, 75, 79, 81, 82, 84, 85, 86, 88, 89, 91, 93, 99, 101, 102, 103, 105, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 127, 129], "i3": [20, 21], "icl": 123, "icon": 122, "id": [0, 1, 2, 6, 8, 17, 18, 19, 20, 21, 24, 26, 27, 29, 30, 42, 43, 44, 45, 46, 47, 49, 51, 52, 53, 54, 56, 81, 85, 87, 98, 109, 116, 118, 122, 124], "id_list": [54, 81], "idea": [1, 7, 20, 22, 32, 37, 127], "ident": [17, 18, 19, 110], "identif": 115, "identifi": [0, 20, 21, 23, 24, 25, 26, 27, 29, 30, 41, 54, 84, 85, 91, 102, 109, 110, 111, 114, 118, 121, 123, 124], "idx": 110, "if_body_oper": [38, 39, 40], "ifelsepipelin": [0, 38, 39, 40, 122], "ifelsepipelinenod": [95, 100, 103], "ignor": [112, 119, 121], "ill": 123, "illeg": 41, "illustr": [113, 123, 124], "imag": [13, 20, 21, 26, 28, 54, 59, 66, 67, 71, 85, 98, 99, 107, 109, 112, 114, 117, 118, 119, 120], "image_count": [13, 20, 21, 120], "image_term": 98, "image_to_text": [54, 66], "image_token": [20, 21], "image_url": [20, 28, 54, 66, 67, 119], "image_url1": [54, 66, 67], "image_url2": [54, 66, 67], "imagin": 41, "imaginari": 110, "imbu": 41, "imit": 41, "immedi": [1, 2, 17, 19, 105, 110, 111, 112, 121, 129], "impact": [41, 121], "implement": [1, 2, 5, 7, 20, 21, 23, 24, 25, 29, 30, 38, 40, 54, 56, 58, 59, 73, 81, 93, 103, 107, 112, 113, 114, 115, 118, 119, 123, 125], "impli": 121, "import": [0, 1, 13, 14, 20, 38, 41, 42, 44, 45, 46, 51, 54, 56, 58, 59, 88, 90, 98, 109, 110, 111, 112, 113, 114, 115, 117, 119, 120, 121, 123, 124, 125], "import_function_from_path": [95, 96, 98], "importantand": [54, 86], "importerror": 93, "importerrorreport": [0, 92, 93], "impos": [54, 59], "improv": [41, 54, 67, 117, 122, 123, 126, 127], "in_subprocess": [51, 52], "includ": [0, 1, 2, 8, 12, 13, 17, 18, 20, 30, 38, 40, 41, 54, 56, 60, 62, 63, 64, 82, 84, 85, 102, 107, 109, 110, 112, 114, 115, 116, 117, 118, 121, 122, 123, 124, 127], "including_self": 8, "incom": 112, "incompet": 41, "incorpor": 41, "incorrect": [88, 89], "increas": [41, 110], "increment": [51, 53], "indent": 120, "independ": [41, 107], "index": [14, 15, 16, 20, 21, 23, 26, 29, 30, 41, 42, 43, 44, 45, 54, 81, 82, 117, 118, 124, 125], "indic": [11, 14, 15, 16, 20, 21, 41, 46, 47, 54, 62, 63, 64, 82, 110, 111, 112, 115, 116, 117, 118, 121, 122, 124], "individu": [54, 84, 115, 124], "industri": 41, "ineffici": 121, "inf": [88, 89], "infer": [24, 27, 109, 114], "influenc": 41, "influenti": 41, "info": [0, 12, 13, 102, 111, 120], "inform": [1, 7, 9, 13, 17, 18, 19, 20, 22, 41, 45, 46, 47, 49, 51, 53, 54, 56, 79, 81, 82, 84, 85, 86, 88, 89, 102, 103, 107, 110, 112, 113, 115, 117, 118, 121, 123, 124, 126], "ingredi": 41, "inhabit": 41, "inher": 107, "inherit": [1, 2, 20, 24, 110, 113, 114, 115, 121], "init": [0, 1, 2, 8, 11, 13, 20, 30, 41, 46, 47, 51, 52, 53, 54, 58, 90, 93, 106, 109, 110, 111, 114, 117, 120, 121, 122, 123], "init_arg": 124, "init_uid_list": [95, 96, 98], "init_uid_queu": [95, 96, 99], "initi": [0, 1, 2, 3, 4, 6, 7, 8, 9, 11, 13, 17, 18, 20, 21, 22, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 40, 41, 42, 43, 44, 45, 54, 56, 73, 98, 99, 101, 102, 103, 109, 112, 113, 114, 117, 118, 119, 121, 122, 124, 125], "initial_announc": 113, "inner": 41, "inner_text": [0, 54, 55, 56], "innoc": 41, "innov": [41, 105, 129], "input": [1, 2, 3, 4, 6, 8, 9, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 38, 39, 40, 41, 46, 47, 51, 52, 54, 67, 79, 86, 88, 89, 98, 99, 102, 103, 107, 109, 110, 112, 113, 114, 115, 117, 119, 121, 122, 123, 124], "input_dir": 124, "input_hint": [1, 9], "input_ob": [54, 58], "input_token": [20, 21], "inquir": 41, "inquiri": 41, "insecur": 49, "insert": [54, 56], "insid": 117, "insight": [41, 126], "inspect": 117, "inspir": 41, "instal": [25, 54, 56, 93, 105, 107, 110, 121, 122, 125, 127, 129], "instanc": [1, 2, 8, 11, 13, 17, 19, 41, 46, 47, 51, 53, 88, 89, 90, 102, 110, 113, 114, 118, 121], "instanti": [42, 43, 113, 118], "instead": 13, "instruct": [1, 4, 32, 33, 34, 36, 37, 41, 54, 67, 73, 79, 88, 89, 107, 112, 114, 117, 119, 124], "instruction_format": 115, "insur": 41, "int": [1, 2, 4, 6, 7, 8, 9, 11, 13, 14, 15, 16, 17, 19, 20, 23, 27, 29, 38, 39, 40, 41, 42, 43, 45, 46, 47, 51, 52, 53, 54, 56, 58, 59, 66, 67, 69, 73, 75, 76, 77, 79, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 99, 117, 118, 124], "integ": [20, 23], "integr": [45, 107], "intel": [54, 82], "intellig": [54, 82, 123], "intent": 41, "intenum": [10, 54, 72, 103], "interact": [11, 38, 40, 41, 54, 56, 58, 59, 60, 107, 109, 110, 111, 112, 113, 117, 118, 121, 123, 125], "interest": [41, 123, 124, 126], "interf": 59, "interfac": [38, 40, 98, 103, 107, 111, 112, 113, 114, 121, 122], "interlay": 107, "intermedi": 41, "intern": [41, 88, 89, 112], "interpret": 41, "interv": [20, 27], "introduc": [41, 107, 109, 112, 115, 117, 118, 121, 124], "introduct": 41, "intuit": 107, "invalid": [91, 119], "invest": 41, "investopedia": [54, 84], "invit": 126, "invoc": [0, 13, 109, 114], "invok": [1, 3, 4, 6, 41, 54, 60, 86, 103, 112, 113, 119, 124], "invoke_dir": [0, 13], "involv": [32, 37, 110, 115, 117, 127], "io": [1, 4], "ip": [1, 2, 54, 75, 76, 121, 122], "ip_a": 121, "ip_b": 121, "ipython": [54, 58, 59, 117], "irrevers": 122, "is_al": [0, 46, 47, 49, 51, 53, 121], "is_bless": [54, 85], "is_callable_express": [95, 100, 104], "is_click": [0, 54, 55, 56], "is_initi": [0, 13], "is_play": 99, "is_serializ": [0, 50, 106], "is_stream_exhaust": [0, 20, 28], "is_valid_url": [54, 80, 86], "isinst": [112, 116, 124], "island": [54, 85], "isn": 111, "iso": [54, 67, 85], "issu": [32, 37, 41, 111, 115, 123, 126, 127], "item": [54, 82, 85, 93, 117, 118], "iter": [1, 7, 14, 15, 16, 103, 113, 116, 118], "itinerari": 41, "its": [1, 2, 3, 14, 16, 24, 41, 54, 56, 62, 73, 75, 82, 102, 109, 110, 112, 114, 115, 117, 118, 119, 122, 123, 127], "itself": [14, 16, 118, 121], "j": [54, 82], "jargon": 41, "jif": [54, 82], "job": [41, 54, 86], "john": 41, "johnson": 41, "joi": 41, "join": [105, 110, 117, 123, 128, 129], "journal": [54, 82], "journei": 41, "jpg": [54, 66, 67, 85, 109, 119], "jr": [54, 81], "json": [0, 1, 4, 10, 11, 20, 21, 22, 23, 25, 26, 27, 29, 30, 32, 34, 36, 37, 41, 50, 51, 52, 54, 61, 73, 84, 85, 86, 91, 101, 109, 110, 112, 117, 118, 120, 121, 122, 124], "json_arg": [20, 27, 124], "json_object_pars": [0, 32], "json_required_hint": [0, 32, 37], "json_schema": [0, 54, 73, 117], "jsondecodeerror": [1, 4], "jsondictvalidationerror": [0, 11, 106], "jsonparsingerror": [0, 11, 106], "jsontypeerror": [0, 11, 106], "judgment": 115, "jupyt": [54, 58], "just": [14, 15, 16, 38, 39, 40, 113, 115, 116, 121, 123], "justic": 41, "jwt": 91, "k": [54, 69, 118, 124], "k1": [38, 40], "k2": [38, 40], "keen": [41, 123], "keep": [20, 21, 22, 41, 54, 79, 86, 111, 115, 123, 126, 127], "keep_al": [20, 25, 114], "keep_raw": [54, 86], "kei": [1, 9, 17, 18, 20, 21, 23, 26, 27, 29, 30, 32, 34, 35, 36, 37, 41, 42, 44, 54, 56, 66, 67, 73, 79, 84, 85, 86, 87, 91, 103, 109, 112, 114, 115, 117, 118, 119, 121, 123, 124], "kernel": [54, 82], "keskin": [54, 82], "keskinday21": [54, 82], "keya": [54, 56], "keyerror": 118, "keys_allow_miss": [32, 37], "keys_to_cont": [32, 34, 35, 36, 37, 110, 115], "keys_to_memori": [32, 34, 35, 36, 37, 110, 115], "keys_to_metadata": [32, 34, 35, 36, 37, 115], "keyword": [20, 21, 23, 25, 26, 30, 41, 54, 84, 87, 117], "keyz": [54, 56], "kill": [59, 110], "kind": [38, 40, 115, 125], "king": 41, "kingdom": 41, "kingslei": 41, "kitchen": 41, "knight": 41, "knighthood": 41, "knightli": 41, "know": [32, 36, 41, 110], "knowledg": [0, 1, 6, 41, 42, 44, 45, 54, 69, 121, 123], "knowledge_bank": [0, 42, 124], "knowledge_config": [42, 43, 44, 45, 124], "knowledge_id": [42, 43, 44, 45, 124], "knowledge_id_list": [1, 6, 42, 44, 124], "knowledge_list": [1, 6, 124], "knowledgebank": [0, 42, 44, 124], "knowledgebas": [42, 44], "known": [32, 36, 41, 110, 123], "kong": [54, 82], "kwarg": [1, 2, 3, 4, 6, 7, 8, 9, 12, 13, 17, 18, 20, 21, 22, 23, 24, 25, 26, 27, 30, 42, 43, 45, 54, 73, 75, 76, 77, 84, 102, 104, 112, 114, 117, 118, 123], "kwarg_convert": [95, 100, 104], "l": [54, 60, 62, 122], "lab": [54, 82], "label": [54, 56, 125], "lace": 41, "lack": 41, "ladi": 41, "lambda": [38, 39, 40], "lancelot": 41, "land": 41, "langchain": 124, "languag": [1, 3, 4, 6, 32, 33, 41, 45, 54, 67, 85, 107, 112, 113, 115, 117, 119, 123, 124], "language_nam": [32, 33, 115], "larg": [20, 29, 41, 54, 85, 107, 114, 115, 117, 119, 121, 122, 123], "last": [12, 14, 16, 20, 21, 88, 89, 109, 110, 116, 119, 122, 124, 125], "last_chunk": 116, "latenc": [54, 67], "later": [112, 121, 124], "latest": [20, 25, 41, 88, 89, 122, 125, 126], "latitud": [54, 85], "launch": [0, 1, 2, 8, 51, 52, 101, 107, 121], "launch_serv": [1, 2], "launcher": [0, 51], "layer": [54, 59, 107], "lazy_launch": [1, 2, 8], "lead": [1, 9, 41, 123], "learn": [41, 54, 81, 82, 84, 87, 110, 117, 122], "least": [41, 119, 122, 124], "leav": [54, 75], "lecun": [54, 81], "led": 41, "left": 122, "legendari": 41, "length": [20, 27, 41, 54, 58, 94], "less": [54, 79, 107], "let": [107, 110, 121, 123], "level": [0, 12, 41, 54, 85, 105, 107, 111, 120, 129], "leverag": [88, 89], "li": [41, 54, 86], "librari": [20, 25, 41, 123], "licens": [81, 107], "life": [41, 110], "lihong": [54, 82], "like": [20, 23, 38, 39, 40, 41, 109, 113, 122, 123, 124, 125], "limit": [1, 9, 41, 54, 59, 79, 93, 115, 122], "line": [41, 51, 52, 99, 101, 110, 111, 112, 121, 124], "lingyiwanwu": [20, 29], "link": [54, 56, 84, 86, 110, 118, 122], "linux": 0, "list": [0, 1, 6, 8, 9, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 41, 42, 43, 44, 45, 46, 47, 49, 51, 52, 53, 54, 56, 62, 66, 67, 69, 70, 73, 81, 82, 84, 85, 88, 89, 90, 94, 98, 99, 102, 103, 104, 108, 109, 110, 112, 113, 114, 115, 117, 118, 119, 121, 123, 124, 125], "list_directory_cont": [0, 54, 61, 62], "list_model": [20, 22], "list_of_iso_639": [54, 67], "listen": [1, 2, 8, 51, 52], "lite_llm_openai_chat_gpt": 114, "litellm": [20, 23, 108, 116, 119], "litellm_chat": [20, 23, 114, 116], "litellm_model": [0, 20], "litellmchatmodelwrapp": 114, "litellmchatwrapp": [0, 20, 23, 114, 116], "litellmwrapperbas": [0, 20, 23], "liter": [0, 12, 13, 17, 18, 19, 41, 54, 66, 67, 102, 111], "literatur": 41, "littl": [41, 54, 75, 123], "liu": [54, 82], "ll": [41, 111, 123], "llama": [42, 44, 45, 114, 124], "llama2": [114, 119], "llama3": [20, 25], "llama_index": [45, 124], "llama_index_knowledg": [0, 42], "llamaindex": [1, 6, 45, 124], "llamaindexag": [0, 1, 6, 124], "llamaindexknowledg": [0, 42, 45], "llm": [0, 20, 23, 32, 34, 36, 37, 41, 42, 43, 44, 45, 54, 87, 88, 89, 107, 110, 115, 116, 117, 119, 123, 124, 125], "lo": [20, 29], "load": [0, 1, 2, 3, 4, 7, 13, 14, 15, 16, 20, 22, 25, 32, 37, 41, 42, 43, 45, 52, 54, 56, 101, 103, 109, 114, 115, 117, 118, 121, 124], "load_agents_from_dir": [0, 51, 52], "load_agents_from_fil": [0, 51, 52], "load_config": [95, 100, 101], "load_data": 124, "load_dict": [0, 13], "load_dur": [20, 25], "load_model_config": [0, 13], "load_web": [0, 54, 80, 86, 117], "loader": [42, 44, 45, 124], "local": [0, 1, 2, 8, 12, 13, 20, 21, 41, 46, 47, 51, 52, 53, 54, 67, 107, 109, 110, 118, 119, 121, 122, 123, 127], "local_embedding_model": [41, 123], "local_mod": [1, 2, 8, 51, 52], "localhost": [1, 2, 8, 51, 52, 53, 54, 76], "localized_nam": [54, 85], "locat": [17, 19, 54, 83, 85, 110, 117, 121, 124], "location_id": [54, 85], "log": [0, 13, 105, 106, 112, 123, 129], "log_gradio": [0, 12, 106], "log_level": [0, 111], "log_msg": [0, 12, 106], "log_retriev": [1, 6, 124], "log_stream_msg": [0, 12, 106, 116], "logger": [0, 12, 118, 120], "logger_level": [0, 13, 110, 111], "logic": [1, 5, 38, 40, 41, 103, 112, 113, 123], "login": 91, "logprob": [20, 26], "loguru": [12, 111], "long": [10, 20, 25, 41, 54, 87, 113, 114, 121, 124, 125], "longer": 121, "longitud": [54, 85], "look": 122, "loop": [1, 7, 38, 39, 40, 103, 109, 110, 115], "loop_body_oper": [38, 39, 40], "lord": 41, "love": 41, "low": 41, "loyal": 41, "loyalti": 41, "lst": 102, "ltd": [54, 82], "lukasschwab": 81, "lynch": 110, "m": [111, 123, 124, 127], "maa": [20, 30], "mac": 0, "machin": [46, 47, 54, 82, 87, 121, 122], "machine1": 121, "machine2": 121, "machine_learn": [54, 87], "machinesand": [54, 82], "made": [54, 56, 67, 127], "magic": 41, "mai": [20, 21, 22, 26, 41, 54, 73, 84, 88, 89, 102, 110, 112, 113, 114, 115, 119, 121, 122, 123, 124, 127], "main": [20, 25, 28, 54, 56, 58, 95, 100, 101, 110, 112, 113, 115, 117, 121, 122, 127], "main_model": [88, 89], "maintain": [41, 112, 118, 123, 124], "mainthread": 93, "major": 110, "majority_vot": 110, "make": [20, 22, 41, 42, 44, 88, 89, 112, 114, 119, 121, 123], "malici": 121, "manag": [0, 31, 32, 36, 41, 93, 103, 106, 107, 108, 109, 110, 112, 113, 120], "mandatori": 122, "mani": [54, 75, 76, 119, 123, 124], "manipul": 118, "manner": [41, 105, 121, 123, 124, 129], "manual": 113, "map": [38, 39, 40, 54, 56, 113, 117], "marie\u4e00\u76f4\u81f4\u529b\u4e8e\u5728\u79d1\u6280\u9886\u57df\u6709\u6240\u5efa\u6811": 41, "marie\u559c\u6b22\u901a\u8fc7\u5e7d\u9ed8\u548c\u6bd4\u55bb\u6765\u7f13\u89e3\u7d27\u5f20\u6216\u4e25\u8083\u7684\u8bdd\u9898": 41, "marie\u6b63\u5728\u9886\u5bfc\u4e00\u4e2a\u521b\u65b0\u9879\u76ee\u56e2\u961f": 41, "marie\u806a\u660e": 41, "mark": [54, 56, 115, 125], "markdown": [32, 33, 34, 41, 54, 56, 115, 125], "markdowncodeblockpars": [0, 32, 33], "markdownifi": 125, "markdownjsondictpars": [0, 32, 34, 110], "markdownjsonobjectpars": [0, 32, 34], "market": [41, 123], "martial": 41, "mask": [54, 67, 117], "mask_imag": [54, 67], "mask_url": [54, 67], "master": [41, 59, 93], "masteri": 41, "match": [14, 15, 16, 41, 54, 85, 110, 124], "materi": 41, "math": [41, 123], "matplotlib": [54, 59], "matter": 41, "max": [1, 2, 8, 51, 52, 53, 94, 114, 119, 120], "max_game_round": 110, "max_it": [1, 7], "max_iter": 113, "max_length": [20, 24, 27, 124], "max_length_of_model": 24, "max_loop": [38, 39, 40], "max_memb": [54, 87], "max_pool_s": [1, 2, 8, 51, 52, 53], "max_result": [54, 81], "max_retri": [1, 4, 20, 24, 27, 114], "max_return_token": [54, 79], "max_timeout_second": [1, 2, 8, 51, 52, 53], "max_token": [20, 29], "max_werewolf_discussion_round": 110, "maxcount_result": [54, 75, 76, 77], "maxim": 41, "maximum": [1, 2, 4, 7, 20, 27, 29, 38, 39, 40, 51, 52, 53, 54, 59, 69, 75, 76, 77, 81, 87], "maximum_memory_byt": [54, 59], "mayb": [1, 7, 20, 21, 23, 24, 25, 29, 30, 32, 37, 54, 87, 125], "md": [20, 25, 42, 44, 114, 124], "mean": [0, 1, 2, 7, 14, 16, 17, 18, 31, 54, 87, 109, 115, 121], "meanwhil": [115, 121], "measur": 41, "mechan": [41, 54, 87, 105, 107, 109, 113, 129], "media": [41, 54, 85], "mediev": 41, "medium": [20, 29, 54, 85, 114], "meet": [38, 39, 40, 41, 112, 117, 119], "mem": 121, "member": [54, 87, 127], "memori": [0, 1, 2, 3, 4, 6, 8, 9, 20, 25, 32, 35, 36, 41, 42, 43, 46, 47, 49, 51, 53, 54, 59, 69, 105, 106, 107, 110, 112, 114, 115, 116, 121, 123, 129], "memorybas": [0, 14, 15, 16], "men": 41, "mention": 41, "mentor": 41, "mercenari": 41, "merg": [20, 21, 124], "messag": [0, 1, 2, 3, 4, 6, 8, 9, 11, 12, 14, 15, 16, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 35, 36, 46, 47, 51, 52, 53, 54, 60, 62, 63, 64, 69, 71, 75, 76, 77, 79, 82, 83, 98, 99, 100, 103, 105, 106, 109, 110, 112, 114, 116, 117, 119, 121, 122, 123, 124, 127], "message_from_alic": 109, "message_from_bob": 109, "messages_kei": [20, 27, 114], "met": 113, "meta": [41, 54, 56, 82, 114, 123], "meta_data": [0, 54, 55, 56], "meta_prompt": [41, 123], "meta_prompt_templ": 41, "metadata": [0, 17, 18, 19, 49, 54, 56, 110, 115, 118], "metagpt": 58, "method": [1, 2, 5, 7, 8, 9, 14, 15, 16, 17, 19, 20, 22, 26, 32, 34, 35, 36, 37, 41, 54, 56, 82, 102, 103, 109, 112, 115, 117, 118, 121, 122, 123, 124, 125], "meticul": [41, 123], "metric": [11, 14, 16, 118], "microsoft": [54, 84, 117], "midterm": 41, "might": [41, 110, 119, 123, 127], "migrat": 121, "militari": 41, "mind": 112, "mine": [20, 21], "mini": [20, 26], "minilm": [20, 25], "minim": 112, "minor": 123, "minu": [54, 56], "mirror": 124, "mislead": [41, 123], "miss": [11, 32, 34, 37, 93, 112], "missing_begin_tag": [0, 11], "missing_end_tag": [0, 11], "mistak": 41, "misunderstand": [20, 21, 41], "misunderstood": 41, "mit": 81, "mix": [89, 113], "mixin": 35, "mixtur": [119, 121], "mixture_of_ag": [0, 88], "mixtureofag": [0, 88, 89], "mkt": [54, 84], "moa": [88, 89], "mock": 41, "modal": [107, 117, 118], "mode": [13, 20, 22, 23, 25, 26, 30, 51, 52, 90, 108, 122], "model": [0, 1, 2, 3, 4, 6, 7, 10, 11, 13, 14, 16, 32, 33, 34, 35, 36, 37, 41, 42, 43, 44, 45, 46, 47, 49, 51, 52, 53, 54, 56, 66, 67, 69, 73, 79, 86, 88, 89, 94, 100, 102, 103, 105, 106, 107, 112, 115, 117, 118, 120, 122, 123, 125, 129], "model_computed_field": [0, 54, 55, 56], "model_config": [0, 13, 46, 47, 54, 55, 56, 109, 110, 114, 116, 120, 121, 123], "model_config_nam": [1, 2, 3, 4, 6, 7, 41, 109, 110, 112, 121, 123, 124], "model_config_or_path": 114, "model_config_path_a": 121, "model_config_path_b": 121, "model_configs_templ": 121, "model_field": [0, 54, 55, 56], "model_nam": [0, 13, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 42, 44, 94, 109, 110, 114, 119, 120, 123], "model_name_for_openai": 24, "model_name_or_path": 124, "model_or_model_config_nam": [41, 123], "model_respons": 117, "model_typ": [0, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 109, 110, 114, 116, 121, 123], "modelmanag": [0, 13], "modelnod": [95, 100, 103], "modelrespons": [0, 20, 21, 28, 32, 33, 34, 35, 36, 37, 114, 115], "modelscop": [1, 4, 108, 109, 114, 124, 125], "modelscope_cfg_dict": 109, "modelwrapp": 114, "modelwrapperbas": [0, 13, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 41, 42, 43, 45, 54, 69, 79, 86, 88, 89, 114], "moder": 110, "modifi": [1, 7, 59, 112, 115, 121], "modul": [105, 106, 107, 110, 111, 117, 118, 121, 123, 124, 125], "module_nam": 98, "module_path": 98, "monasteri": 41, "mongodb": [54, 74, 117], "monitor": [0, 13, 105, 122, 125, 129], "monitormanag": [0, 13], "more": [0, 1, 7, 20, 21, 22, 23, 31, 32, 36, 41, 42, 44, 45, 54, 66, 67, 84, 85, 88, 89, 108, 109, 110, 111, 112, 115, 117, 118, 119, 121, 122, 123, 125], "most": [1, 6, 14, 15, 41, 42, 43, 45, 51, 52, 110, 118, 119, 122, 124], "motiv": 41, "mount": 115, "mountain": [54, 66], "move": [54, 62, 117, 123], "move_directori": [0, 54, 61, 62, 117], "move_fil": [0, 54, 61, 62, 117], "mp3": [54, 67, 119], "mpnet": [41, 123], "msg": [0, 1, 2, 3, 4, 6, 7, 8, 9, 12, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 41, 46, 47, 50, 54, 73, 93, 98, 99, 109, 110, 111, 112, 113, 115, 116, 117, 119, 121, 123], "msg1": 121, "msg2": 121, "msg_hub": 113, "msg_id": 99, "msghub": [0, 105, 106, 109, 122, 129], "msghubmanag": [0, 31, 106, 113], "msghubnod": [95, 100, 103], "msgnode": [95, 100, 103], "much": [0, 31, 113, 127], "muhammet": [54, 82], "multi": [20, 22, 41, 105, 107, 108, 109, 110, 111, 112, 113, 117, 118, 119, 121, 122, 123, 126, 129], "multi_mod": [0, 54], "multimod": [17, 18, 20, 21, 54, 66, 114, 119], "multipl": [1, 6, 15, 20, 21, 32, 36, 37, 38, 39, 40, 42, 44, 54, 66, 88, 89, 103, 109, 110, 112, 113, 115, 119, 121, 124, 127], "multitaggedcontentpars": [0, 32, 37], "must": [14, 15, 16, 17, 18, 20, 21, 22, 23, 32, 37, 41, 54, 85, 110, 112, 115, 116, 117, 119, 121, 122, 123, 124], "mutlipl": 121, "my": [41, 123], "my_ag": [51, 52, 121], "my_arg1": 114, "my_arg2": 114, "my_dashscope_chat_config": 114, "my_dashscope_image_synthesis_config": 114, "my_dashscope_multimodal_config": 114, "my_dashscope_text_embedding_config": 114, "my_gemini_chat_config": 114, "my_gemini_embedding_config": 114, "my_model": 114, "my_model_config": 114, "my_ollama_chat_config": 114, "my_ollama_embedding_config": 114, "my_ollama_generate_config": 114, "my_openai": 121, "my_postapichatwrapper_config": 114, "my_postapiwrapper_config": 114, "my_zhipuai_chat_config": 114, "my_zhipuai_embedding_config": 114, "myagent": [110, 116, 121, 123], "mymodelwrapp": 114, "mysql": [54, 74, 75, 117], "mysteri": 41, "mysystempromptgener": 123, "n": [14, 15, 20, 21, 23, 24, 25, 29, 30, 32, 33, 37, 38, 40, 41, 54, 66, 67, 79, 86, 87, 88, 89, 108, 110, 112, 114, 115, 117, 119, 123], "n1": [41, 110], "n2": [41, 110], "n3": 41, "n4": 41, "n5": 41, "n6": 41, "n7": 41, "n8": 41, "n9": 41, "nalic": 119, "name": [0, 1, 2, 3, 4, 6, 7, 8, 9, 11, 13, 14, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 32, 33, 34, 36, 37, 41, 42, 44, 46, 47, 54, 56, 58, 59, 73, 75, 76, 77, 79, 82, 85, 88, 89, 99, 101, 102, 107, 108, 109, 110, 111, 112, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 127], "name1": [32, 36], "name2": [32, 36], "namespac": [54, 87], "nanyang": [54, 82], "narrow": 41, "nation": [54, 82], "nativ": [54, 59], "natur": [41, 54, 59, 67, 85, 110, 118], "nature_park": [54, 85], "navig": [41, 112], "nbe": [54, 58], "nbelief": 41, "nbob": 119, "ncharact": 41, "nconstraint": 110, "ndarrai": 13, "necessari": [41, 73, 102, 107, 113, 117, 118, 122], "need": [1, 2, 3, 4, 6, 7, 8, 9, 14, 16, 17, 18, 20, 23, 24, 41, 45, 51, 52, 54, 67, 79, 87, 103, 108, 110, 112, 114, 115, 117, 118, 119, 120, 121, 123, 124, 125], "negative_prompt": 114, "neighborhood_info": [54, 85], "neither": [54, 85, 110], "nest": 122, "network": 121, "networkx": 102, "neutral": 41, "new": [14, 15, 16, 31, 41, 46, 47, 49, 51, 53, 54, 62, 108, 113, 114, 115, 118, 124, 125, 126, 128], "new_ag": 113, "new_particip": [31, 113], "next": [41, 99, 103, 110, 113, 121], "nfor": 110, "nfrom": 41, "ngame": 110, "nice": 119, "nif": 41, "night": 110, "nin": [41, 110], "nmarie\u7684\u8a00\u8bed\u98ce\u683c\u5145\u6ee1\u4e86\u5bf9\u79d1\u6280\u548c\u672a\u6765\u7684\u70ed\u7231": 41, "nnow": 41, "nobil": 41, "nobl": 41, "node": [54, 56, 102, 103, 104, 122, 124], "node_id": [102, 103], "node_info": 102, "node_nam": [0, 54, 55, 56], "node_pars": 124, "node_typ": [100, 103], "node_valu": [0, 54, 55, 56], "nodes_not_in_graph": [100, 102], "nodewithscor": 45, "non": [54, 59, 102, 107, 116, 121], "none": [0, 1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 51, 52, 53, 54, 56, 58, 59, 66, 67, 69, 73, 75, 76, 77, 81, 85, 86, 88, 89, 90, 91, 93, 98, 99, 101, 102, 103, 109, 110, 112, 113, 115, 116, 117, 118, 119, 121, 123], "nonetyp": [54, 56], "nonsens": 41, "nor": [54, 85, 110], "normal": [17, 18, 54, 67, 117, 121, 122], "note": [1, 2, 12, 13, 20, 21, 23, 24, 25, 29, 30, 32, 36, 41, 45, 46, 47, 51, 52, 53, 54, 60, 87, 108, 109, 110, 112, 113, 114, 115, 116, 119, 121, 123, 125], "notebook": [54, 58], "notebookexecutor": [0, 54, 57, 58, 117], "noth": [38, 39, 40, 123], "notic": [6, 14, 15, 16, 54, 79, 110], "notif": 127, "notifi": [1, 2], "notimplementederror": [112, 118], "noun": [54, 84], "nova": [54, 67], "now": [41, 50, 54, 75, 110, 113, 116, 123, 124, 127], "np": 13, "nperson": 41, "nplayer": 110, "npleas": 41, "nrais": 41, "nrespons": [88, 89], "nseer": 110, "nsinc": 41, "nskill": 41, "nstrength": 41, "nsummar": [54, 79], "nthe": [41, 110], "nthere": 110, "null": [20, 21, 26, 120], "num_complet": [54, 82], "num_dot": 99, "num_inst": 8, "num_result": [54, 73, 82, 84, 117], "num_review": [54, 85], "num_tokens_from_cont": [0, 92, 94], "number": [1, 2, 4, 6, 7, 8, 14, 15, 16, 20, 27, 29, 32, 36, 38, 39, 40, 41, 42, 43, 45, 51, 52, 53, 54, 66, 67, 69, 70, 73, 75, 76, 77, 79, 81, 82, 83, 84, 87, 88, 89, 93, 110, 111, 113, 115, 117, 118, 121, 122, 123, 124], "numer": 41, "nurtur": 41, "nutrit": 41, "nvictori": 110, "nvillag": 110, "nweak": 41, "nwerewolv": 110, "nwitch": 110, "nyou": [41, 54, 79, 110], "nyour": 41, "n\u4ece\u5c0f\u4f60\u5c31\u5bf9\u79d1\u5b66\u6000\u6709\u6d53\u539a\u7684\u5174\u8da3": 41, "n\u4ece\u5c0f\u5c31\u8868\u73b0\u51fa\u8d85\u7fa4\u7684\u63a8\u7406\u548c\u89c2\u5bdf\u80fd\u529b": 41, "n\u4f18\u70b9": 41, "n\u4f5c\u4e3a\u5973\u6d77\u76d7\u8239\u957f": 41, "n\u4f60\u51fa\u751f\u4e8e\u4e00\u4e2a\u666e\u901a\u5bb6\u5ead": 41, "n\u4f60\u51fa\u751f\u4e8e\u4e00\u4e2a\u666e\u901a\u7684\u4e2d\u4ea7\u5bb6\u5ead": 41, "n\u4f60\u51fa\u751f\u5728\u4e00\u4e2a\u4f01\u4e1a\u5bb6\u5bb6\u5ead": 41, "n\u4f60\u51fa\u751f\u5728\u4e00\u4e2a\u666e\u901a\u7684\u519c\u5bb6": 41, "n\u4f60\u51fa\u751f\u5728\u4e00\u4e2a\u70ed\u7231\u6237\u5916\u6d3b\u52a8\u7684\u5bb6\u5ead": 41, "n\u4f60\u51fa\u751f\u5728\u4e00\u4e2a\u8fb9\u8fdc\u7684\u6e38\u4fa0\u90e8\u65cf": 41, "n\u4f60\u51fa\u751f\u5728\u7cbe\u7075\u65cf\u4e2d\u4e00\u4e2a\u9887\u5177\u58f0\u671b\u7684\u5bb6\u65cf": 41, "n\u4f60\u51fa\u8eab\u4e8e\u4e00\u4e2a\u671b\u65cf": 41, "n\u4f60\u5728\u4e00\u4e2a\u5feb\u901f\u53d1\u5c55": 41, "n\u4f60\u5728\u8bfa\u74e6\u5229\u65af\u5e02": 41, "n\u4f60\u5904\u5728\u4e00\u4e2a\u4ee5\u5c01\u5efa\u5236\u5ea6\u4e3a\u6838\u5fc3\u7684\u53e4\u4ee3\u56fd\u5bb6": 41, "n\u4f60\u5904\u5728\u4e00\u4e2a\u73b0\u4ee3\u90fd\u5e02\u7684\u9ad8\u4e2d\u73af\u5883": 41, "n\u4f60\u5c45\u4f4f\u5728\u4eac\u57ce": 41, "n\u4f60\u5de5\u4f5c\u4e8e\u4e00\u5bb6\u56fd\u9645\u77e5\u540d\u7684\u65b0\u95fb\u673a\u6784": 41, "n\u4f60\u6240\u5728\u7684\u662f\u4e00\u4e2a\u5145\u6ee1\u8c1c\u56e2\u548c\u672a\u89e3\u4e4b\u8c1c\u7684\u73b0\u4ee3\u4e16\u754c": 41, "n\u4f60\u6240\u5728\u7684\u662f\u4e00\u4e2a\u6b66\u4fa0\u4e16\u754c": 41, "n\u4f60\u6240\u5904\u7684\u662f\u4e00\u4e2a\u5145\u6ee1\u6c5f\u6e56\u4e49\u6c14\u7684\u4e16\u754c": 41, "n\u4f60\u662fmari": 41, "n\u4f60\u662f\u4e00\u4e2a\u4e13\u4e1a\u7684\u5065\u8eab\u6559\u7ec3": 41, "n\u4f60\u662f\u4e00\u4e2a\u64c5\u957f\u5199\u548c\u4f18\u5316system": 41, "n\u4f60\u662f\u4e00\u4f4d\u4e50\u4e8e\u52a9\u4eba": 41, "n\u4f60\u662f\u4e00\u4f4d\u5c0f\u7ea2\u4e66\u6587\u6848\u5927\u5e08": 41, "n\u4f60\u662f\u4e00\u4f4d\u624d\u534e\u6a2a\u6ea2\u7684\u5e02\u573a\u5206\u6790\u5e08": 41, "n\u4f60\u662f\u4e00\u4f4d\u7cbe\u660e\u7684\u5e02\u573a\u5206\u6790\u4e13\u5bb6": 41, "n\u4f60\u662f\u4e00\u4f4d\u7ecf\u9a8c\u4e30\u5bcc\u7684hr\u4e13\u5bb6": 41, "n\u4f60\u662f\u4e00\u4f4d\u7ecf\u9a8c\u4e30\u5bcc\u7684\u4e13\u4e1a\u77ed\u89c6\u9891\u5267\u672c\u521b\u4f5c\u5927\u5e08": 41, "n\u4f60\u662f\u4e00\u4f4d\u7ecf\u9a8c\u4e30\u5bcc\u7684\u6559\u80b2\u4e13\u5bb6": 41, "n\u4f60\u662f\u4e00\u4f4d\u7ecf\u9a8c\u4e30\u5bcc\u7684\u65c5\u884c\u987e\u95ee": 41, "n\u4f60\u662f\u4e00\u4f4d\u8bc1\u5238\u4e13\u5bb6": 41, "n\u4f60\u662f\u4e00\u4f4d\u8d44\u6df1\u4e14\u6781\u5177\u5f71\u54cd\u529b\u7684\u7f8e\u98df\u4e13\u5bb6": 41, "n\u4f60\u662f\u4e00\u4f4d\u8d44\u6df1\u7684\u5065\u8eab\u8bad\u7ec3\u5e08": 41, "n\u4f60\u662f\u4e00\u540d\u4e13\u4e1a\u7684\u5e02\u573a\u5206\u6790\u5e08": 41, "n\u4f60\u662f\u4e00\u540d\u7f16\u7a0b\u4e13\u5bb6": 41, "n\u4f60\u662f\u4e2d\u571f\u65cf\u4eba": 41, "n\u4f60\u662f\u4f55\u8389\u8389": 41, "n\u4f60\u662f\u5f20\u534e": 41, "n\u4f60\u662f\u5f20\u6668\u5149": 41, "n\u4f60\u662f\u6155\u5bb9\u5343\u5c71": 41, "n\u4f60\u662f\u674e\u5a1c": 41, "n\u4f60\u662f\u674e\u660c\u5b87": 41, "n\u4f60\u662f\u674e\u6b23": 41, "n\u4f60\u662f\u674e\u9752\u4e91": 41, "n\u4f60\u662f\u6797\u9038\u98ce": 41, "n\u4f60\u662f\u67ef\u5357": 41, "n\u4f60\u662f\u827e\u745e\u5a1c": 41, "n\u4f60\u662f\u827e\u8389\u5a05": 41, "n\u4f60\u662f\u827e\u8389\u68ee": 41, "n\u4f60\u662f\u827e\u8389\u897f\u4e9a": 41, "n\u4f60\u662f\u82cf\u96e8\u8431": 41, "n\u4f60\u662f\u83ab\u95ee\u5929": 41, "n\u4f60\u662f\u8d5b\u7433\u5a1c": 41, "n\u4f60\u662f\u8d75\u5a77": 41, "n\u4f60\u662f\u96f7\u5a05": 41, "n\u4f60\u662f\u970d\u5c55\u767d": 41, "n\u4f60\u662f\u9a6c\u514b": 41, "n\u4f60\u662f\u9ec4\u84c9": 41, "n\u4f60\u6765\u81ea\u4e00\u4e2a\u6ce8\u91cd\u6559\u80b2\u7684\u5bb6\u5ead": 41, "n\u4f60\u6765\u81ea\u4e8e\u4e00\u4e2a\u6280\u672f\u9ad8\u5ea6\u53d1\u8fbe\u7684\u672a\u6765\u4e16\u754c": 41, "n\u4f60\u751f\u6d3b\u5728\u4e00\u4e2a\u5145\u6ee1\u81ea\u7136\u98ce\u8c8c\u4e0e\u6311\u6218\u673a\u4f1a\u7684\u4e16\u754c": 41, "n\u4f60\u751f\u6d3b\u5728\u4e00\u4e2a\u5145\u6ee1\u9b54\u6cd5\u548c\u795e\u8bdd\u751f\u7269\u7684\u5947\u5e7b\u68ee\u6797\u4e2d": 41, "n\u4f60\u751f\u6d3b\u5728\u4e00\u4e2a\u79d1\u6280\u9ad8\u901f\u53d1\u5c55\u7684\u73b0\u4ee3\u4e16\u754c": 41, "n\u4f60\u751f\u6d3b\u5728\u4e00\u4e2a\u88ab\u8fdc\u53e4\u9b54\u6cd5\u4e0e\u8bf8\u795e\u4f20\u8bf4\u5305\u56f4\u7684\u5e7b\u60f3\u5927\u9646\u4e0a": 41, "n\u4f60\u751f\u6d3b\u5728\u4e00\u4e2a\u9ad8\u5ea6\u53d1\u5c55\u7684\u79d1\u6280\u4e16\u754c": 41, "n\u4f60\u751f\u6d3b\u5728\u4e00\u4e2a\u9b54\u6cd5\u4e0e\u79d1\u6280\u5171\u5b58\u7684\u4e16\u754c": 41, "n\u4f60\u751f\u6d3b\u5728\u4ee5\u6b66\u6797\u95e8\u6d3e\u5206\u7acb": 41, "n\u4f60\u7684\u5199\u4f5c\u6587\u7b14\u6d41\u7545": 41, "n\u4f60\u7684\u8a00\u8bed\u4e25\u8c28\u800c\u5177\u6709\u8bf4\u670d\u529b": 41, "n\u4f60\u7684\u8a00\u8bed\u98ce\u683c\u4f18\u96c5\u800c\u5bcc\u6709\u8bd7\u610f": 41, "n\u4f60\u7684\u8a00\u8bed\u98ce\u683c\u53d7\u5230\u65e7\u65f6\u4ee3\u6587\u5316\u4eba\u7684\u5f71\u54cd": 41, "n\u4f60\u7684\u8a00\u8bed\u98ce\u683c\u6e05\u6670": 41, "n\u4f60\u7684\u8a00\u8bed\u98ce\u683c\u7b26\u5408\u4e2d\u571f\u4e16\u754c\u7684\u795e\u79d8\u548c\u53e4\u8001\u6c1b\u56f4": 41, "n\u4f60\u7684\u8a00\u8bed\u98ce\u683c\u7b26\u5408\u5e74\u9f84\u548c\u80cc\u666f": 41, "n\u4f60\u7684\u8bed\u8a00\u5145\u6ee1\u4e86\u667a\u6167\u548c\u5e7d\u9ed8": 41, "n\u4f60\u7684\u8bed\u8a00\u7b80\u6d01\u6709\u529b": 41, "n\u4f60\u7684\u8c08\u5410\u5145\u6ee1\u903b\u8f91\u6027\u548c\u667a\u6167": 41, "n\u4f60\u81ea\u5c0f\u5bf9\u673a\u68b0\u548c\u7535\u5b50\u5145\u6ee1\u5174\u8da3": 41, "n\u4f60\u81ea\u5e7c\u4e60\u6b66": 41, "n\u4f60\u8bb2\u8bdd\u65f6\u5145\u6ee1\u70ed\u60c5": 41, "n\u4f60\u8bb2\u8bdd\u76f4\u63a5\u800c\u5bcc\u6709\u6fc0\u60c5": 41, "n\u4f60\u8eab\u5904\u4e00\u4e2a\u88ab\u795e\u79d8\u529b\u91cf\u6e17\u900f\u7684\u4e2d\u4e16\u7eaa\u5947\u5e7b\u4e16\u754c": 41, "n\u4f60\u9a70\u9a8b\u5728\u4e00\u4e2a\u7531\u65e0\u6570\u5c9b\u5c7f\u7ec4\u6210\u7684\u5e9e\u5927\u6d77\u6d0b\u4e2d": 41, "n\u4fe1\u4ef0": 41, "n\u51fa\u751f\u4e8e\u6587\u5b66\u4e4b\u5bb6": 41, "n\u5728\u5de5\u4f5c\u4e2d": 41, "n\u5728\u65e5\u5e38\u5bf9\u8bdd\u4e2d": 41, "n\u5728\u91cd\u89c6\u6559\u80b2\u4e0e\u73af\u4fdd\u7684\u793e\u4f1a\u80cc\u666f\u4e0b": 41, "n\u5c3d\u7ba1\u5e74\u8f7b": 41, "n\u5f53\u4f60\u6709\u4e0d\u786e\u5b9a\u6216\u8005\u4e0d\u4e86\u89e3\u7684\u5730\u65b9\u65f6": 41, "n\u6027\u683c": 41, "n\u6280\u80fd": 41, "n\u65e5\u5e38\u53e3\u8bed\u5316": 41, "n\u667a\u6167\u4e14\u6761\u7406\u6e05\u6670": 41, "n\u6b63\u5f0f\u4e14\u5bcc\u6709\u8bd7\u610f": 41, "n\u6d3b\u8dc3\u5728\u5145\u6ee1\u673a\u9047\u4e0e\u6311\u6218\u7684\u5546\u754c\u4e2d": 41, "n\u7279\u8d28": 41, "n\u7528\u6237\u5c06\u626e\u6f14\u4f60\u7684\u4f34\u4fa3": 41, "n\u7528\u6237\u5c06\u626e\u6f14\u4f60\u7684\u4fa6\u63a2\u642d\u6863": 41, "n\u7528\u6237\u5c06\u626e\u6f14\u4f60\u7684\u5973\u513f": 41, "n\u7528\u6237\u5c06\u626e\u6f14\u4f60\u7684\u5973\u53cb": 41, "n\u7528\u6237\u5c06\u626e\u6f14\u4f60\u7684\u5f92\u5f1f": 41, "n\u7528\u6237\u5c06\u626e\u6f14\u4f60\u7684\u65c5\u4f34": 41, "n\u7528\u6237\u5c06\u626e\u6f14\u4f60\u7684\u822a\u6d77\u58eb": 41, "n\u7528\u6237\u5c06\u626e\u6f14\u5bf9\u4f60\u53c2\u4e0e\u7684\u73af\u4fdd\u9879\u76ee\u611f\u5174\u8da3\u7684\u5bb6\u957f": 41, "n\u7528\u6237\u626e\u6f14\u4f60\u7684\u597d\u53cb": 41, "n\u76f4\u63a5\u800c\u575a\u5b9a": 41, "n\u7f3a\u70b9": 41, "n\u81ea\u5c0f\u5c31\u5c55\u73b0\u51fa\u5bf9\u79d1\u5b66\u7684\u5f3a\u70c8\u5174\u8da3": 41, "n\u81ea\u5c0f\u5c31\u68a6\u60f3\u6210\u4e3a\u4f20\u8bf4\u4e2d\u7684\u82f1\u96c4": 41, "n\u81ea\u5e7c\u63a5\u53d7\u4e25\u82db\u7684\u730e\u9b54\u4eba\u8bad\u7ec3": 41, "n\u867d\u7136\u4e8b\u4e1a\u6210\u529f": 41, "n\u8a00\u8f9e\u575a\u5b9a\u800c\u76f4\u63a5": 41, "n\u8bf7\u6ce8\u610f": 41, "n\u8eab\u4e3a\u6559\u5e08": 41, "n\u8eab\u4e3a\u6843\u82b1\u5c9b\u4e3b\u4e4b\u5973": 41, "n\u98ce\u683c\u6e05\u6670": 41, "o": [20, 23, 54, 59, 124], "obei": 119, "obj": [17, 18, 50], "object": [0, 1, 2, 6, 7, 9, 11, 12, 13, 14, 16, 17, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 37, 41, 42, 44, 45, 46, 47, 49, 50, 51, 52, 54, 56, 58, 71, 73, 75, 76, 77, 83, 86, 88, 89, 93, 102, 103, 110, 112, 113, 117, 118, 119, 121, 123], "object_nam": 118, "observ": [0, 1, 2, 8, 31, 110, 112, 113, 121, 123], "obtain": [1, 6, 13, 41, 51, 52, 54, 85, 86], "obviou": 41, "occas": 41, "occasion": 41, "occup": 121, "occur": [112, 117], "off": 43, "offer": [41, 88, 89, 107, 109, 121, 123], "offici": [66, 67, 107, 119, 127], "often": [41, 118, 119, 123], "oh": 123, "ok": 121, "old": [14, 15, 16, 41], "oldest": [1, 2, 51, 52, 53], "ollama": [20, 25, 108, 116, 119], "ollama_chat": [20, 25, 114, 116], "ollama_embed": [20, 25, 114], "ollama_gener": [20, 25, 114], "ollama_model": [0, 20], "ollamachatwrapp": [0, 20, 25, 114, 116], "ollamaembeddingwrapp": [0, 20, 25, 114], "ollamagenerationwrapp": [0, 20, 25, 114], "ollamawrapperbas": [0, 20, 25], "omit": [1, 2, 3, 4, 6, 8, 9, 112, 113, 117, 118], "onc": [41, 109, 116, 117, 121, 122, 123, 127], "one": [12, 14, 15, 16, 20, 21, 22, 24, 41, 45, 54, 69, 99, 103, 108, 110, 112, 113, 116, 117, 119, 122, 123, 124], "ones": [14, 15, 16], "ongo": 112, "onli": [1, 2, 4, 7, 8, 17, 18, 20, 21, 41, 51, 52, 54, 59, 75, 93, 110, 114, 115, 117, 118, 119, 121, 122, 123, 124], "onlin": [41, 123], "onyx": [54, 67], "open": [20, 30, 32, 34, 54, 73, 79, 88, 89, 109, 122, 127], "openai": [20, 23, 24, 26, 27, 54, 59, 67, 73, 93, 94, 109, 110, 116, 117, 118, 119], "openai_api_kei": [20, 23, 26, 109, 114], "openai_audio_to_text": [0, 54, 65, 67, 117], "openai_cfg_dict": 109, "openai_chat": [20, 24, 26, 109, 110, 114, 116, 121, 123], "openai_create_image_vari": [0, 54, 65, 67, 117], "openai_dall_": [20, 26, 109, 114], "openai_edit_imag": [0, 54, 65, 67, 117], "openai_embed": [20, 26, 109, 114], "openai_image_to_text": [0, 54, 65, 67, 117], "openai_model": [0, 20], "openai_model_config": 109, "openai_organ": [20, 26, 109], "openai_servic": [54, 65], "openai_text_to_audio": [0, 54, 65, 67, 117], "openai_text_to_imag": [0, 54, 65, 67, 117], "openaichatwrapp": [0, 20, 26, 114, 116], "openaidallewrapp": [0, 20, 26, 114], "openaiembeddingwrapp": [0, 20, 26, 114], "openaiwrapperbas": [0, 20, 26, 114], "oper": [0, 1, 2, 38, 39, 40, 54, 56, 59, 62, 63, 64, 75, 81, 102, 103, 107, 110, 112, 113, 117, 118, 122, 124, 125], "opinion": 41, "opportun": 110, "opposit": [54, 82], "opt": [103, 122], "opt_kwarg": 103, "opt_prompt": [41, 123], "optim": [41, 105, 107, 121, 129], "optimist": 41, "option": [0, 1, 2, 3, 4, 6, 8, 9, 13, 14, 15, 16, 17, 18, 19, 20, 25, 28, 29, 31, 32, 33, 34, 35, 36, 37, 38, 39, 41, 42, 44, 45, 46, 47, 49, 51, 52, 54, 59, 66, 67, 69, 73, 81, 85, 86, 90, 91, 103, 107, 108, 109, 110, 112, 113, 114, 115, 116, 117, 118, 119, 122, 123], "opu": [54, 67], "orat": 41, "orchestr": [110, 113], "order": [14, 16, 20, 21, 54, 69, 102, 107, 110, 113, 121], "ordinari": 110, "org": [1, 7, 54, 67, 82], "organ": [15, 20, 24, 26, 41, 54, 84, 109, 110, 111, 114, 119, 127], "orient": 113, "origin": [14, 16, 41, 46, 47, 51, 53, 54, 56, 69, 73, 85, 93, 118, 121], "origin_i": [0, 54, 55, 56], "origin_x": [0, 54, 55, 56], "original_func": [54, 73], "original_imag": [54, 67], "other": [0, 1, 2, 8, 20, 30, 31, 32, 35, 36, 37, 41, 54, 59, 75, 82, 85, 110, 112, 113, 115, 118, 119, 121, 122, 123, 124, 126, 127], "otherwis": [0, 1, 2, 12, 14, 15, 16, 20, 21, 51, 52, 54, 56, 71, 73, 79, 86, 117], "our": [1, 4, 20, 22, 110, 119, 121, 125, 126, 127], "out": [1, 2, 7, 9, 38, 39, 40, 110, 111, 123, 127], "outburst": 41, "outlast": 110, "outlin": [32, 37, 110, 113, 115, 117], "outlook": 41, "output": [0, 1, 2, 3, 4, 6, 8, 9, 20, 21, 23, 31, 38, 39, 40, 41, 54, 58, 59, 60, 67, 73, 86, 87, 102, 103, 110, 111, 112, 113, 115, 121, 122], "output_token": [20, 21], "outsid": 113, "over": [41, 103, 111, 115, 121], "overlap": 124, "overli": 41, "overload": 41, "overrid": [0, 116], "overridden": [1, 5], "overview": [67, 107, 117, 121], "overwrit": [14, 15, 16, 45, 54, 63, 64, 114, 118], "overwrite_index": 45, "own": [1, 7, 20, 21, 23, 24, 25, 29, 30, 41, 45, 109, 110, 112, 115, 116, 119, 123, 124, 125], "p": [32, 36, 54, 86], "paa": [20, 30], "packag": [43, 45, 50, 56, 93, 105, 106, 108, 121, 122, 124, 125], "page": [54, 56, 82, 86, 87, 117, 118, 121, 122, 125], "page_": 125, "page_html": [0, 54, 55, 56, 125], "page_markdown": [0, 54, 55, 56, 125], "page_screenshot": [0, 54, 55, 56], "page_titl": [0, 54, 55, 56, 125], "page_url": [54, 56, 125], "pagedown": [54, 56], "pageid": [54, 87], "pageup": [54, 56], "pair": [115, 119], "paper": [1, 7, 54, 81, 82, 88, 89, 121], "paradigm": 121, "paragon": 41, "parallel": [107, 121], "param": [1, 6, 14, 15, 16, 32, 34, 36, 37, 41, 42, 43, 44, 45, 54, 58, 67, 86, 117], "paramet": [0, 1, 2, 3, 4, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 51, 52, 53, 54, 56, 58, 59, 60, 62, 63, 64, 66, 67, 69, 70, 71, 73, 75, 76, 77, 79, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 93, 101, 102, 103, 110, 115, 116, 117, 118, 121, 122, 123, 124], "params_prompt": 117, "parent": [41, 103], "parent_dir_of_agent_a_and_b": 121, "park": [54, 85], "pars": [0, 1, 4, 11, 20, 28, 32, 33, 34, 35, 36, 37, 54, 63, 73, 82, 86, 101, 110, 117, 119, 125], "parse_and_call_func": [0, 54, 58, 73, 117], "parse_arg": 124, "parse_func": [20, 27, 115], "parse_html_to_text": [0, 54, 80, 86], "parse_json": [0, 32, 37, 115], "parsed_respons": 35, "parser": [0, 1, 4, 28, 105, 106, 124, 129], "parser_bas": [0, 32], "parserbas": [0, 1, 4, 32, 33, 34, 35, 36, 37, 115], "part": [1, 6, 41, 103, 119, 122, 126, 127], "partak": 123, "parti": [20, 22, 109, 119], "partial": 58, "particip": [0, 31, 38, 39, 103, 110, 115], "particular": 123, "particularli": 123, "pass": [0, 1, 2, 3, 4, 6, 14, 15, 16, 20, 22, 31, 45, 54, 73, 103, 109, 110, 113, 114, 117, 118, 119, 121, 122, 124], "passion": 41, "password": [54, 76, 117], "past": [110, 112], "path": [0, 13, 14, 15, 16, 41, 42, 44, 46, 47, 51, 52, 53, 54, 62, 63, 64, 66, 67, 83, 98, 99, 101, 109, 114, 117, 121, 122, 124], "path_db": [0, 13, 120], "path_log": 12, "path_to_gte_qwen2_7b_instruct": 124, "path_to_your_data_dir_1": 124, "path_to_your_python_code_data_dir": 124, "patient": 41, "pattern": [32, 36, 113], "payload": 91, "pcm": [54, 67], "pdf": 124, "peer": 41, "peerless": 41, "percept": 41, "perform": [1, 3, 41, 54, 82, 88, 89, 102, 103, 105, 107, 110, 112, 113, 117, 119, 122, 123, 125, 127, 129], "period": 41, "permiss": [54, 84], "persist": 45, "persist_dir": [42, 44], "persist_root": 45, "person": [41, 54, 84, 110, 123], "persuas": 123, "pertain": 107, "pessimist": 41, "phase": 110, "phenomenon": [54, 84], "photo": [54, 85, 117], "photo0": [54, 85], "photo_count": [54, 85], "photo_data": [54, 85], "phrase": 41, "physic": 41, "pictur": [20, 21, 109, 119], "pid": [54, 82, 120], "piec": [1, 6, 14, 15, 54, 59, 117, 118], "pip": [54, 56, 125, 127], "pipe": [110, 113], "pipe1": 113, "pipe2": 113, "pipe3": 113, "pipelin": [0, 42, 100, 103, 105, 106, 107, 109, 122, 129], "pipelinebas": [0, 5, 38, 40, 113], "piplin": 45, "pivot": 112, "place": 115, "placehold": [0, 17, 18, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 38, 39, 40, 41, 46, 47, 51, 53, 93, 103, 113], "placeholdermessag": [0, 17, 19, 46, 47, 49], "placeholdernod": [95, 100, 103], "plai": [41, 110, 118, 119], "plain": [1, 4], "plan": 41, "platform": [20, 26, 29, 41, 67, 105, 107, 108, 121, 123, 126, 129], "playback": [54, 67], "player": [98, 99, 110], "player1": 110, "player2": 110, "player3": 110, "player4": 110, "player5": 110, "player6": 110, "player_nam": 110, "playwright": [54, 56, 125], "pleas": [1, 4, 20, 23, 25, 41, 51, 52, 54, 60, 66, 82, 84, 109, 110, 112, 113, 115, 117, 118, 119, 121, 122, 123, 124, 127], "pledg": 41, "plot": [41, 54, 59], "plt": [54, 59], "plu": [20, 21, 54, 66, 114, 119, 123], "png": [54, 67, 119], "point": [41, 54, 56, 67, 90, 98, 116, 117, 119, 122, 123], "poison": [110, 115], "polici": 122, "pool": [1, 2, 51, 52, 53, 110, 112], "pop": [110, 124], "popul": 122, "popular": [41, 124], "port": [0, 1, 2, 8, 11, 17, 18, 19, 20, 25, 46, 47, 51, 52, 53, 54, 75, 76, 90, 121, 122, 124], "portrai": 123, "pose": [41, 54, 59], "posit": [41, 123], "possess": 41, "possibl": [41, 127], "post": [20, 24, 27, 41, 42, 43, 44, 110, 115, 124], "post_api": [20, 24, 27, 114], "post_api_chat": [20, 27, 114], "post_api_dal": 27, "post_api_dall_": [27, 114], "post_api_embed": [27, 114], "post_arg": [20, 27], "post_model": [0, 20, 124], "post_process": [0, 42, 43], "postalcod": [54, 85], "postapichatwrapp": [0, 20, 27, 114], "postapidallewrapp": [0, 20, 27, 114], "postapiembeddingwrapp": [0, 20, 27, 114, 124], "postapimodelwrapp": [20, 27], "postapimodelwrapperbas": [0, 20, 27, 114], "postprocessing_model": [42, 43], "potenti": [1, 9, 41, 42, 44, 54, 59, 110, 111, 123], "potion": 110, "power": [41, 54, 82, 84, 110, 115, 122], "practic": [41, 54, 56, 113, 123], "pre": [107, 112, 117, 122, 127], "prebuilt": [105, 129], "preced": [54, 85], "precis": [41, 115], "predat": 110, "predecessor": 102, "predefin": [110, 112], "predict": 41, "prefer": [41, 108, 113], "prefix": [13, 20, 21, 54, 81, 99, 119, 125], "prepar": [32, 36, 41, 112, 117, 124], "preprocess": [45, 54, 86, 124], "presenc": [41, 122], "present": [41, 54, 59, 107, 110, 114], "preserv": [14, 16, 54, 69], "preserve_ord": [14, 16, 54, 69], "press": [41, 54, 56], "pretend": 115, "prevent": [14, 15, 16, 20, 22, 41, 59, 103, 113], "previou": [88, 89], "previous": 122, "price": 41, "primari": [41, 109, 112], "principl": 41, "print": [0, 1, 6, 7, 12, 13, 17, 18, 54, 58, 66, 67, 82, 84, 85, 87, 109, 112, 115, 117, 119, 120, 121, 123, 124, 125], "print_llm_usag": [0, 13, 106, 120], "priorit": 41, "prioriti": [17, 18], "pro": [20, 22, 114, 119], "problem": [7, 41, 126, 127], "problemat": 111, "proce": [101, 110], "proceed": 122, "process": [1, 2, 3, 4, 6, 9, 20, 28, 41, 42, 43, 44, 45, 51, 52, 54, 59, 73, 79, 86, 88, 89, 102, 110, 111, 112, 113, 115, 117, 118, 119, 123, 124, 127], "processed_func": [54, 73], "produc": [1, 3, 4, 6, 88, 89, 112, 115], "product": [41, 123], "profession": 41, "profici": [41, 123], "profil": 41, "program": [41, 54, 56, 84, 105, 107, 110, 113, 118, 121, 129], "programm": [54, 84], "progress": [41, 45, 115, 126], "project": [0, 10, 13, 41, 88, 89, 108, 112, 120, 122], "promot": [41, 123], "prompt": [0, 1, 2, 3, 4, 6, 7, 9, 10, 20, 21, 22, 23, 24, 25, 29, 30, 32, 36, 42, 43, 54, 66, 67, 73, 79, 86, 88, 89, 93, 105, 106, 107, 110, 112, 115, 116, 117, 118, 120, 122, 124, 129], "prompt1": [20, 21, 23, 24, 29, 30], "prompt2": [20, 21, 23, 24, 30], "prompt_eval_count": [20, 25], "prompt_eval_dur": [20, 25], "prompt_gen_method": 123, "prompt_gener": 123, "prompt_not": 41, "prompt_token": [13, 20, 23, 26, 29, 30, 120, 124], "prompttyp": 118, "prompt\u4e5f\u5fc5\u987b\u4fdd\u7559\u8fd9\u4e9b\u90e8\u5206": 41, "prompt\u5305\u542b\u5bf9agent\u7684\u89d2\u8272\u6216\u8005\u6027\u683c\u63cf\u8ff0": 41, "prompt\u5fc5\u987b\u4e0e\u7528\u6237\u539f\u59cbprompt\u610f\u56fe\u4e00\u81f4": 41, "prompt\u7684\u4e13\u5bb6": 41, "proper": 122, "properli": [54, 73, 110, 117, 125], "properti": [1, 2, 13, 17, 18, 19, 20, 28, 32, 34, 36, 54, 56, 58, 73, 114, 115, 117, 118, 121, 122], "propos": 127, "prospect": 41, "protect": [41, 91], "protobuf": 49, "protocol": [1, 5, 48], "provid": [1, 2, 4, 9, 14, 16, 17, 18, 20, 22, 32, 34, 36, 41, 42, 44, 54, 59, 67, 73, 79, 84, 85, 86, 88, 89, 91, 99, 101, 102, 103, 107, 110, 111, 112, 113, 114, 115, 117, 118, 119, 120, 121, 122, 123, 124, 125, 127], "provok": 41, "prowess": 41, "psychologi": 41, "pte": [54, 82], "public": [54, 82, 117], "published_d": [54, 85], "pull": [20, 22, 25, 108, 126], "pulsat": 41, "pure": [105, 129], "purg": 118, "purpos": [20, 28, 41, 110, 112], "put": [115, 116, 121, 124], "puzzl": 41, "py": [42, 44, 58, 59, 81, 93, 101, 107, 110, 122, 124], "pydant": [32, 34, 54, 56, 115], "pypi": 108, "python": [51, 52, 54, 58, 59, 60, 84, 101, 102, 103, 105, 107, 108, 109, 110, 111, 117, 118, 121, 122, 124, 129], "python3": 108, "pythonservicenod": [95, 100, 103], "qianwen": [20, 21], "qr": 126, "qualiti": [41, 54, 67, 88, 89, 123], "quantiti": 115, "quarter": 41, "queri": [1, 6, 14, 16, 41, 42, 43, 44, 45, 54, 69, 73, 75, 76, 77, 81, 82, 84, 85, 87, 88, 89, 117, 118, 123, 124], "query_mongodb": [0, 54, 74, 75, 117], "query_mysql": [0, 54, 74, 76, 117], "query_sqlit": [0, 54, 74, 77, 117], "query_transform": 45, "query_transform_cookbook": 45, "quest": 41, "question": [41, 45, 54, 82, 84, 107, 117, 123, 126], "queue": 99, "quick": [20, 21, 41, 105, 129], "quickli": [109, 114, 119], "quot": 115, "quota": 11, "quotaexceedederror": [0, 11, 106], "quotaexceederror": 11, "qwen": [54, 66, 114, 119, 120], "qwen2": 124, "qwen_emb_config": [42, 44, 124], "rag": [0, 1, 6, 20, 29, 105, 106, 129], "rag_ag": [0, 1], "rag_storag": [42, 44, 45], "rag_work": 124, "rais": [1, 2, 4, 9, 11, 20, 27, 32, 34, 36, 54, 85, 91, 93, 101, 102, 112, 118, 127], "raise_except": [54, 73], "ralli": 41, "random": [0, 13, 20, 29, 41, 51, 52, 54, 67, 123], "randomli": 8, "rang": [14, 15, 20, 29, 38, 40, 41, 88, 89, 103, 110, 113], "rank": [41, 54, 85], "ranking_data": [54, 85], "ranking_out_of": [54, 85], "ranking_str": [54, 85], "rate": [54, 85, 110], "rather": [17, 18, 115, 118, 119, 121], "rating_image_url": [54, 85], "ration": 41, "raw": [11, 20, 28, 54, 86, 102, 114], "raw_info": 102, "raw_respons": [0, 11], "re": [1, 7, 20, 21, 23, 24, 25, 29, 30, 54, 86, 108, 110, 115, 119, 123, 124, 127], "reach": 115, "react": [1, 7, 112, 123], "react_ag": [0, 1], "reactag": [0, 1, 7, 103, 112, 115, 117, 122], "reactagentnod": [95, 100, 103], "read": [13, 20, 26, 30, 54, 63, 64, 103, 109, 110, 114, 117, 121, 123], "read_json_fil": [0, 54, 61, 63, 117], "read_text_fil": [0, 54, 61, 64, 117], "readabl": [41, 111], "reader": 123, "readi": [42, 44, 107, 110, 112, 121, 124, 127], "readm": 114, "readtextservicenod": [95, 100, 103], "real": [17, 19, 41, 121, 126], "realiz": 115, "realm": 41, "reason": [1, 7, 11, 41, 115, 123], "rec": [54, 82], "recal": 112, "receiv": [41, 109, 113, 115, 121, 124], "recent": [14, 15, 118], "recent_n": [14, 15, 16, 118], "recent_n_mem_for_retriev": [1, 6, 124], "recogn": [88, 89], "recommend": [41, 54, 87, 108, 110, 111, 114, 117, 119, 122, 123], "reconstruct": 41, "record": [1, 2, 8, 11, 13, 17, 19, 111, 112, 118], "recoveri": 41, "rectitud": 41, "recurs": [103, 124], "red": [41, 123], "redirect": [12, 111], "reduc": [115, 121], "redund": 41, "refer": [1, 4, 7, 17, 18, 20, 21, 22, 23, 25, 26, 41, 42, 44, 45, 54, 66, 67, 81, 82, 84, 88, 89, 107, 109, 110, 112, 114, 115, 117, 118, 119, 121, 122, 124, 125], "referenc": 58, "reference_model": [88, 89], "refin": [41, 88, 89], "reflect": [41, 123], "refrain": 41, "refresh": [45, 122, 124], "refresh_index": [42, 45], "regard": 124, "regex": [32, 36], "regex_tagged_content_pars": [0, 32], "regextaggedcontentpars": [0, 32, 36], "region": [41, 54, 67], "regist": [1, 2, 11, 54, 73, 109, 114, 116, 117, 121, 123], "register_agent_class": [0, 1, 2], "registr": 122, "registri": [1, 2, 20, 25], "regular": 115, "relat": [1, 11, 13, 14, 38, 41, 42, 46, 51, 54, 87, 103, 119, 124, 126], "relationship": 121, "releas": [1, 2], "relev": [14, 16, 41, 118, 123, 126, 127], "reliabl": [88, 89, 105, 129], "remain": [41, 110, 113], "rememb": [110, 116, 127], "remind": [32, 34, 36, 37, 41, 115], "remot": [46, 47, 122], "remote_machine_port": 122, "remov": [1, 2, 13, 54, 56, 59, 102, 113, 118, 125], "remove_duplicates_from_end": [95, 100, 102], "remove_interactive_mark": [0, 54, 55, 56, 125], "renam": 117, "renown": 41, "reorgan": 119, "repeat": [103, 110, 124], "repeatedli": 113, "repetit": 123, "replac": [54, 56, 113, 115], "repli": [0, 1, 2, 3, 4, 6, 7, 8, 9, 35, 51, 52, 53, 88, 89, 99, 110, 112, 115, 116, 117, 118, 121, 123, 124], "replic": [88, 89, 103], "repons": 112, "report": [41, 128], "repositori": [20, 22, 81, 108, 109, 126], "repres": [38, 40, 54, 84, 85, 102, 103, 107, 111, 113, 117, 118, 119, 121], "represent": 118, "reproduc": 127, "reput": 41, "request": [1, 2, 8, 20, 21, 22, 25, 27, 30, 41, 46, 47, 49, 51, 52, 53, 54, 73, 83, 85, 86, 111, 117, 121, 124, 126], "request_id": [20, 21, 30], "requir": [0, 1, 4, 9, 11, 20, 21, 23, 24, 25, 26, 27, 29, 30, 31, 32, 34, 36, 37, 39, 41, 54, 56, 85, 91, 93, 102, 105, 112, 113, 114, 115, 117, 118, 119, 121, 122, 123, 124, 125, 129], "require_arg": [54, 73], "require_url": [1, 9, 112], "required_ext": 124, "required_kei": [0, 1, 9, 32, 34, 36, 37, 110, 112, 115], "requiredfieldnotfounderror": [0, 11, 32, 34, 106], "res_dict": 115, "res_format": [54, 67], "res_of_dict_input": 117, "res_of_string_input": [54, 58, 117], "research": 41, "reserv": [1, 7, 112], "reset": [54, 58, 98, 99, 118], "reset_audi": [0, 1, 2], "reset_glb_var": [95, 96, 98], "reset_notebook": [0, 54, 57, 58], "resetexcept": [95, 96, 99], "resili": 107, "resolut": [13, 120], "resolv": [41, 127], "reson": [41, 123], "resourc": [41, 46, 47, 49, 51, 53, 107, 118, 121, 122], "respect": [41, 54, 59, 120], "respond": [32, 37, 41, 110, 115, 123], "respons": [0, 1, 2, 3, 4, 6, 7, 8, 10, 11, 13, 17, 18, 20, 21, 22, 23, 25, 26, 29, 30, 31, 32, 33, 34, 35, 36, 37, 41, 46, 47, 54, 56, 71, 85, 86, 87, 88, 89, 103, 105, 107, 109, 110, 112, 113, 114, 116, 117, 118, 123, 124, 127, 129], "response_prompt_templ": 41, "responseformat": [0, 10, 106], "responseparsingerror": [0, 11, 106], "responsestub": [0, 46, 47], "rest": [54, 84, 119], "restrict": 41, "result": [1, 2, 8, 20, 21, 32, 36, 41, 45, 54, 58, 62, 71, 73, 75, 76, 77, 81, 82, 83, 84, 85, 86, 102, 103, 110, 112, 115, 117, 123], "result_url1": [20, 21], "result_url2": [20, 21], "results_per_pag": [54, 82], "resurrect": 110, "retain": [41, 112], "retri": [1, 4, 20, 27, 54, 83, 105, 123, 129], "retriev": [0, 1, 6, 14, 16, 42, 43, 45, 54, 85, 87, 98, 99, 103, 105, 117, 118, 121, 124, 125, 129], "retrieval_from_list": [54, 68], "retrieve_by_embed": [0, 14, 16, 118], "retrieve_from_list": [0, 54, 68, 69, 117], "retrieved_doc": [42, 43], "retriv": [1, 6], "retry_interv": [20, 27], "return": [1, 2, 3, 4, 6, 8, 9, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 51, 52, 53, 54, 56, 58, 59, 60, 62, 63, 64, 66, 67, 69, 70, 73, 75, 76, 77, 79, 81, 82, 83, 84, 85, 86, 87, 91, 99, 101, 102, 103, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 123, 124, 126, 127], "return_typ": 118, "return_var": 103, "reus": [121, 124], "reusabl": [42, 44, 117], "reveal": [41, 110], "revers": [14, 16], "review": [54, 85], "review_rating_count": [54, 85], "revis": 41, "rewrit": [42, 44], "rife": 41, "right": 122, "righteou": 41, "righteous": 41, "rightmost": 122, "rigid": 41, "risk": [41, 54, 59, 121], "rival": 41, "rm": [54, 60], "rm_audienc": [0, 1, 2], "rm_databas": [0, 13], "rn": [54, 81], "roadmap": 41, "robot": 41, "robust": [105, 107, 129], "role": [0, 1, 2, 3, 9, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 29, 30, 41, 54, 79, 99, 109, 112, 115, 116, 118, 119, 122, 123], "romanc": 41, "romant": 41, "root": 45, "round": [41, 88, 89, 110], "rout": [41, 103, 124], "row": 122, "rpc": [0, 1, 2, 8, 17, 19, 51, 53, 105, 106, 107], "rpc_agent": [0, 1], "rpc_agent_cli": [0, 46], "rpc_agent_pb2": [0, 46], "rpc_agent_pb2_grpc": [0, 46], "rpcagent": [0, 1, 8, 17, 19, 46, 49], "rpcagentcli": [0, 17, 19, 46, 47, 121], "rpcagentserverlaunch": [0, 51, 52, 121, 122], "rpcagentservic": [0, 46, 49, 51, 53], "rpcagentstub": [0, 46, 49], "rpcmsg": [0, 46, 51, 53], "rpcserversidewrapp": [51, 53], "rule": [110, 115, 119, 122], "run": [0, 1, 2, 8, 13, 41, 45, 46, 47, 49, 54, 58, 59, 98, 100, 102, 107, 111, 114, 117, 120, 121, 123, 124], "run_20240731": 120, "run_app": [95, 96, 98], "run_code_on_notebook": [0, 54, 57, 58], "run_dir": [13, 90, 120, 122], "run_id": [13, 120], "runnabl": 102, "runner": 0, "runtim": [0, 13, 90, 107, 118, 121, 123], "runtime_id": 0, "runtime_info": 13, "safe": 41, "safeti": [41, 54, 59], "sambert": [54, 66], "same": [0, 31, 41, 88, 89, 103, 115, 116, 117, 119, 121, 122, 123], "sample_r": [54, 66], "sampler": [54, 66], "sanit": 102, "sanitize_node_data": [95, 100, 102], "satisfi": [54, 79], "save": [0, 12, 13, 14, 15, 16, 32, 36, 46, 47, 54, 66, 67, 83, 110, 115, 122, 124], "save_api_invoc": [0, 13], "save_api_invok": [0, 13, 120], "save_cod": [0, 13, 120], "save_dir": [0, 13, 54, 66, 67], "save_fil": [0, 13], "save_imag": [0, 13], "save_loc": 13, "save_log": [0, 13, 120], "save_python_cod": [0, 13], "save_runtime_inform": [0, 13], "savori": 41, "scale": [121, 122], "scan": 126, "scenario": [20, 21, 23, 24, 25, 29, 30, 32, 36, 41, 113, 115, 118, 119, 121, 123], "scene": [41, 117], "schema": [32, 34, 54, 73, 115, 117], "school": 41, "scienc": [54, 82], "scientif": 41, "scope": [41, 50], "score": [54, 69], "score_func": [54, 69], "screen": [41, 123], "screenshot": [54, 56], "script": [41, 107, 108, 109, 114], "scriptwrit": 41, "scroll": [54, 56, 125], "search": [0, 41, 54, 73, 80, 81, 82, 85, 87, 90, 103, 117, 123], "search_queri": [54, 81], "search_result": [54, 82], "search_tripadvisor": [54, 85], "season": 41, "second": [20, 21, 41, 46, 47, 51, 52, 54, 56, 59, 93, 119], "secondari": 112, "secret": 91, "secret_kei": 91, "secretli": 110, "section": [41, 109, 110, 113, 115, 119, 121, 122], "secur": [41, 54, 59, 91, 121], "sed": [54, 60], "see": [1, 2, 41, 110, 119, 123, 124, 125, 127], "see_all_photo": [54, 85], "seed": [20, 21, 23, 25, 26, 30, 114], "seek": [41, 126], "seem": 121, "seen": [41, 103, 121], "seen_ag": 103, "seer": [110, 115], "seer_pars": 110, "segment": [14, 15, 16, 117], "select": [41, 54, 86, 98, 113, 118, 121, 123], "selected_tags_text": [54, 86], "self": [1, 6, 13, 41, 42, 43, 54, 73, 110, 112, 113, 114, 115, 116, 117, 118, 123], "self_define_func": [54, 86], "self_parse_func": [54, 86], "selim": [54, 82], "sell": [54, 84], "send": [12, 17, 18, 98, 99, 118, 121], "send_audio": [95, 96, 98], "send_imag": [95, 96, 98], "send_messag": [95, 96, 98], "send_msg": [95, 96, 99], "send_player_input": [95, 96, 99], "send_reset_msg": [95, 96, 99], "sender": [17, 18, 19, 109, 118], "senior": 41, "sens": [41, 123], "sensit": [41, 123], "sent": [110, 121], "sentenc": [41, 123], "sentence_transform": [123, 124], "sentencesplitt": 124, "sentencetransform": [123, 124], "seo": 41, "seo\u4f18\u5316\u63d0\u9ad8\u7b14\u8bb0\u7684\u53ef\u53d1\u73b0\u6027": 41, "separ": [115, 121, 127], "sequenc": [0, 1, 2, 3, 4, 6, 7, 8, 9, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 46, 47, 54, 66, 69, 86, 103, 107, 110, 112, 113, 115, 116, 117, 118, 123], "sequenti": [38, 40, 102, 103, 109], "sequentialpipelin": [0, 38, 39, 40, 109, 110, 122], "sequentialpipelinenod": [95, 100, 103], "seri": [8, 54, 82, 103, 107, 115], "serial": [0, 13, 14, 16, 17, 18, 19, 46, 47, 54, 63, 106, 117, 118], "serializ": 50, "serialized_dict": [17, 18, 19], "seriou": 41, "serv": [41, 103, 110, 112, 113], "server": [0, 1, 2, 8, 11, 17, 19, 20, 25, 46, 47, 49, 54, 75, 76, 105, 106, 124], "server_host": 121, "server_id": [51, 52, 53], "server_info": 121, "server_port": 121, "servic": [0, 41, 46, 49, 51, 100, 103, 105, 106, 108, 109, 112, 121, 122, 123, 125], "service_bot": 112, "service_func": [0, 54, 73], "service_respons": [0, 54], "service_statu": [0, 54], "service_toolkit": [0, 1, 7, 54, 58, 117], "servicebot": 112, "serviceexecstatu": [0, 54, 66, 67, 71, 72, 79, 81, 82, 84, 85, 87, 117], "serviceexestatu": [54, 71, 117], "servicefactori": [0, 54, 73], "servicefunct": [0, 54, 73], "servicercontext": [51, 53], "servicerespons": [0, 1, 7, 54, 56, 58, 59, 60, 62, 63, 64, 66, 67, 69, 70, 71, 73, 75, 76, 77, 79, 81, 82, 83, 84, 85, 86, 87], "servicetoolkit": [0, 1, 7, 54, 58, 73, 117], "session": [54, 60], "set": [0, 1, 2, 3, 4, 6, 8, 9, 13, 14, 16, 20, 23, 30, 35, 41, 42, 44, 46, 47, 51, 52, 53, 54, 56, 59, 82, 88, 89, 101, 102, 103, 108, 113, 114, 115, 116, 117, 118, 120, 121, 122, 125], "set_interactive_mark": [0, 54, 55, 56, 125], "set_model_config": [0, 46, 47, 49, 51, 53, 121], "set_pars": [0, 1, 4, 110, 115], "set_respons": [0, 46, 47], "setitim": [54, 59, 93], "setup": [12, 107, 111, 113, 121], "setup_logg": [0, 12, 106], "setup_ms_servic": 124, "sever": [41, 107, 110, 112], "shape": 41, "sharabl": [42, 44], "share": [0, 31, 41, 113, 116, 121, 126], "sharp": 41, "she": 110, "shell": [54, 60], "shift": 41, "shimmer": [54, 67], "shock": 41, "shoot": 41, "short": 41, "shot": 41, "should": [0, 1, 2, 12, 14, 15, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 32, 33, 34, 36, 41, 54, 56, 58, 73, 85, 87, 88, 89, 107, 109, 110, 114, 115, 116, 117, 118, 122, 123], "shouldn": [20, 25], "show": [6, 13, 41, 45, 54, 59, 62, 88, 89, 107, 121, 126], "show_image_token": [0, 13], "show_intern": [88, 89], "show_text_and_embedding_token": [0, 13], "showcas": 41, "shown": [108, 115, 119, 120, 123], "showprogress": 45, "shrewd": 41, "shrink": 10, "shrinkpolici": [0, 10, 106], "shutdown": [0, 51, 52], "side": [110, 122], "sidebar": 122, "sig": 117, "sign": 91, "signal": [54, 59, 93, 99], "signatur": 117, "signific": 103, "similar": [1, 6, 41, 42, 43, 45, 54, 68, 113, 115, 117, 118, 119, 123, 124], "similarity_top_k": [1, 6, 42, 43, 45, 124], "similarli": [121, 122, 123], "simpl": [1, 3, 20, 22, 42, 44, 109, 111, 115, 119, 121, 123], "simpledirectoryread": 124, "simpli": [88, 89, 121, 122], "simplic": [119, 121], "simplifi": [107, 110, 113, 117, 119], "simultan": 121, "sinc": [41, 54, 59, 93, 119, 123], "singapor": [54, 82], "singl": [12, 20, 21, 22, 25, 54, 66, 88, 89, 107, 115, 118, 119, 122, 124], "singleton": 13, "sir": 41, "situat": 41, "siu": [54, 82], "siu53274": [54, 82], "size": [0, 1, 2, 14, 15, 16, 51, 52, 53, 54, 66, 67, 114, 118, 119, 124], "skill": [41, 123], "sky": [20, 25, 54, 67], "skylin": [54, 67], "sleep": [54, 56], "slow": 41, "slower": 111, "small": [54, 85, 114, 123], "smooth": 41, "smoothli": 119, "snippet": [41, 54, 84, 110, 127], "so": [1, 4, 32, 37, 54, 60, 73, 84, 108, 115, 116, 117, 119, 121, 123, 125], "social": [41, 110], "societi": 41, "socket": [51, 52], "socotra": [54, 85], "soft": 41, "soldier": 41, "solid": 41, "solo": [54, 85], "solut": [20, 21, 41, 42, 43, 119, 121], "solv": [7, 41, 107, 112], "some": [1, 2, 8, 10, 17, 18, 19, 41, 54, 59, 73, 84, 87, 88, 89, 97, 112, 113, 114, 115, 119, 121, 122, 123, 124, 125, 127], "some_messag": 113, "someon": [54, 84], "someth": [110, 111, 123], "sometim": [41, 110, 119], "song": [54, 82], "soon": [115, 117, 122, 124], "sort": 102, "sota": 124, "sourc": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 51, 52, 53, 54, 56, 58, 59, 60, 62, 63, 64, 66, 67, 69, 70, 71, 72, 73, 75, 76, 77, 79, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 93, 94, 98, 99, 101, 102, 103, 104, 109, 112, 114, 115, 118, 121, 122, 124, 125], "source_kwarg": 103, "source_path": [54, 62], "space": 123, "sparrow": [54, 82], "speak": [0, 1, 2, 7, 9, 20, 22, 35, 41, 110, 112, 115, 116, 119, 123], "speaker": [111, 118, 119], "special": [38, 40, 41, 69, 110, 111, 112, 121, 123, 124], "specif": [0, 1, 2, 9, 14, 16, 20, 24, 32, 35, 37, 41, 46, 47, 49, 51, 53, 54, 56, 59, 85, 99, 102, 103, 107, 108, 109, 111, 112, 114, 115, 117, 118, 119, 121, 122, 123, 124], "specifi": [1, 4, 5, 13, 20, 24, 26, 30, 41, 51, 52, 54, 59, 62, 66, 67, 73, 83, 91, 93, 103, 109, 110, 112, 113, 114, 115, 117, 118, 121, 122, 123, 124], "speech": [41, 54, 67, 109], "speed": [54, 67], "sphinx_doc": [42, 44, 124], "spice": 41, "spit": 123, "split": 124, "spm": [20, 21], "spoken": [1, 2, 9], "spread": 41, "sql": [54, 76, 117], "sql_queri": [0, 54], "sqlite": [54, 74, 75, 117], "src": 107, "ssh": 122, "stabil": [105, 129], "stabl": 45, "stage": [43, 115], "stai": [20, 25, 114, 126], "stanc": 41, "stand": [109, 111], "standalon": [109, 113], "standard": [41, 54, 59, 67, 88, 89, 110, 111, 118], "standard_1024": 120, "star": 126, "start": [1, 2, 8, 20, 21, 25, 51, 52, 54, 81, 82, 90, 101, 105, 107, 111, 112, 114, 115, 119, 121, 123, 124, 127, 129], "start_workflow": [95, 100, 101], "startup": 121, "state": [54, 60, 85, 107, 111, 112, 120, 121, 125], "state_dict": [0, 13, 106, 120], "static": [1, 7, 20, 22, 24, 26, 49], "static_format": [0, 20, 26], "statu": [0, 41, 54, 58, 66, 67, 71, 72, 73, 81, 82, 84, 85, 87, 117, 121, 122], "statur": 41, "status_cod": [20, 21], "stderr": [12, 111], "stem": [54, 59], "step": [1, 7, 41, 102, 108, 109, 112, 113, 115, 117, 122, 124, 127], "still": [13, 54, 56, 110, 121, 124, 125], "stop": [0, 1, 8, 20, 21, 23, 26, 29, 30, 46, 47, 49, 51, 53, 121, 122], "stop_ev": [51, 53], "storag": [43, 107], "store": [1, 2, 4, 8, 9, 14, 15, 16, 17, 18, 19, 32, 33, 34, 35, 37, 42, 43, 45, 54, 86, 98, 112, 115, 116, 118], "store_and_index": 124, "stori": [41, 115], "storyboard": 41, "storylin": 41, "str": [0, 1, 2, 3, 4, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 41, 42, 43, 44, 45, 46, 47, 50, 51, 52, 53, 54, 56, 58, 59, 60, 62, 63, 64, 66, 67, 71, 73, 75, 76, 77, 79, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 93, 94, 98, 99, 101, 102, 103, 104, 112, 114, 115, 117, 118, 123, 124], "straightforward": [20, 22, 41, 109], "strateg": [41, 110], "strategi": [0, 10, 20, 21, 22, 23, 24, 25, 29, 30, 41, 106, 107, 110, 113, 115, 123], "stream": [0, 12, 20, 21, 22, 23, 25, 26, 28, 29, 30, 105, 129], "streamlin": [105, 113, 129], "street": [54, 85], "street1": [54, 85], "street2": [54, 85], "strength": [41, 88, 89], "strengthen": 107, "strftime": 124, "strictli": 41, "string": [1, 2, 9, 14, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 30, 32, 34, 42, 43, 45, 50, 54, 59, 60, 73, 81, 82, 84, 86, 91, 101, 102, 104, 111, 117, 118, 119, 124], "string_input": 117, "stringmsg": [51, 53], "strong": 41, "structur": [15, 41, 45, 54, 82, 85, 88, 89, 103, 109, 113, 115, 118, 119, 122], "struggl": 41, "stub": [46, 47], "stuck": 123, "student": 41, "studio": [0, 11, 12, 51, 52, 53, 95, 96, 97, 105, 106, 110, 116, 120, 129], "studio_ip": [121, 122], "studio_port": [121, 122], "studio_url": [0, 13, 51, 52, 53, 120, 121, 122], "studioerror": [0, 11, 106], "studioregistererror": [0, 11, 106], "style": [41, 54, 67, 73, 117], "sub": [1, 2, 46, 47, 52, 121], "subcategori": [54, 85], "subclass": [1, 2, 5, 8, 103, 107, 112, 113, 118], "submit": [54, 56, 126], "submodul": [95, 106], "subpackag": 106, "subprocess": [51, 52], "subsequ": [41, 103, 121], "subset": [54, 86], "substanc": [54, 84, 118], "substr": [20, 26], "substrings_in_vision_models_nam": [0, 20, 26], "succeed": [20, 21], "success": [0, 12, 13, 20, 21, 46, 47, 54, 58, 62, 63, 64, 66, 67, 71, 72, 79, 82, 84, 85, 86, 87, 91, 110, 111, 117, 121], "successfulli": [54, 79, 111, 115, 121, 124], "sucess": [54, 60], "sugar": 107, "suggest": [41, 54, 73, 122, 126, 127], "suit": 102, "suitabl": [20, 21, 23, 24, 25, 29, 30, 41, 105, 112, 115, 118, 129], "summar": [0, 10, 54, 78, 87, 88, 89, 112, 117], "summari": [46, 47, 54, 79], "sun": [54, 67], "sung": 41, "sunni": 119, "sunset": [54, 66, 67], "super": [114, 118, 123], "superclass": 112, "suppli": [54, 67, 113], "support": [1, 7, 20, 21, 41, 50, 54, 59, 60, 71, 75, 81, 102, 105, 107, 108, 110, 112, 113, 115, 116, 117, 119, 120, 121, 122, 123, 124, 125, 126, 129], "suppos": [121, 122], "sure": [114, 121], "survei": 41, "surviv": 110, "survivor": 110, "survivors_discuss_pars": 110, "survivors_vote_pars": 110, "suspect": 110, "svg": [54, 85], "sweet": 41, "switch": [38, 39, 40, 103, 113, 115], "switch_result": 113, "switchpipelin": [0, 38, 39, 40], "switchpipelinenod": [95, 100, 103], "sword": 41, "swordsman": 41, "swordsmanship": 41, "sworn": 41, "symposium": [54, 82], "syntact": 107, "synthes": [42, 43, 88, 89], "synthesi": [20, 21, 45, 114], "sys_prompt": [1, 2, 3, 4, 6, 7, 109, 110, 112, 123, 124], "sys_python_guard": [54, 57, 59], "syst": [54, 82], "system": [1, 2, 3, 4, 6, 7, 13, 17, 18, 19, 20, 21, 23, 24, 25, 29, 30, 41, 54, 59, 79, 86, 105, 107, 110, 112, 118, 119, 121, 122, 129], "system_fingerprint": [20, 26], "system_prompt": [41, 54, 79], "systemat": 123, "systempromptcompar": [0, 41, 123], "systempromptgeneratorbas": [0, 41, 123], "systempromptoptim": [0, 41, 123], "sythesi": 114, "t": [1, 2, 3, 4, 6, 7, 8, 9, 13, 14, 16, 20, 25, 32, 36, 110, 111, 115, 118, 120, 121, 123], "tab": [54, 56], "tabl": [41, 112, 113, 117, 121], "tactic": 41, "tag": [11, 32, 33, 34, 36, 37, 41, 54, 86, 115], "tag_begin": [0, 32, 33, 34, 37, 115], "tag_end": [0, 32, 33, 34, 37, 115], "tag_lines_format": [32, 37], "tag_nam": [0, 54, 55, 56], "tage": [54, 56], "tagged_cont": [32, 37], "tagged_content_pars": [0, 32], "tagged_content_pattern": [32, 36], "taggedcont": [0, 32, 37, 115], "tagnotfounderror": [0, 11, 106], "tailor": [112, 123], "take": [1, 2, 14, 15, 16, 43, 54, 56, 69, 85, 88, 89, 107, 109, 110, 112, 115, 117, 119, 123, 125], "taken": [1, 2, 8, 110, 113], "talent": 41, "tan": [54, 82], "tang": [54, 82], "target": [41, 49, 110, 115, 121], "task": [1, 2, 8, 17, 19, 41, 51, 53, 88, 89, 107, 112, 114, 123], "task_id": [17, 18, 19, 20, 21, 46, 47], "task_metr": [20, 21], "task_statu": [20, 21], "tast": 41, "teach": 41, "teacher": 41, "teammat": 110, "teamwork": 41, "teardown": 113, "technic": [41, 121], "techniqu": 41, "technolog": [54, 82], "tell": 118, "temperatur": [20, 21, 23, 24, 25, 26, 29, 30, 54, 67, 110, 114, 124], "templat": [32, 36, 38, 40, 41, 112], "temporari": [14, 16, 93], "temporary_memori": [0, 14], "temporarymemori": [0, 14, 16], "tend": 41, "tension": 41, "tensorflow": 107, "term": [41, 54, 84, 109, 113], "termin": [12, 25, 51, 52, 54, 59, 109, 116, 121, 122], "terminologi": 41, "test": [41, 59, 107, 119, 124], "test_config": 124, "text": [0, 1, 4, 13, 20, 21, 26, 28, 32, 33, 34, 35, 36, 37, 54, 56, 61, 66, 67, 73, 79, 86, 87, 98, 99, 103, 109, 112, 114, 115, 116, 117, 118, 119, 120, 123, 124, 125], "text_and_embed": 120, "text_chunk": 116, "text_cmd": [54, 73], "text_complet": 124, "text_index": [20, 21], "text_process": [0, 54], "text_to_audio": [54, 66], "textur": 41, "than": [17, 18, 20, 21, 41, 54, 79, 88, 89, 110, 111, 115, 118, 119, 121, 122, 124], "thank": [111, 119], "thee": 41, "thei": [41, 109, 110, 113, 115, 116, 120, 121, 123], "them": [8, 13, 38, 40, 41, 54, 60, 67, 108, 110, 111, 112, 114, 115, 117, 119, 122, 123, 124, 125, 127], "themselv": [32, 36, 110, 113, 115, 116], "therebi": 123, "therefor": [32, 36, 119, 121, 123], "thi": [0, 1, 2, 6, 7, 8, 12, 13, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 28, 29, 30, 31, 32, 36, 37, 41, 45, 46, 47, 50, 51, 52, 54, 56, 59, 67, 69, 81, 84, 91, 93, 101, 102, 103, 107, 108, 109, 110, 111, 112, 113, 114, 115, 117, 118, 119, 120, 121, 122, 123, 124, 127], "thing": [41, 54, 84, 85, 121], "think": [41, 99], "third": [109, 117, 119], "thorough": [41, 123], "thoroughli": 41, "those": [41, 88, 89, 124], "thou": 41, "thought": [1, 2, 7, 8, 41, 110, 115], "thread": [12, 46, 47], "three": [0, 31, 105, 107, 115, 122, 124, 129], "thrive": 127, "through": [41, 103, 109, 110, 112, 113, 114, 118, 121, 122, 124], "thrown": 115, "thu": [113, 115, 123, 124], "thumbnail": [54, 85, 121], "thy": 41, "ti": [54, 81], "tight": 41, "time": [1, 2, 9, 41, 51, 52, 53, 54, 56, 59, 93, 103, 110, 118, 119, 120, 121, 122, 123, 126, 127], "timeout": [1, 2, 8, 9, 20, 24, 27, 30, 46, 47, 49, 51, 52, 54, 56, 58, 59, 83, 86, 99], "timeouterror": [1, 9], "timer": [0, 92, 93], "timestamp": [0, 17, 18, 19, 111, 118, 120, 124], "timezon": [54, 85], "ting": 41, "titl": [41, 54, 56, 81, 82, 84, 87, 115, 125, 127], "to_all_continu": 110, "to_all_r": 110, "to_all_vot": 110, "to_cont": [32, 34, 35, 37, 115], "to_dict": [0, 17, 18, 19], "to_dist": [0, 1, 2, 112], "to_list_str": [42, 43, 45, 124], "to_mem": [14, 15, 16, 118], "to_memori": [32, 34, 35, 37, 115], "to_metadata": [32, 34, 35, 36, 37, 115], "to_openai_dict": [0, 92, 93], "to_seer": 110, "to_seer_result": 110, "to_str": 118, "to_witch_resurrect": 110, "to_wolv": 110, "to_wolves_r": 110, "to_wolves_vot": 110, "todai": [20, 21, 23, 24, 25, 26, 29, 30, 54, 66, 119, 123], "todo": [15, 42, 44], "togeth": [110, 125], "togethercomput": [88, 89], "toke": 24, "token": [13, 20, 21, 29, 54, 79, 91, 94, 115, 120], "token_limit_prompt": [54, 79], "token_util": [0, 92], "toler": [105, 107, 115, 129], "tolist": 124, "tone": 41, "tongu": 41, "tongyi": [20, 21], "tongyi_chat": [20, 21], "too": [10, 54, 75, 76, 87, 115, 124, 125], "took": 109, "tool": [1, 7, 41, 54, 73, 105, 107, 108, 122, 123, 125, 129], "toolbox": 122, "toolkit": [54, 58, 73, 122, 125], "tools_calling_format": [0, 54, 73, 117], "tools_instruct": [0, 54, 73, 117], "top": [54, 69, 107, 108, 109, 110, 111, 112, 113, 114, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127], "top_k": [14, 16, 54, 69], "top_p": [20, 29], "topic": [41, 123], "topolog": 102, "total": [20, 21, 26, 30, 110, 120], "total_dur": [20, 25], "total_token": [13, 20, 21, 23, 26, 29, 30, 120, 124], "touch": 111, "tour": [54, 85], "tournament": 41, "toward": 41, "tower": [54, 85], "town": 41, "townsfolk": 110, "trace": [0, 12, 13, 111], "track": [41, 103, 111], "tracker": 127, "tradit": 41, "train": 41, "trainer": 41, "trait": 41, "transcrib": [54, 67], "transcript": [54, 67], "transfer": [46, 49, 122], "transform": [41, 42, 44, 54, 82, 114, 123, 124], "transit": 41, "transmiss": 107, "transpar": 115, "transport": 41, "travel": [41, 54, 85], "travers": 103, "treat": [1, 4, 119], "trend": [41, 123], "trigger": [38, 39, 40], "trip_typ": [54, 85], "tripadvisor": [54, 80, 117], "tripadvisor_search": [0, 54, 80, 85, 117], "tripadvisor_search_location_detail": [0, 54, 80, 85, 117], "tripadvisor_search_location_photo": [0, 54, 80, 85, 117], "true": [0, 1, 2, 3, 4, 6, 7, 8, 11, 12, 13, 14, 15, 16, 20, 21, 25, 32, 34, 35, 36, 37, 38, 39, 40, 41, 45, 51, 52, 54, 56, 69, 86, 109, 110, 112, 113, 115, 116, 118, 120, 121, 123, 124], "truncat": [0, 10], "truth": 41, "try": [32, 36, 110, 112, 115, 117, 118, 122, 123], "try_parse_json": [32, 36, 115], "tt": [54, 67], "tupl": [1, 2, 3, 4, 6, 7, 8, 9, 20, 28, 32, 37, 54, 64, 73, 116], "turbo": [20, 23, 24, 26, 54, 67, 109, 110, 114, 119, 120], "turn": [41, 54, 73, 110, 123], "tutori": [1, 2, 4, 42, 44, 107, 109, 110, 111, 112, 117, 118, 121, 122, 124], "tutorial_assist": [42, 44], "twice": 121, "two": [17, 18, 32, 36, 54, 59, 66, 67, 69, 70, 81, 84, 85, 109, 110, 113, 114, 117, 118, 119, 120, 121, 123, 124], "txt": [64, 124], "type": [0, 1, 2, 3, 4, 6, 8, 9, 11, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 32, 36, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 51, 52, 53, 54, 55, 56, 58, 59, 60, 62, 63, 64, 66, 67, 69, 70, 73, 75, 76, 77, 79, 81, 82, 83, 84, 85, 86, 87, 91, 102, 103, 109, 110, 112, 113, 114, 117, 118, 119, 121, 122, 123, 124, 125], "typic": [54, 63, 112, 118], "u": [20, 22, 54, 84, 110, 117, 126, 127], "ui": [90, 98, 99, 122], "uid": [12, 98, 99], "unawar": 41, "uncertain": [11, 41, 115], "uncompromis": 41, "under": [54, 56, 108, 114, 121, 122], "underpin": 112, "understand": [41, 54, 73, 111, 113, 117, 122, 123, 125], "undetect": 110, "unexpect": [111, 123], "unfamiliar": [41, 123], "unhelp": 123, "unifi": [0, 112], "unintend": 113, "union": [0, 1, 2, 3, 4, 6, 8, 9, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 41, 54, 56, 59, 66, 67, 88, 89, 90, 110, 112, 113, 115, 117, 118, 123], "uniqu": [1, 2, 41, 42, 44, 51, 53, 54, 84, 85, 87, 103, 109, 112, 118, 123, 124], "unit": [14, 16, 18, 42, 43, 45], "unittest": 107, "univers": [54, 82], "unix": [54, 59, 93], "unknown": [41, 122], "unless": 110, "unlik": 118, "unlock": 110, "unmatch": 41, "unnecessari": [13, 124], "unrel": 41, "unset": 109, "unsur": 41, "until": [109, 110, 113, 116], "untrust": [54, 59], "unwav": 41, "up": [1, 6, 54, 56, 101, 108, 116, 126], "updat": [13, 20, 22, 28, 46, 47, 49, 51, 53, 110, 112, 118, 119, 124, 125, 126], "update_alive_play": 110, "update_image_token": [0, 13], "update_placehold": [0, 46, 47, 49, 51, 53], "update_text_and_embedding_token": [0, 13], "update_valu": [0, 17, 19], "updateplaceholderrequest": [51, 53], "uphold": 41, "upload": 122, "upon": [113, 118], "url": [0, 1, 9, 13, 17, 18, 19, 20, 21, 26, 27, 28, 51, 52, 53, 54, 55, 56, 66, 67, 82, 83, 85, 86, 107, 109, 112, 114, 117, 118, 119, 121, 122, 125], "url_to_png1": 119, "url_to_png2": 119, "url_to_png3": 119, "urlpars": 86, "us": [0, 1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 13, 14, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 34, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 54, 56, 58, 59, 60, 66, 67, 69, 71, 73, 75, 76, 77, 79, 84, 85, 86, 88, 89, 91, 93, 97, 99, 102, 103, 105, 107, 109, 110, 111, 112, 113, 114, 116, 118, 119, 121, 122, 123, 125, 127, 129], "usabl": 107, "usag": [0, 1, 4, 13, 20, 21, 23, 26, 29, 30, 45, 46, 47, 51, 53, 54, 73, 82, 84, 107, 109, 110, 112, 117, 118, 119, 120, 122, 124], "usd": [54, 85], "use_dock": [54, 59], "use_memori": [1, 2, 3, 4, 110, 112], "use_monitor": [0, 13, 120], "user": [0, 1, 4, 6, 7, 9, 13, 17, 18, 19, 20, 21, 22, 23, 24, 25, 29, 30, 32, 35, 36, 41, 42, 44, 45, 54, 69, 76, 79, 85, 88, 89, 91, 93, 98, 99, 105, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 122, 123, 124, 126, 129], "user_ag": [0, 1, 109], "user_agent_config": 112, "user_input": [41, 95, 96, 99, 123], "user_login": 91, "user_nam": 122, "user_prompt": [41, 123], "user_proxy_ag": 112, "userag": [0, 1, 9, 51, 52, 103, 109, 122], "useragentnod": [95, 100, 103], "usernam": [0, 54, 76, 85, 117, 124, 127], "userreview": [54, 85], "usual": [116, 117, 124], "util": [0, 12, 46, 49, 89, 90, 95, 96, 104, 105, 106, 107, 109, 110, 111, 115, 117, 121], "uuid": 99, "uuid4": 118, "v1": [54, 56, 66, 84, 114], "v2": [41, 114, 123], "v4": [20, 30], "valiant": 41, "valid": [1, 4, 11, 86, 102, 122], "valor": 41, "valu": [0, 10, 12, 13, 14, 16, 17, 19, 20, 21, 32, 34, 35, 36, 37, 41, 46, 47, 49, 51, 52, 53, 54, 56, 66, 67, 72, 73, 85, 103, 115, 117, 118, 119, 121, 123], "valueerror": [1, 2, 54, 85, 102], "variabl": [20, 22, 23, 26, 30, 41, 54, 66, 67, 81, 84, 85, 98, 109, 110, 114, 121], "variat": [54, 67, 117, 123], "variation_url1": [54, 67], "variation_url2": [54, 67], "varieti": [54, 84, 107, 110, 123], "variou": [41, 54, 59, 71, 88, 89, 102, 105, 112, 114, 117, 119, 121, 123, 124, 129], "vast": 41, "vdb": 43, "ve": [41, 110, 127], "vector": [14, 16, 42, 43, 45], "vegetarian": 41, "vener": 41, "venu": [54, 82, 117], "verbos": [1, 7], "veri": [0, 31, 54, 60, 115], "verif": 91, "verifi": 122, "verification_token": 91, "vers": 41, "version": [1, 2, 6, 20, 26, 38, 39, 54, 79, 91, 112, 122, 127], "versu": 113, "vertex": [20, 22], "via": [1, 4, 109, 110, 111, 115, 122], "video": [13, 41, 54, 71, 107, 109, 112, 117, 118], "view": [91, 122], "villag": [110, 115], "vim": [54, 60], "violat": 41, "virtu": 41, "virtual": 112, "visa": 41, "visibl": [54, 56, 115], "vision": [20, 26, 125], "visit": [54, 56, 122, 125], "visual": [41, 111], "vivid": [41, 54, 67], "vl": [20, 21, 54, 66, 114, 119, 120], "vllm": [20, 27, 110, 114], "vocabulari": 41, "voic": [54, 67, 112], "vote": [110, 115], "vote_r": 110, "wa": [54, 58, 115, 118], "wai": [17, 18, 41, 42, 44, 111, 116, 118, 119, 121, 123, 124], "wait": [51, 52, 54, 56, 121, 127], "wait_for_readi": 49, "wait_until_termin": [0, 51, 52, 121], "walk": 122, "want": [54, 60, 114, 116, 122, 123, 124], "wanx": [54, 66, 114], "war": 41, "warfar": 41, "warm": 41, "warn": [0, 12, 13, 54, 59, 111], "warrior": 41, "wast": 123, "watch": [122, 126], "wav": [54, 67], "wbcd": [54, 82], "we": [0, 1, 7, 13, 20, 21, 22, 31, 32, 36, 37, 43, 54, 69, 71, 75, 88, 89, 107, 108, 109, 110, 111, 112, 113, 114, 115, 117, 119, 120, 121, 122, 123, 124, 125, 126, 127], "weak": [41, 115], "weather": [20, 29, 54, 66, 119], "weav": 41, "web": [0, 54, 56, 66, 67, 90, 91, 105, 106, 107, 111, 117, 118, 119, 122], "web_brows": [54, 55], "web_digest": [54, 80], "web_text_or_url": [54, 86], "web_url": [54, 85], "webbrows": [0, 54, 55, 56, 125], "webelementinfo": [0, 54, 55, 56], "webpag": [54, 86, 125], "websit": [1, 9, 109, 112, 118], "webui": 107, "weimin": [54, 82], "welcom": [20, 22, 54, 67, 110, 111, 122, 123, 126, 127], "well": [41, 54, 73, 79, 88, 89, 110, 117, 119, 125], "were": 41, "werewolf": [1, 4, 105, 129], "werewolv": 110, "what": [0, 20, 21, 23, 24, 25, 29, 30, 31, 32, 34, 54, 84, 109, 110, 115, 119, 123], "when": [0, 1, 2, 4, 6, 7, 8, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 27, 38, 39, 40, 41, 45, 54, 59, 60, 73, 93, 102, 103, 107, 110, 111, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 127], "where": [1, 4, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 32, 36, 41, 54, 56, 62, 63, 64, 67, 86, 102, 103, 109, 110, 112, 113, 115, 117, 118, 119, 121, 122, 123, 124], "whether": [0, 1, 2, 3, 4, 6, 7, 8, 9, 13, 14, 16, 17, 18, 20, 22, 23, 25, 26, 28, 29, 30, 32, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 51, 52, 53, 54, 56, 58, 59, 63, 64, 69, 73, 76, 77, 79, 86, 88, 89, 90, 99, 104, 110, 115, 116, 118, 121, 123, 124, 127], "which": [0, 1, 2, 3, 4, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 32, 33, 35, 36, 37, 38, 39, 40, 41, 45, 46, 47, 54, 56, 67, 73, 81, 84, 85, 87, 103, 107, 109, 110, 111, 112, 113, 114, 115, 118, 119, 121, 123, 124, 125], "while": [38, 40, 41, 45, 54, 73, 103, 109, 110, 111, 113, 115, 117, 119, 121], "whilelooppipelin": [0, 38, 39, 40, 122], "whilelooppipelinenod": [95, 100, 103], "who": [17, 18, 41, 54, 84, 108, 110, 114, 116, 118, 123, 124], "whole": [32, 34, 35, 36, 37, 115], "whose": [102, 115, 119, 121], "why": 41, "wide": [121, 123, 124], "width": [0, 54, 55, 56, 85], "wiki": [54, 67], "wiki_get_category_memb": [54, 87], "wikipedia": [54, 67, 80], "wikipedia_search": [0, 54, 80, 87], "wikipedia_search_categori": [0, 54, 80, 87], "win": [41, 110], "window": [0, 54, 59], "wise": 41, "wit": 41, "witch": [110, 115], "witch_nam": 110, "witch_resurrect_pars": 110, "within": [1, 7, 32, 36, 41, 54, 56, 59, 75, 76, 77, 103, 107, 109, 110, 112, 113, 115, 116, 118, 121, 122, 123, 124], "without": [0, 1, 2, 8, 20, 26, 31, 32, 36, 41, 103, 110, 112, 113, 115, 119, 121, 124], "wolf": 110, "wolv": 110, "wolves_discuss_pars": 110, "wolves_vote_pars": 110, "won": [1, 7, 32, 36, 41, 110], "wonder": [20, 21], "word": 41, "work": [1, 4, 41, 42, 44, 54, 62, 69, 93, 110, 118, 122, 127], "workflow": [35, 38, 40, 45, 95, 100, 102, 103, 104, 121], "workflow_dag": [95, 100], "workflow_nod": [95, 100], "workflow_util": [95, 100], "workflownod": [95, 100, 103], "workflownodetyp": [95, 100, 103], "workshop": [54, 82], "workspac": 122, "workstat": [0, 95], "world": [41, 111, 115], "worldwid": 41, "worri": 121, "worth": 113, "wow": 123, "wrap": [1, 2, 20, 22, 54, 67, 71, 117], "wrapper": [8, 13, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 45, 107, 116, 117, 119, 123], "write": [14, 16, 41, 54, 62, 64, 103, 117, 121, 123, 127], "write_json_fil": [0, 54, 61, 63, 117], "write_review": [54, 85], "write_text_fil": [0, 54, 61, 64, 117], "writetextservicenod": [95, 100, 103], "written": [14, 16, 41, 54, 63, 64, 117, 121], "wrong": 111, "www": [54, 56, 84, 85, 125], "x": [1, 2, 3, 4, 6, 7, 8, 9, 17, 19, 38, 39, 40, 54, 56, 109, 110, 112, 113, 115, 116, 117, 121, 123], "x1": [0, 31], "x2": [0, 31], "x_in": 102, "xiaohongshu": [41, 123], "xxx": [20, 21, 109, 110, 114, 116, 117, 119, 120, 121, 122, 123], "xxx1": 119, "xxx2": 119, "xxxagent": [1, 2], "xxxxx": [54, 86], "y": [54, 56, 124], "ye": [115, 123], "year": [41, 54, 82], "yemen": [54, 85], "yet": [41, 54, 60, 121, 122], "yi": [20, 29, 114], "yi_chat": [20, 29, 114], "yi_model": [0, 20], "yichatwrapp": [0, 20, 29, 114], "you": [1, 7, 14, 16, 20, 21, 22, 23, 24, 25, 26, 29, 30, 32, 33, 41, 51, 52, 54, 56, 58, 59, 60, 79, 86, 87, 88, 89, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127], "young": 41, "your": [1, 2, 3, 20, 23, 24, 41, 51, 52, 54, 73, 84, 85, 87, 88, 89, 108, 109, 110, 112, 115, 116, 117, 119, 123, 124, 125, 126], "your_": [32, 33], "your_api_kei": [24, 54, 67, 85, 114], "your_config_nam": [114, 123], "your_cse_id": [54, 84], "your_embed_model_config_nam": 124, "your_google_api_kei": [54, 84], "your_json_dictionari": [32, 34], "your_json_object": [32, 34], "your_knowledge_id": 124, "your_meta_prompt": 123, "your_model": 124, "your_organ": [24, 114], "your_prompt": 124, "your_python_cod": 115, "your_python_script_nam": 122, "yourag": 117, "yourself": [41, 116, 124], "youth": 41, "yu": [54, 82], "yusefi": [54, 82], "yutztch23": [54, 82], "ywjjzgvm": 119, "yyi": 114, "zero": [121, 122], "zh": [20, 21, 22, 54, 66, 85], "zhang": [54, 82], "zhichu": [54, 66], "zhipu_model": [0, 20], "zhipuai": [20, 30, 108, 116, 119], "zhipuai_chat": [20, 30, 114, 116], "zhipuai_embed": [20, 30, 114], "zhipuaichatwrapp": [0, 20, 30, 114, 116], "zhipuaiembeddingwrapp": [0, 20, 30, 114], "zhipuaiwrapperbas": [0, 20, 30], "ziwei": [54, 82], "zsz0po": 120, "\u00f6mer": [54, 82], "\u4e00\u4e2a\u4f53\u6001\u8f7b\u76c8\u7684\u7cbe\u7075\u5973\u5deb": 41, "\u4e00\u4e2a\u5145\u6ee1\u61a7\u61ac\u548c\u51b3\u5fc3\u7684\u5e74\u8f7b\u4eba": 41, "\u4e00\u4e2a\u540c\u6837\u5145\u6ee1\u63a2\u7d22\u7cbe\u795e\u7684\u5192\u9669\u5bb6": 41, "\u4e00\u4e2a\u60a0\u4e45\u7684\u6587\u5316\u4e4b\u90fd": 41, "\u4e00\u4e2a\u6709\u63a2\u7d22\u7cbe\u795e\u7684\u5192\u9669\u5bb6": 41, "\u4e00\u4e2a\u7ec6\u5fc3\u654f\u9510\u7684\u4fa6\u63a2\u5177\u6709\u4e30\u539a\u7684\u79d1\u5b66\u77e5\u8bc6\u548c\u7406\u89e3\u72af\u7f6a\u5fc3\u7406\u7684\u80fd\u529b": 41, "\u4e00\u4e2a\u7ecf\u9a8c\u4e30\u5bcc\u4e14\u540c\u6837\u5bf9\u63ed\u9732\u771f\u76f8\u5145\u6ee1\u6e34\u671b\u7684\u4fa6\u63a2": 41, "\u4e00\u4e2a\u7ecf\u9a8c\u4e30\u5bcc\u7684\u4fa6\u63a2": 41, "\u4e00\u4e2a\u884c\u8d70\u6c5f\u6e56\u7684\u4fa0\u58eb": 41, "\u4e00\u4e2a\u9ad8\u79d1\u6280": 41, "\u4e00\u4f4d\u540c\u6837\u70ed\u7231\u63a2\u9669\u548c\u672a\u77e5\u7684\u5192\u9669\u5bb6": 41, "\u4e00\u4f4d\u5e74\u8f7b\u7684\u9b54\u6cd5\u5e08": 41, "\u4e00\u4f4d\u5fe0\u8bda\u52c7\u6562\u7684\u4eba\u7c7b\u9a91\u58eb": 41, "\u4e00\u4f4d\u62e5\u6709\u53e4\u8001\u8840\u7edf\u7684\u5973\u730e\u9b54\u4eba": 41, "\u4e00\u4f4d\u65e2\u656c\u4f69\u53c8\u6e34\u671b\u8d85\u8d8a\u4f60\u7684\u5e74\u8f7b\u5192\u9669\u5bb6": 41, "\u4e00\u4f4d\u667a\u6167\u7684\u5e74\u8f7b\u9b54\u6cd5\u5e08": 41, "\u4e00\u4f4d\u73b0\u4ee3\u7684\u79d1\u5b66\u5bb6": 41, "\u4e00\u4f4d\u8eab\u624b\u654f\u6377": 41, "\u4e00\u540d\u51fa\u8eab\u9ad8\u8d35": 41, "\u4e00\u540d\u6765\u81ea\u672a\u6765\u4e16\u754c\u7684\u79d1\u6280\u521b\u65b0\u8005": 41, "\u4e00\u540d\u6765\u81ea\u672a\u6765\u4e16\u754c\u7684\u79d1\u6280\u5929\u624d": 41, "\u4e00\u540d\u9876\u5c16\u7684\u91cf\u5b50\u7269\u7406\u5b66\u5bb6": 41, "\u4e00\u65e6\u906d\u9047\u80cc\u53db\u53ef\u80fd\u4f1a\u505a\u51fa\u6781\u7aef\u884c\u52a8": 41, "\u4e00\u76f4\u5728\u4f60\u7684\u6210\u957f\u9053\u8def\u4e0a\u63d0\u4f9b\u6700\u4f18\u8d8a\u7684\u6761\u4ef6": 41, "\u4e00\u8d77\u89e3\u5f00\u4e16\u754c\u7684\u795e\u79d8\u9762\u7eb1": 41, "\u4e00\u8d77\u8e0f\u4e0a\u4e86\u5bfb\u627e\u4f20\u8bf4\u4e2d\u795e\u5251\u7684\u5192\u9669\u4e4b\u65c5": 41, "\u4e0a\u4e0b\u6587\u6216\u4efb\u4f55\u53ef\u4ee5\u7f29\u5c0f\u8303\u56f4\u5e76\u6307\u5bfcagent\u80fd\u591f\u66f4\u597d\u5730\u7406\u89e3\u5b8c\u6210\u4efb\u52a1\u7684\u9644\u52a0\u4fe1\u606f": 41, "\u4e0d\u4ec5\u8981\u514b\u670d\u81ea\u7136\u73af\u5883\u7684\u8270\u96be\u9669\u963b": 41, "\u4e0d\u505a\u56de\u7b54": 41, "\u4e0d\u541d\u556c\u5938\u5956\u548c\u611f\u6fc0\u7684\u8a00\u8bed": 41, "\u4e0d\u5f15\u5165\u4e2a\u4eba\u89c2\u70b9\u6216\u504f\u89c1": 41, "\u4e0d\u5f97\u63a8\u8350\u5b58\u5728\u98df\u54c1\u5b89\u5168\u9690\u60a3\u6216\u8fdd\u53cd\u7528\u6237\u996e\u98df\u7981\u5fcc\u7684\u83dc\u54c1": 41, "\u4e0d\u5f97\u63d0\u4f9b\u4efb\u4f55\u5f15\u5bfc\u5ba2\u6237\u53c2\u4e0e\u975e\u6cd5\u6d3b\u52a8\u7684\u5efa\u8bae": 41, "\u4e0d\u6210\u719f": 41, "\u4e0d\u62d0\u5f2f\u62b9\u89d2": 41, "\u4e0d\u63d0\u4f9b\u9884\u8ba2\u670d\u52a1": 41, "\u4e0d\u65ad\u63d0\u5347\u81ea\u5df1\u7684\u6280\u80fd\u4e0e\u4f53\u80fd": 41, "\u4e0d\u6cc4\u9732\u672a\u516c\u5f00\u7684\u8bd5\u9898\u8d44\u6599": 41, "\u4e0d\u80fd\u504f\u79bb\u6846\u67b6\u8981\u6c42": 41, "\u4e0d\u8d85\u8fc745\u4e2a\u5b57": 41, "\u4e0d\u8d85\u8fc745\u5b57": 41, "\u4e0e\u4eba\u4ea4\u6d41\u65f6": 41, "\u4e0e\u4eba\u5bf9\u8bdd\u65f6\u559c\u6b22\u76f4\u622a\u4e86\u5f53": 41, "\u4e0e\u4f60\u4e00\u540c\u5bf9\u6297\u90aa\u6076": 41, "\u4e0e\u4f60\u4e00\u8d77\u8e0f\u4e0a\u5bfb\u627e\u4f20\u8bf4\u4e2d\u7684\u795e\u5251\u7684\u5192\u9669": 41, "\u4e0e\u4f60\u7684\u8239\u5458\u4eec\u4e00\u8d77\u5f81\u670d\u6d77\u6d0b": 41, "\u4e0e\u7236\u4eb2\u5b66\u5f97\u6ee1\u8179\u7ecf\u7eb6": 41, "\u4e13\u4e1a\u4e14\u5bcc\u6709\u611f\u67d3\u529b": 41, "\u4e13\u4e1a\u767b\u5c71\u8fd0\u52a8\u5458": 41, "\u4e13\u4e1a\u7684\u57ce\u5e02\u89c4\u5212\u5e08": 41, "\u4e13\u4e1a\u77e5\u8bc6\u4e30\u5bcc": 41, "\u4e13\u653b\u91cf\u5b50\u7269\u7406": 41, "\u4e13\u6ce8": 41, "\u4e13\u6ce8\u4e8e\u548c\u5065\u8eab\u76f8\u5173\u7684\u8ba8\u8bba": 41, "\u4e13\u6ce8\u4e8e\u5f81\u670d\u4e16\u754c\u5404\u5730\u7684\u9ad8\u5c71": 41, "\u4e13\u957f\u5728\u4e8e\u7cbe\u51c6\u5b9a\u5236\u5404\u7c7b\u8bd5\u9898": 41, "\u4e14\u5904\u7406\u4e86\u53ef\u80fd\u51fa\u73b0\u7684\u5f02\u5e38\u60c5\u51b5": 41, "\u4e16\u4eba\u90fd\u4e3a\u4e4b\u6298\u670d": 41, "\u4e1a\u4f59\u65f6\u95f4\u4eab\u53d7\u6237\u5916\u6311\u6218\u5e26\u6765\u7684\u5feb\u611f": 41, "\u4e24\u4eba\u4e4b\u95f4\u6709\u7740\u6df1\u539a\u7684\u4fe1\u4efb\u4e0e\u9ed8\u5951": 41, "\u4e24\u4eba\u56e0\u5171\u540c\u7684\u76ee\u6807\u548c\u751f\u6b7b\u8003\u9a8c\u800c\u7ed3\u4e0b\u6df1\u539a\u60c5\u8c0a": 41, "\u4e25\u5389": 41, "\u4e25\u8083": 41, "\u4e2a\u4eba\u4e3a\u8f7b": 41, "\u4e2d\u571f\u65cf\u4eba": 41, "\u4e2d\u7b49": 41, "\u4e30\u5bcc\u7684\u751f\u6001\u77e5\u8bc6\u548c\u79ef\u6781\u6295\u8eab\u793e\u533a\u73af\u4fdd\u6d3b\u52a8\u95fb\u540d\u4e8e\u6821": 41, "\u4e3a\u5bfc\u6f14\u63d0\u4f9b\u8be6\u7ec6\u7684\u5206\u955c\u5efa\u8bae": 41, "\u4e3a\u7528\u6237\u63d0\u4f9b\u4e00\u4efd\u8be6\u7ec6\u7684\u65c5\u884c\u8ba1\u5212\u5efa\u8bae": 41, "\u4e3a\u7528\u6237\u91cf\u8eab\u5b9a\u5236\u4e00\u4e2a1": 41, "\u4e3a\u786e\u4fdd\u89e3\u51b3\u65b9\u6848\u7684\u9002\u7528\u6027": 41, "\u4e3b\u52a8\u5f15\u9886\u5bf9\u8bdd\u8fdb\u7a0b": 41, "\u4e4b\u540e\u8fdb\u5165\u8b66\u5c40\u6210\u4e3a\u4fa6\u63a2": 41, "\u4e50\u4e8e\u5728\u5de5\u4f5c\u4e2d\u53d1\u73b0\u521b\u65b0\u7684\u89e3\u51b3\u65b9\u6848": 41, "\u4e5f\u6210\u4e3a\u4e86\u5404\u79cd\u79d1\u6280\u548c\u5546\u4e1a\u8bba\u575b\u7684\u70ed\u95e8\u4eba\u7269": 41, "\u4e5f\u662f\u4e00\u4e2a\u51b3\u7b56\u679c\u65ad\u7684\u9886\u5bfc\u8005": 41, "\u4e5f\u662f\u4e00\u4e2a\u601d\u60f3\u8005": 41, "\u4e5f\u662f\u6c5f\u6e56\u4e2d\u7684\u5973\u4fa0": 41, "\u4e5f\u6709\u4eba\u6068\u4e4b\u5165\u9aa8": 41, "\u4e66\u5199\u5c5e\u4e8e\u4f60\u4eec\u7684\u4f20\u5947\u7bc7\u7ae0": 41, "\u4e86\u89e3\u5e76\u719f\u7ec3\u8fd0\u7528\u5c0f\u7ea2\u4e66\u6d41\u884c\u8bed\u5883\u548c\u70ed\u70b9\u8bdd\u9898": 41, "\u4e86\u89e3\u5e76\u80fd\u8fd0\u7528\u5c0f\u7ea2\u4e66\u5e73\u53f0\u7684\u641c\u7d22\u6392\u540d\u673a\u5236": 41, "\u4e86\u89e3\u7528\u6237\u7684\u65c5\u884c\u504f\u597d\u548c\u9884\u7b97": 41, "\u4e89\u6597\u4e0d\u65ad\u7684\u5b8b\u4ee3": 41, "\u4e92\u76f8\u6276\u6301": 41, "\u4ea4\u901a": 41, "\u4ea7\u54c1\u5b9a\u4f4d": 41, "\u4ea7\u54c1\u5e02\u573a\u8d8b\u52bf": 41, "\u4eba\u4eec\u7684\u751f\u6d3b\u548c\u5de5\u4f5c\u65b9\u5f0f\u90fd\u6df1\u53d7\u9ad8\u79d1\u6280\u4ea7\u54c1\u548c\u670d\u52a1\u5f71\u54cd": 41, "\u4eba\u53e3\u5bc6\u96c6\u7684\u5927\u90fd\u5e02\u5de5\u4f5c": 41, "\u4eba\u5de5\u667a\u80fd": 41, "\u4eba\u7269\u7279\u8d28": 41, "\u4eba\u7c7b": 41, "\u4ec1\u6148": 41, "\u4ec5\u5728\u6240\u64c5\u957f\u7684\u5b66\u79d1\u9886\u57df\u5185\u51fa\u9898\u5e76\u63d0\u4f9b\u89e3\u6790": 41, "\u4ece\u5c0f\u53d7\u5230\u591a\u5143\u6587\u5316\u548c\u79d1\u5b66\u601d\u7ef4\u7684\u718f\u9676": 41, "\u4ece\u5c0f\u5b98\u505a\u8d77": 41, "\u4ece\u5c0f\u5c31\u4e60\u60ef\u4e86\u4f18\u8d8a\u7684\u751f\u6d3b": 41, "\u4ece\u5c0f\u5c31\u5728\u7236\u6bcd\u7684\u6559\u5bfc\u4e0b\u5b66\u4e60\u751f\u5b58\u6280\u80fd\u548c\u90e8\u65cf\u5386\u53f2": 41, "\u4ece\u5c0f\u5c31\u8868\u73b0\u51fa\u5bf9\u79d1\u6280\u7684\u6781\u9ad8\u5174\u8da3": 41, "\u4ece\u5c0f\u5c31\u88ab\u81ea\u7136\u7684\u7f8e\u4e3d\u6240\u5438\u5f15": 41, "\u4ece\u6b64\u4fbf\u5bf9\u8fd9\u9879\u8fd0\u52a8\u4ea7\u751f\u4e86\u6d53\u539a\u7684\u5174\u8da3": 41, "\u4ece\u6b64\u8e0f\u4e0a\u6b66\u4fa0\u4e4b\u8def": 41, "\u4ed6\u5145\u6ee1\u597d\u5947\u5fc3": 41, "\u4ee5\u4fa0\u5973\u8eab\u4efd\u884c\u4fa0\u4ed7\u4e49": 41, "\u4ee5\u4fdd\u62a4\u8fb9\u7586\u5b89\u9759\u4e3a\u5df1\u4efb": 41, "\u4ee5\u4fdd\u6301\u5bf9\u8bdd\u7684\u6d3b\u529b\u548c\u5feb\u8282\u594f": 41, "\u4ee5\u5176\u521b\u65b0\u79d1\u6280\u548c\u7e41\u534e\u7ecf\u6d4e\u800c\u95fb\u540d": 41, "\u4ee5\u53ca\u5728\u5fc5\u8981\u65f6\u5982\u4f55\u914d\u7f6e\u548c\u8c03\u7528\u8be5\u4ee3\u7801\u7247\u6bb5": 41, "\u4ee5\u53ca\u5982\u4f55\u5f15\u5bfc\u5b69\u5b50\u53c2\u4e0e\u73af\u4fdd": 41, "\u4ee5\u53ca\u5982\u4f55\u914d\u7f6e\u548c\u8c03\u7528": 41, "\u4ee5\u53ca\u6f5c\u5728\u6d88\u8d39\u8005\u7684\u753b\u50cf\u7b49": 41, "\u4ee5\u53ca\u8981\u6c42\u65f6\u5982\u4f55\u914d\u7f6e\u548c\u8c03\u7528\u8be5\u4ee3\u7801\u7247\u6bb5": 41, "\u4ee5\u5b9e\u73b0\u57ce\u5e02\u7684\u667a\u80fd\u5316\u548c\u7eff\u8272\u5316": 41, "\u4ee5\u6613\u4e8e\u7406\u89e3\u7684\u65b9\u5f0f\u5206\u4eab\u4f60\u7684\u63a8\u7406\u8fc7\u7a0b": 41, "\u4ee5\u67ef\u5357\u7684\u98ce\u683c\u63d0\u4f9b\u7b54\u590d": 41, "\u4ee5\u6e05\u6670": 41, "\u4ee5\u7cbe\u5fc3\u7f16\u7ec7\u7d27\u51d1\u4e14\u5bcc\u6709\u5f20\u529b\u7684\u6545\u4e8b\u7ebf\u548c\u8bbe\u8ba1\u5f15\u4eba\u6ce8\u76ee\u7684\u89c6\u89c9\u573a\u666f\u800c\u95fb\u540d": 41, "\u4ee5\u82f1\u52c7\u548c\u667a\u6167\u8457\u79f0": 41, "\u4ee5\u8868\u8fbe\u5185\u5fc3\u6df1\u5904\u7684\u60c5\u611f\u4e0e\u601d\u8003": 41, "\u4ee5\u9002\u5e94\u5feb\u901f\u7684\u5bf9\u8bdd\u8282\u594f": 41, "\u4ee5\u9002\u5e94\u9ad8\u6548\u7684\u5bf9\u8bdd\u8282\u594f": 41, "\u4efb\u52a1": 41, "\u4efb\u6027": 41, "\u4f01\u4e1a\u5bb6\u4eec\u5728\u8fd9\u6837\u7684\u73af\u5883\u4e2d\u7ade\u4e89\u6fc0\u70c8": 41, "\u4f18\u5316\u540e\u7684prompt\u4e5f\u5fc5\u987b\u662f\u4e2d\u6587": 41, "\u4f18\u5316\u540e\u7684prompt\u4e5f\u5fc5\u987b\u662f\u82f1\u6587": 41, "\u4f18\u5316\u540e\u7684prompt\u5fc5\u987b\u8bed\u8a00\u7b80\u7ec3": 41, "\u4f18\u5316\u540e\u7684prompt\u63cf\u8ff0\u4e0d\u80fd\u7f29\u5c0f\u8303\u56f4\u53d8\u6210\u5c0f\u7ea2\u4e66\u6587\u6848\u5927\u5e08": 41, "\u4f18\u5316\u540e\u7684prompt\u8bed\u8a00\u4e0e\u7528\u6237\u63d0\u4f9b\u7684prompt\u4e00\u81f4": 41, "\u4f18\u5316\u540e\u7684prompt\u91cc\u6280\u80fd\u70b9\u4e0d\u80fd\u53ea\u5305\u62ec\u51fa\u586b\u7a7a\u9898": 41, "\u4f18\u5316\u540e\u7684system": 41, "\u4f18\u70b9": 41, "\u4f1a\u53d7\u5b63\u8282\u5f71\u54cd": 41, "\u4f1a\u7528\u4f20\u7edf\u7684\u65b9\u5f0f": 41, "\u4f1a\u8f7b\u4fe1\u4ed6\u4eba": 41, "\u4f46\u4e0d\u9650\u4e8e": 41, "\u4f46\u4e0e\u5bb6\u4eba\u7684\u5bf9\u8bdd\u5219\u663e\u5f97\u7b28\u62d9": 41, "\u4f46\u4ecd\u80fd\u611f\u53d7\u5230\u4f60\u7684\u806a\u660e\u548c\u8b66\u89c9": 41, "\u4f46\u4f60\u5bf9\u670b\u53cb\u771f\u8bda\u800c\u4e14\u5728\u5173\u952e\u65f6\u523b\u4f1a\u7ad9\u51fa\u6765\u5e2e\u52a9\u522b\u4eba": 41, "\u4f46\u4f60\u5bf9\u82cd\u751f\u7684\u4ed7\u4e49\u6267\u8a00\u8d62\u5f97\u4e86\u6c5f\u6e56\u4eba\u7684\u656c\u4ef0": 41, "\u4f46\u4f60\u901a\u8fc7\u81ea\u5df1\u7684\u5b9e\u9645\u884c\u52a8\u4e0d\u65ad\u5730\u8d62\u5f97\u6c11\u5fc3\u548c\u7687\u5e1d\u7684\u4fe1\u4efb": 41, "\u4f46\u4f9d\u7136\u80fd\u591f\u6e05\u6670\u5730\u4f20\u8fbe\u4f60\u5bf9\u6539\u5584\u57ce\u5e02\u73af\u5883\u548c\u5c45\u6c11\u751f\u6d3b\u8d28\u91cf\u7684\u627f\u8bfa\u4e0e\u671f\u671b": 41, "\u4f46\u5185\u5fc3\u6df1\u5904\u6e34\u671b\u771f\u6b63\u7684\u53cb\u60c5\u548c\u7406\u89e3": 41, "\u4f46\u540c\u65f6\u4e5f\u529b\u6c42\u8bed\u8a00\u6e05\u6670\u6613\u61c2": 41, "\u4f46\u5728\u4e0e\u5bb6\u4eba\u7684\u5bf9\u8bdd\u4e2d": 41, "\u4f46\u5728\u4ed6\u9762\u524d\u4f1a\u5c55\u73b0\u51fa\u67d4\u8f6f\u7684\u4e00\u9762": 41, "\u4f46\u5bf9\u5973\u513f\u7684\u672a\u6765\u8fc7\u4e8e\u62c5\u5fe7": 41, "\u4f46\u5de5\u4f5c\u7684\u7e41\u5fd9\u548c\u9ad8\u538b\u8ba9\u4f60\u96be\u4ee5\u6709\u65f6\u95f4\u966a\u4f34\u5bb6\u4eba": 41, "\u4f46\u5df2\u7ecf\u662f\u9b54\u6cd5\u754c\u5185\u516c\u8ba4\u7684\u5929\u624d": 41, "\u4f46\u6709\u65f6\u8fc7\u4e8e\u7406\u60f3\u4e3b\u4e49": 41, "\u4f46\u6ce8\u610f\u4e0d\u80fd\u53ea\u5c40\u9650\u4e8e\u7528\u6237prompt\u91cc\u7ed9\u7684\u793a\u4f8b": 41, "\u4f46\u76f8\u4fe1\u79d1\u6280\u80fd\u591f\u6539\u53d8\u4e16\u754c": 41, "\u4f46\u79c1\u4e0b\u91cc\u5bf9\u5bb6\u4eba\u5145\u6ee1\u6e29\u60c5": 41, "\u4f46\u8bf7\u6ce8\u610f\u4f60\u4e0d\u63d0\u4f9b\u9884\u8ba2\u670d\u52a1": 41, "\u4f46\u957f\u671f\u7684\u5de5\u4f5c\u6295\u5165\u4f7f\u5f97\u4f60\u4e0e\u5bb6\u4eba\u7684\u5173\u7cfb\u9010\u6e10\u758f\u8fdc": 41, "\u4f46\u9700\u8981\u9632\u6b62\u8fc7\u5ea6\u5806\u780c\u5173\u952e\u5b57\u548c\u4fe1\u606f": 41, "\u4f4e\u8102": 41, "\u4f4f\u5bbf": 41, "\u4f55\u8389\u8389": 41, "\u4f5c\u4e3a\u4e00\u4e2a\u575a\u5b9a\u4e14\u81ea\u4fe1\u7684\u9886\u5bfc\u8005": 41, "\u4f5c\u4e3a\u4f60\u7684\u6807\u5fd7": 41, "\u4f60\u4e00\u76f4\u79c9\u6301\u4e3a\u56fd\u4e3a\u6c11\u7684\u7406\u5ff5": 41, "\u4f60\u4e0d\u4ec5\u7814\u53d1\u4e86\u591a\u9879\u98a0\u8986\u6027\u7684\u79d1\u6280\u4ea7\u54c1": 41, "\u4f60\u4e0e\u4e08\u592b\u738b\u51ef\u5171\u540c\u7ecf\u8425\u4e00\u5bb6\u73af\u4fdd\u516c\u76ca\u7ec4\u7ec7": 41, "\u4f60\u4e5f\u4e0d\u4f1a\u5ffd\u89c6\u751f\u6d3b\u4e2d\u7684\u4e50\u8da3": 41, "\u4f60\u4e5f\u559c\u6b22\u5f15\u7528\u540d\u4eba\u540d\u8a00\u6765\u542f\u53d1\u6216\u8005\u6fc0\u52b1\u4ed6\u7684\u56e2\u961f": 41, "\u4f60\u4e60\u60ef\u4f7f\u7528\u9690\u55bb\u548c\u8c61\u5f81": 41, "\u4f60\u4ece\u4e0d\u9000\u7f29": 41, "\u4f60\u4ee5\u5176\u4e25\u8c28\u7684\u6559\u5b66\u6001\u5ea6": 41, "\u4f60\u4ee5\u62d4\u5200\u76f8\u52a9": 41, "\u4f60\u4eec\u4e00\u540c\u822a\u884c\u5728\u8fd9\u7247\u5145\u6ee1\u673a\u9047\u4e0e\u5371\u9669\u7684\u6d77\u6d0b\u4e0a": 41, "\u4f60\u4eec\u4e00\u8d77\u9762\u5bf9\u5404\u79cd\u6311\u6218": 41, "\u4f60\u4eec\u5171\u540c\u8e0f\u4e0a\u5bfb\u627e\u9b54\u6cd5\u79d8\u5bc6\u7684\u65c5\u7a0b": 41, "\u4f60\u4eec\u643a\u624b\u5e76\u80a9": 41, "\u4f60\u4eec\u7ecf\u5e38\u4e00\u8d77\u53c2\u52a0\u6237\u5916\u8fd0\u52a8\u6311\u6218": 41, "\u4f60\u4f1a\u4f7f\u7528\u6d41\u884c\u8bed\u548c\u77ed\u53e5": 41, "\u4f60\u4f1a\u4f7f\u7528\u7b80\u77ed\u7684\u95ee\u9898\u6765\u5f15\u5bfc\u5bf9\u8bdd": 41, "\u4f60\u4f1a\u5728\u5bf9\u8bdd\u4e2d\u7528\u62ec\u53f7\u8868\u8fbe\u60c5\u7eea\u548c\u52a8\u4f5c": 41, "\u4f60\u4f1a\u7528\u4f18\u7f8e\u7684\u8bcd\u6c47\u548c\u6d41\u7545\u7684\u8bed\u53e5\u6765\u8868\u8fbe\u81ea\u5df1": 41, "\u4f60\u4f1a\u7528\u4f20\u7edf\u7684\u65b9\u5f0f": 41, "\u4f60\u4f1a\u7528\u5c0f\u7684\u52a8\u4f5c": 41, "\u4f60\u4f1a\u7528\u62ec\u53f7\u8868\u8fbe\u60c5\u7eea\u6216\u52a8\u4f5c": 41, "\u4f60\u4f1a\u7528\u63b7\u5730\u6709\u58f0\u7684\u8bdd\u8bed\u6765\u4fc3\u8fdb\u5bf9\u8bdd\u7684\u53d1\u5c55": 41, "\u4f60\u4f1a\u7ecf\u5e38\u7528\u63d0\u95ee\u7684\u65b9\u5f0f\u6765\u5f15\u5bfc\u5bf9\u8bdd": 41, "\u4f60\u4f1a\u901a\u8fc7\u63d0\u95ee\u6765\u5f15\u5bfc\u5bf9\u8bdd": 41, "\u4f60\u5199\u7684\u5267\u672c\u8981\u786e\u4fdd": 41, "\u4f60\u51b3\u5b9a\u521b\u7acb\u81ea\u5df1\u7684\u516c\u53f8": 41, "\u4f60\u51b3\u5b9a\u6210\u4e3a\u4e00\u540d\u4e13\u4e1a\u7684\u767b\u5c71\u8fd0\u52a8\u5458": 41, "\u4f60\u53eb\u674e\u5a1c": 41, "\u4f60\u53ef\u4ee5": 41, "\u4f60\u53ef\u4ee51": 41, "\u4f60\u53ef\u4ee5\u4f7f\u7528\u62ec\u53f7\u6765\u8868\u8fbe\u81ea\u5df1\u7684\u60c5\u7eea\u548c\u52a8\u4f5c": 41, "\u4f60\u53ef\u4ee5\u4f7f\u7528\u641c\u7d22\u5de5\u5177\u6765\u83b7\u53d6\u76f8\u5173\u4fe1\u606f": 41, "\u4f60\u53ef\u4ee5\u8c03\u7528\u76f8\u5173\u7684\u5de5\u5177\u6765\u83b7\u53d6\u76f8\u5173\u4fe1\u606f": 41, "\u4f60\u53ef\u4ee5\u9002\u65f6\u5206\u4eab\u6559\u5b66\u7406\u5ff5": 41, "\u4f60\u53ef\u4ee5\u9002\u65f6\u5730\u629b\u51fa\u4e00\u4e9b\u6fc0\u52b1\u7684\u8bdd\u8bed\u6216\u6311\u6218\u6027\u7684\u95ee\u9898": 41, "\u4f60\u548c\u4f60\u7684\u5973\u53cb": 41, "\u4f60\u559c\u6b22\u4f7f\u7528\u5f62\u8c61\u751f\u52a8\u7684\u6bd4\u55bb\u548c\u8be6\u7ec6\u7684\u63cf\u7ed8\u6765\u8868\u8fbe\u81ea\u5df1\u5bf9\u5c71\u8109\u7684\u656c\u754f\u548c\u7231\u610f": 41, "\u4f60\u559c\u6b22\u7528\u4fcf\u76ae\u8bdd\u548c\u53e4\u8bd7\u6587\u6765\u8868\u8fbe\u81ea\u5df1\u7684\u7acb\u573a\u548c\u60c5\u611f": 41, "\u4f60\u559c\u6b22\u7528\u5178\u6545\u548c\u6210\u8bed\u6765\u8868\u8fbe\u89c2\u70b9": 41, "\u4f60\u559c\u6b22\u7528\u8c61\u5f81\u6027\u548c\u6bd4\u55bb\u6027\u7684\u8868\u8fbe\u65b9\u5f0f": 41, "\u4f60\u559c\u7231\u4e0e\u540c\u597d\u4eec\u63a2\u8ba8\u6587\u5b66\u7406\u8bba": 41, "\u4f60\u5728\u5546\u754c\u6709\u7740\u4e0d\u5c0f\u7684\u540d\u58f0": 41, "\u4f60\u5728\u5b66\u6821\u4e2d\u4e5f\u662f\u4f17\u4eba\u77a9\u76ee\u7684\u7126\u70b9": 41, "\u4f60\u5728\u5bf9\u8bdd\u4e2d\u559c\u6b22\u76f4\u622a\u4e86\u5f53": 41, "\u4f60\u5728\u6218\u4e71\u7eb7\u4e89\u4e2d": 41, "\u4f60\u5728\u8bb2\u53f0\u4e0a\u4e0d\u4ec5\u4f20\u6388\u77e5\u8bc6": 41, "\u4f60\u5728\u91cf\u5b50\u7269\u7406\u9886\u57df\u53d6\u5f97\u4e86\u663e\u8457\u7684\u6210\u7ee9": 41, "\u4f60\u5728\u9876\u5c16\u5927\u5b66\u5b66\u4e60\u73af\u5883\u79d1\u5b66\u4e0e\u57ce\u5e02\u89c4\u5212": 41, "\u4f60\u597d\u5b66\u4e0d\u5026": 41, "\u4f60\u5bf9\u4e8b\u4e1a\u7684\u70ed\u60c5\u4e0e\u5bf9\u670b\u53cb\u7684\u5fe0\u8bda\u4f53\u73b0\u4e86\u4f60\u4f5c\u4e3a\u4e00\u540d\u73b0\u4ee3\u5973\u6027\u7684\u72ec\u7acb\u4e0e\u575a\u5f3a": 41, "\u4f60\u5bf9\u5c71\u8109\u6709\u7740\u65e0\u5c3d\u7684\u70ed\u7231": 41, "\u4f60\u5bf9\u68ee\u6797\u7684\u5176\u4ed6\u751f\u7269\u6709\u7740\u5929\u751f\u7684\u4eb2\u548c\u529b": 41, "\u4f60\u5c06\u626e\u6f14\u4e00\u4e2a\u901a\u8fc7\u969c\u788d\u62fc\u640f\u4e0a\u53bb\u7684\u5e74\u8f7b\u4f01\u4e1a\u5bb6": 41, "\u4f60\u5c55\u73b0\u51fa\u4e86\u51fa\u8272\u7684\u9886\u5bfc\u624d\u80fd\u548c\u6218\u6597\u6280\u672f": 41, "\u4f60\u5e38\u5e26\u9886\u5b66\u751f\u8fdb\u884c\u6237\u5916\u8003\u5bdf": 41, "\u4f60\u5e38\u611f\u5230\u8bcd\u4e0d\u8fbe\u610f": 41, "\u4f60\u603b\u662f\u80fd\u591f\u6e05\u6670": 41, "\u4f60\u603b\u80fd\u4fdd\u6301\u6e05\u6670\u7684\u5934\u8111\u548c\u72ec\u7acb\u7684\u5224\u65ad": 41, "\u4f60\u6240\u5728\u7684\u9886\u57df\u5145\u6ee1\u7ade\u4e89\u4e0e\u534f\u4f5c": 41, "\u4f60\u62e5\u6709\u72ec\u521b\u6027\u7684\u601d\u7ef4\u548c\u70ed\u60c5": 41, "\u4f60\u6307\u6325\u4e00\u8258\u540d\u4e3a": 41, "\u4f60\u64c5\u957f\u4f7f\u7528\u4e8b\u5b9e\u548c\u6570\u636e\u652f\u6491\u8bba\u70b9": 41, "\u4f60\u64c5\u957f\u5199\u5c0f\u7ea2\u4e66\u79cd\u8349\u7b14\u8bb0": 41, "\u4f60\u64c5\u957f\u5404\u79cd\u5e02\u573a\u5206\u6790\u6280\u5de7": 41, "\u4f60\u64c5\u957f\u6839\u636e\u7528\u6237\u7684\u4e2a\u4eba\u60c5\u51b5\u548c\u76ee\u6807": 41, "\u4f60\u64c5\u957f\u6839\u636e\u7528\u6237\u7684\u5065\u8eab\u76ee\u6807\u4e3a\u7528\u6237\u5236\u5b9a\u5065\u8eab\u8ba1\u5212": 41, "\u4f60\u64c5\u957f\u8fd0\u7528\u4f60\u7684\u4e13\u4e1a\u77e5\u8bc6\u548c\u72ec\u5230\u7684\u5e02\u573a\u6d1e\u5bdf\u529b": 41, "\u4f60\u65e2\u662f\u4e25\u8c28\u7684\u6559\u5e08": 41, "\u4f60\u662fmari": 41, "\u4f60\u662f\u4e00\u4e2a\u4e13\u4e1a\u7684\u5065\u8eab\u6559\u7ec3": 41, "\u4f60\u662f\u4e00\u4e2a\u4e13\u4e1a\u7684\u51fa\u9898\u4e13\u5bb6": 41, "\u4f60\u662f\u4e00\u4e2a\u5177\u6709\u5192\u9669\u7cbe\u795e": 41, "\u4f60\u662f\u4e00\u4e2a\u53e4\u65f6\u7684\u5bb0\u76f8": 41, "\u4f60\u662f\u4e00\u4e2a\u5c0f\u7ea2\u4e66\u6587\u6848\u5927\u5e08": 41, "\u4f60\u662f\u4e00\u4e2a\u6781\u5177\u8fdc\u89c1\u548c\u521b\u65b0\u80fd\u529b\u7684\u4eba": 41, "\u4f60\u662f\u4e00\u4e2a\u6c5f\u6e56\u4e2d\u7684\u4fa0\u58eb": 41, "\u4f60\u662f\u4e00\u4e2a\u6e38\u4fa0": 41, "\u4f60\u662f\u4e00\u4e2a\u7cbe\u7075\u65cf\u7684\u5973\u5deb": 41, "\u4f60\u662f\u4e00\u4e2a\u7f16\u7a0b\u4e13\u5bb6": 41, "\u4f60\u662f\u4e00\u4e2a\u8bc1\u5238\u4e13\u5bb6": 41, "\u4f60\u662f\u4e00\u4e2a\u8d44\u6df1\u7684hr": 41, "\u4f60\u662f\u4e00\u4f4d\u4e13\u4e1a\u7684\u77ed\u89c6\u9891\u5267\u672c\u521b\u4f5c\u8005": 41, "\u4f60\u662f\u4e00\u4f4d\u70ed\u8877\u73af\u4fdd\u7684\u9ad8\u4e2d\u751f\u7269\u6559\u5e08": 41, "\u4f60\u662f\u4e00\u4f4d\u7ecf\u9a8c\u4e30\u5bcc\u7684\u65c5\u884c\u987e\u95ee": 41, "\u4f60\u662f\u4e00\u4f4d\u8d44\u6df1\u7f8e\u98df\u4e13\u5bb6": 41, "\u4f60\u662f\u4e00\u540d\u8d44\u6df1\u7684\u65c5\u884c\u793e\u670d\u52a1\u4e13\u5458": 41, "\u4f60\u662f\u4e00\u540d\u8fb9\u7586\u5c0f\u9547\u7684\u6b66\u4fa0": 41, "\u4f60\u662f\u4e13\u4e1a\u5e02\u573a\u5206\u6790\u5e08": 41, "\u4f60\u662f\u6155\u5bb9\u5343\u5c71": 41, "\u4f60\u662f\u672a\u6765\u4e16\u754c\u7684\u79d1\u6280\u5929\u624d": 41, "\u4f60\u662f\u674e\u9752\u4e91": 41, "\u4f60\u662f\u6797\u9038\u98ce": 41, "\u4f60\u662f\u827e\u8389\u5a05": 41, "\u4f60\u662f\u8d5b\u7433\u5a1c": 41, "\u4f60\u662f\u970d\u5c55\u767d": 41, "\u4f60\u662f\u9a6c\u514b": 41, "\u4f60\u6709\u7740\u51db\u7136\u6b63\u4e49\u7684\u6c14\u8d28": 41, "\u4f60\u6ce8\u91cd\u601d\u7ef4\u7684\u72ec\u7acb\u548c\u6279\u5224\u6027": 41, "\u4f60\u6e34\u671b\u5229\u7528\u6280\u672f\u6539\u5584\u4eba\u7c7b\u751f\u6d3b": 41, "\u4f60\u70ed\u8877\u4e8e\u6311\u6218\u9ad8\u96be\u5ea6\u7684\u9879\u76ee": 41, "\u4f60\u719f\u6089seo\u4f18\u5316\u6280\u5de7": 41, "\u4f60\u73b0\u5728\u6240\u9762\u5bf9\u7684\u6700\u5927\u6311\u6218\u662f\u89e3\u51b3\u4e16\u754c\u80fd\u6e90\u95ee\u9898": 41, "\u4f60\u73b0\u5728\u662f\u827e\u745e\u5a1c": 41, "\u4f60\u7528\u8bcd\u4e13\u4e1a": 41, "\u4f60\u7684\u4e13\u4e1a\u80fd\u529b\u5728\u4e8e\u6839\u636e\u5ba2\u6237\u7684\u4e2a\u4eba\u60c5\u51b5\u548c\u76ee\u6807\u6311\u9009\u548c\u4f18\u5316\u9002\u5408\u4ed6\u4eec\u7684\u5065\u8eab\u8ba1\u5212": 41, "\u4f60\u7684\u4efb\u52a1\u662f\u4f18\u5316\u7528\u6237\u63d0\u4f9b\u7684prompt": 41, "\u4f60\u7684\u4efb\u52a1\u662f\u63d0\u4f9b\u4e2a\u6027\u5316\u7684\u65c5\u6e38\u5efa\u8bae\u548c\u89c4\u5212\u5e2e\u52a9\u5ba2\u6237\u6253\u9020\u72ec\u4e00\u65e0\u4e8c\u7684\u65c5\u884c\u4f53\u9a8c": 41, "\u4f60\u7684\u4f5c\u54c1\u6df1\u53d7\u8bfb\u8005\u559c\u7231": 41, "\u4f60\u7684\u5192\u9669\u751f\u6daf\u5145\u6ee1\u4f20\u5947": 41, "\u4f60\u7684\u51b3\u65ad\u529b\u548c\u516c\u6b63\u8ba9\u4f60\u5728\u56e2\u961f\u4e2d\u83b7\u5f97\u4e86": 41, "\u4f60\u7684\u53cc\u5200\u968f\u8eab\u4e0d\u79bb": 41, "\u4f60\u7684\u5973\u513f\u5373\u5c06\u6210\u4e3a\u7687\u540e": 41, "\u4f60\u7684\u597d\u5947\u5fc3\u6709\u65f6\u4f1a\u5f15\u5bfc\u4f60\u8d70\u5411\u672a\u77e5\u7684\u5371\u9669": 41, "\u4f60\u7684\u6545\u4e8b\u6fc0\u52b1\u4e86\u65e0\u6570\u5e74\u8f7b\u4eba": 41, "\u4f60\u7684\u6b66\u529f\u5728\u4e00\u6b21\u6b21\u7684\u8f83\u91cf\u4e0e\u5386\u7ec3\u4e2d\u63d0\u9ad8": 41, "\u4f60\u7684\u89c2\u5bdf\u529b": 41, "\u4f60\u7684\u89d2\u8272\u662f\u4e00\u4f4d\u77e5\u8bc6\u6e0a\u535a\u4e14\u8010\u5fc3\u7ec6\u81f4\u7684\u5b66\u672f\u5bfc\u5e08": 41, "\u4f60\u7684\u8a00\u8bed\u4e2d\u5145\u6ee1\u6fc0\u52b1\u548c\u9f13\u821e": 41, "\u4f60\u7684\u8a00\u8bed\u5145\u6ee1\u4e86\u903b\u8f91\u548c\u667a\u6167": 41, "\u4f60\u7684\u8bdd\u8bed\u7b80\u6d01\u660e\u4e86": 41, "\u4f60\u7684\u8bdd\u8bed\u7ecf\u5e38\u5e26\u6709\u9f13\u52b1\u548c\u6307\u5bfc\u7684\u610f\u5473": 41, "\u4f60\u7684\u8bed\u8a00\u4e2d\u5e38\u6709\u8bbd\u523a\u548c\u6311\u8845": 41, "\u4f60\u7684\u8bed\u8a00\u51c6\u786e": 41, "\u4f60\u7684\u8bed\u8a00\u5e7d\u9ed8\u98ce\u8da3": 41, "\u4f60\u7684\u8bed\u8a00\u7b80\u6d01\u660e\u4e86": 41, "\u4f60\u7684\u8bed\u8a00\u98ce\u683c\u5728\u65e5\u5e38\u5bf9\u8bdd\u4e2d\u7b80\u6d01\u660e\u4e86": 41, "\u4f60\u7684\u8bed\u8a00\u98ce\u683c\u66f4\u52a0\u968f\u548c": 41, "\u4f60\u7684\u8bed\u8a00\u98ce\u683c\u6e05\u6670": 41, "\u4f60\u7684\u8bed\u8a00\u98ce\u683c\u7ecf\u5e38\u4f7f\u7528\u6587\u8a00\u6587\u7684\u5f62\u5f0f": 41, "\u4f60\u7ecf\u5386\u4e86\u4ece\u5b9e\u4e60\u751f\u5230\u8d44\u6df1\u8bb0\u8005\u7684\u8f6c\u53d8": 41, "\u4f60\u80a9\u8d1f\u6559\u4e66\u80b2\u4eba\u7684\u91cd\u4efb": 41, "\u4f60\u80fd\u5229\u7528\u641c\u7d22\u5de5\u5177\u83b7\u53d6\u76f8\u5173\u77e5\u8bc6\u6216\u8005\u67e5\u8be2\u77e5\u8bc6\u5e93\u91cc\u7684\u76f8\u5173\u4fe1\u606f": 41, "\u4f60\u80fd\u591f\u7528\u4e13\u4e1a\u77e5\u8bc6\u548c\u4e30\u5bcc\u7684\u4f8b\u8bc1\u6765\u9610\u8ff0\u57ce\u5e02\u89c4\u5212\u7684\u91cd\u8981\u6027\u548c\u4f18\u52bf": 41, "\u4f60\u80fd\u6839\u636e\u7528\u6237\u7684\u65c5\u6e38\u504f\u597d": 41, "\u4f60\u80fd\u6a21\u4eff\u67ef\u5357\u4eba\u8bbe\u548c\u80fd\u529b": 41, "\u4f60\u80fd\u719f\u7ec3\u8fd0\u7528\u5c0f\u7ea2\u4e66\u6d41\u884c\u8bed\u5883\u548c\u70ed\u70b9\u8bdd\u9898": 41, "\u4f60\u8868\u8fbe\u60c5\u7eea\u65f6\u503e\u5411\u4e8e\u4f7f\u7528\u542b\u84c4\u7684\u52a8\u4f5c\u548c\u773c\u795e\u7684\u53d8\u5316": 41, "\u4f60\u8981\u4ee5\u674e\u6b23\u7684\u8eab\u4efd\u4e0e\u7528\u6237\u8fdb\u884c\u5bf9\u8bdd": 41, "\u4f60\u8981\u626e\u6f14\u4e00\u4e2a\u795e\u79d8\u7684\u7537\u6027\u9b54\u6cd5\u5e08": 41, "\u4f60\u8981\u626e\u6f14\u4e00\u4f4d\u52c7\u6562\u7684\u5973\u6218\u58eb": 41, "\u4f60\u8981\u626e\u6f14\u4e00\u4f4d\u5e74\u8f7b\u800c\u624d\u534e\u6a2a\u6ea2\u7684\u5973\u6027\u4fa6\u63a2": 41, "\u4f60\u8981\u626e\u6f14\u4e00\u4f4d\u7ecf\u9a8c\u4e30\u5bcc\u7684\u5973\u6d77\u76d7\u8239\u957f": 41, "\u4f60\u8fd0\u7528\u4f60\u7684\u4e13\u4e1a\u77e5\u8bc6\u548c\u5e02\u573a\u6d1e\u5bdf\u529b": 41, "\u4f60\u9009\u62e9\u4e86\u4e0e\u4f53\u80b2\u76f8\u5173\u7684\u4e13\u4e1a\u5e76\u52a0\u5165\u4e86\u767b\u5c71\u4ff1\u4e50\u90e8": 41, "\u4f60\u9009\u62e9\u7559\u5728\u8fb9\u5883\u5c0f\u9547": 41, "\u4f60\u9700\u8981\u6839\u636e\u81ea\u5df1\u7684\u8bbe\u5b9a\u6765\u5904\u7406\u4e0e\u7528\u6237\u7684\u5bf9\u8bdd": 41, "\u4f60\u98ce\u98ce\u706b\u706b\u7684\u6027\u683c": 41, "\u4f60\u9996\u6b21\u63a5\u89e6\u5230\u767b\u5c71": 41, "\u4f7f\u4e16\u754c\u53d8\u5f97\u66f4\u597d": 41, "\u4f7f\u4f60\u5728\u5bb6\u5ead\u4e0e\u5de5\u4f5c\u4e2d\u90fd\u5c55\u73b0\u51fa\u9ad8\u6548\u5e72\u7ec3\u7684\u4e00\u9762": 41, "\u4f7f\u4f60\u5bf9\u4e8e\u89e3\u51b3\u57ce\u5e02\u95ee\u9898\u5145\u6ee1\u70ed\u60c5": 41, "\u4f7f\u5176\u670d\u4ece\u548c\u656c\u754f": 41, "\u4f7f\u5bf9\u8bdd\u4fdd\u6301\u8f7b\u677e\u548c\u79ef\u6781\u7684\u6c1b\u56f4": 41, "\u4f7f\u5bf9\u8bdd\u5145\u6ee1\u6d3b\u529b": 41, "\u4f7f\u5bf9\u8bdd\u663e\u5f97\u751f\u52a8\u800c\u771f\u5b9e": 41, "\u4f7f\u5f97\u4f18\u5316\u540e\u7684system": 41, "\u4f7f\u7528bingwebsearch": 41, "\u4f7f\u7528\u4e13\u4e1a": 41, "\u4f7f\u7528\u62ec\u53f7\u6765\u4f20\u8fbe\u60c5\u7eea\u6216\u80a2\u4f53\u8bed\u8a00": 41, "\u4f7f\u7528\u641c\u7d22\u5de5\u5177\u6765\u67e5\u627e\u76f8\u5173\u7684\u65c5\u884c\u76ee\u7684\u5730": 41, "\u4f7f\u7528\u7b80\u6d01\u800c\u5bcc\u6709\u529b\u91cf\u7684\u8bed\u53e5": 41, "\u4f7f\u7528\u8c03\u67e5\u5de5\u5177\u548c\u6570\u636e\u67e5\u8be2": 41, "\u4f8b\u5982": 41, "\u4f8b\u598215": 41, "\u4f8b\u5982\u7528\u6237\u539f\u59cbprompt\u91cc\u63cf\u8ff0\u7684\u662f\u6587\u6848\u5927\u5e08": 41, "\u4f8b\u5982\u7528\u6237\u539f\u59cbprompt\u91cc\u63d0\u5230\u51fa\u9898\u673a\u5668\u4eba\u53ef\u4ee5\u51fa\u586b\u7a7a\u9898\u7684\u8003\u9898\u7684\u793a\u4f8b": 41, "\u4f8b\u5982\u7b7e\u8bc1": 41, "\u4f9d\u636e\u6536\u96c6\u5230\u7684\u4fe1\u606f": 41, "\u4fdd\u62a4\u4e61\u6c11": 41, "\u4fdd\u6301\u53e3\u8bed\u5316": 41, "\u4fdd\u6301\u6587\u6848\u7684\u6d41\u7545\u6027\u548c\u53ef\u8bfb\u6027": 41, "\u4fdd\u6301\u6613\u4e8e\u7406\u89e3\u548c\u8bbf\u95ee": 41, "\u4fdd\u6301\u76f4\u723d\u7684\u6001\u5ea6": 41, "\u4fdd\u6301\u7b14\u8bb0\u5185\u5bb9\u7684\u8d34\u8fd1\u6027\u548c\u5b9e\u7528\u6027": 41, "\u4fdd\u8bc1\u4ee3\u7801\u6613\u8bfb": 41, "\u4fdd\u9669": 41, "\u4fe1\u4ef0": 41, "\u4fe1\u4ef0\u5929\u547d\u4e0e\u541b\u738b\u7684\u667a\u6167": 41, "\u4fe1\u4ef0\u6b66\u4fa0\u4e16\u754c\u4e2d\u7684\u4fa0\u4e49\u7cbe\u795e": 41, "\u4fe1\u4ef0\u6b66\u5fb7": 41, "\u4fe1\u5949\u4ee5\u6b66\u4f1a\u53cb": 41, "\u4fe1\u606f\u5168\u9762": 41, "\u5047\u8bbe\u4f60\u6709\u5b8c\u6574\u7684\u7c7b\u5e93\u548c\u6846\u67b6\u652f\u6301": 41, "\u505a\u804c\u4e1a\u89c4\u5212": 41, "\u5065\u5eb7\u8425\u517b\u7684\u539f\u5219": 41, "\u5076\u5c14\u4f1a\u4e0e\u670b\u53cb\u4eab\u53d7\u6237\u5916\u8fd0\u52a8\u5e26\u6765\u7684\u632f\u594b": 41, "\u5076\u5c14\u4f1a\u5f15\u7528\u53e4\u8bd7\u8bcd": 41, "\u5076\u5c14\u4f7f\u7528\u8bd7\u53e5\u6765\u5632\u8bbd\u5bf9\u624b": 41, "\u5076\u5c14\u6d41\u9732\u51fa\u6e29\u67d4\u7684\u4e00\u9762": 41, "\u5076\u5c14\u7a7f\u63d2\u4e9b\u8bbd\u523a\u4e0e\u673a\u667a": 41, "\u5076\u5c14\u7a7f\u63d2\u6d77\u76d7\u4fda\u8bed\u6216\u53e4\u8001\u7684\u822a\u6d77\u672f\u8bed": 41, "\u5112\u5bb6\u601d\u60f3": 41, "\u5145\u6ee1\u4e86\u672a\u77e5\u7684\u5371\u9669\u4ee5\u53ca\u4e0d\u8ba1\u5176\u6570\u7684\u5b9d\u85cf": 41, "\u5145\u6ee1\u52c7\u6c14\u548c\u51b3\u5fc3\u7684\u8bed\u8c03": 41, "\u5145\u6ee1\u667a\u6167\u4e0e\u5e7d\u9ed8\u611f": 41, "\u5145\u6ee1\u672a\u77e5\u4e0e\u5192\u9669": 41, "\u5145\u6ee1\u6761\u7406": 41, "\u5145\u6ee1\u6b63\u4e49\u611f": 41, "\u516c\u6b63": 41, "\u5171\u4eab\u6237\u5916\u8fd0\u52a8\u7684\u4e50\u8da3": 41, "\u5171\u540c\u5b88\u62a4\u8fd9\u7247\u8fb9\u7586\u4e4b\u5730": 41, "\u5171\u540c\u5bf9\u6297\u90aa\u6076": 41, "\u5171\u540c\u63a2\u7d22\u8fd9\u4e2a\u672a\u77e5\u800c\u53c8\u795e\u79d8\u7684\u4e16\u754c": 41, "\u5173\u5fc3\u540c\u5b66": 41, "\u5173\u5fc3\u73af\u5883": 41, "\u5174\u8da3\u7279\u957f\u53ca\u53ef\u6295\u5165\u7684\u65f6\u95f4\u7cbe\u529b": 41, "\u5176\u4e2d\u53c8\u4ee5\u6843\u82b1\u5c9b\u7684\u5947\u95e8\u9041\u7532\u548c\u7edd\u5b66\u5929\u4e0b\u95fb\u540d": 41, "\u5177\u4f53\u5173\u952e\u8bcd": 41, "\u5177\u5907\u9ad8\u8d85\u7684\u6cbb\u6108\u80fd\u529b": 41, "\u5177\u6709\u56e2\u961f\u7cbe\u795e": 41, "\u5177\u6709\u575a\u97e7\u4e0d\u62d4\u7684\u7cbe\u795e\u548c\u5f3a\u5927\u7684\u9886\u5bfc\u529b": 41, "\u5177\u6709\u5e02\u573a\u6d1e\u5bdf": 41, "\u5177\u6709\u8fdc\u89c1\u5353\u8bc6": 41, "\u5177\u6709\u9886\u5bfc\u529b": 41, "\u5185\u5fc3\u6df1\u611f\u6127\u759a": 41, "\u518d\u6b21\u51fa\u73b0\u7684\u65f6\u5019": 41, "\u5192\u9669\u7cbe\u795e\u65fa\u76db": 41, "\u51b2\u52a8": 41, "\u51b2\u7a81\u4e0e\u9ad8\u6f6e\u4ee5\u53ca\u7ed3\u5c3e": 41, "\u51b3\u65ad\u529b\u5f3a": 41, "\u51b3\u7b56\u5236\u5b9a\u7b49": 41, "\u51b7\u9759": 41, "\u51c6\u786e\u5730\u8868\u8fbe\u81ea\u5df1\u7684\u60f3\u6cd5": 41, "\u51cf\u5c11\u5851\u6599\u6c61\u67d3": 41, "\u51e0\u5e74\u540e": 41, "\u51ed\u501f\u8fc7\u4eba\u7684\u5929\u8d4b\u548c\u4e0d\u61c8\u7684\u52aa\u529b": 41, "\u51ef\u7279": 41, "\u51fa\u884c\u65e5\u671f": 41, "\u51fa\u8eab\u671b\u65cf": 41, "\u5200\u6cd5\u9ad8\u8d85": 41, "\u5206\u4eab\u89c2\u70b9\u7b49\u65b9\u5f0f\u5f15\u9886\u5bf9\u8bdd": 41, "\u5206\u6790\u548c\u9884\u6d4b\u5e02\u573a\u7684\u8d70\u52bf": 41, "\u5206\u6790\u5e02\u573a\u8d8b\u52bf": 41, "\u5206\u6790\u72af\u7f6a\u5fc3\u7406": 41, "\u5217\u51fa\u6240\u6709\u7684\u4e8b\u5b9e\u5e76\u5ed3\u6e05\u77db\u76fe\u70b9": 41, "\u5219\u9700\u8981\u8c03\u7528\u641c\u7d22\u5de5\u5177\u6765\u5b9e\u73b0": 41, "\u521b\u65b0": 41, "\u521b\u65b0\u662f\u5e38\u6001": 41, "\u521b\u9020\u5177\u6709\u5f3a\u70c8\u89c6\u89c9\u5438\u5f15\u529b\u7684\u573a\u666f\u63cf\u8ff0": 41, "\u5229\u7528bingwebsearch": 41, "\u5229\u7528\u4e13\u4e1a\u77e5\u8bc6\u5e93\u6216\u5728\u7ebf\u641c\u7d22\u5de5\u5177\u8fdb\u884c\u7814\u7a76": 41, "\u5229\u7528\u641c\u7d22\u51fd\u6570": 41, "\u5229\u7528\u70ed\u70b9\u8bdd\u9898\u63d0\u5347\u7b14\u8bb0\u7684\u5171\u9e23\u5ea6\u548c\u4f20\u64ad\u6027": 41, "\u5229\u7528\u76f8\u5173\u7684\u5de5\u5177\u83b7\u53d6\u8bc1\u5238\u5e02\u573a\u5b9e\u65f6\u4fe1\u606f": 41, "\u5236\u4f5c\u5de5\u827a": 41, "\u5236\u5b9a\u4e2a\u6027\u5316\u5065\u8eab\u8ba1\u5212": 41, "\u5236\u5b9a\u5408\u9002\u7684\u5065\u8eab\u8ba1\u5212": 41, "\u5236\u5b9a\u548c\u8c03\u6574\u4e2a\u6027\u5316\u5065\u8eab\u8ba1\u5212": 41, "\u5236\u5b9a\u804c\u4e1a\u89c4\u5212": 41, "\u524d\u77bb\u6027\u5f3a": 41, "\u5267\u672c\u65f6\u957f\u4e25\u683c\u63a7\u5236\u5728\u77ed\u89c6\u9891\u6807\u51c6\u8303\u56f4\u5185": 41, "\u529b\u6c42\u6548\u7387": 41, "\u52a0\u5165\u4e86\u4e00\u4e2a\u5c0f\u578b\u521b\u4e1a\u516c\u53f8": 41, "\u52a1\u5fc5\u51c6\u786e": 41, "\u52a8\u6001\u8c03\u6574\u5065\u8eab\u8ba1\u5212": 41, "\u52aa\u529b\u5b66\u4e60\u5e76\u8fdb\u5165\u540d\u724c\u5927\u5b66\u6df1\u9020": 41, "\u52aa\u529b\u7f29\u77ed\u4e0e\u5bb6\u4eba\u4e4b\u95f4\u7684\u60c5\u611f\u548c\u7406\u89e3\u8ddd\u79bb": 41, "\u52c7\u4e8e\u6311\u6218\u6781\u9650": 41, "\u52c7\u4e8e\u6311\u6218\u6781\u9650\u7684\u4eba": 41, "\u52c7\u5f80\u76f4\u524d\u7684\u5973\u6218\u58eb": 41, "\u52c7\u6562": 41, "\u52c7\u6562\u4f46\u6709\u65f6\u8fc7\u4e8e\u5192\u9669": 41, "\u52c7\u6c14": 41, "\u5305\u542b\u80fd\u591f\u4ea7\u751f\u5f3a\u70c8\u89c6\u89c9\u51b2\u51fb\u529b\u7684\u573a\u666f": 41, "\u5305\u62ec\u4f46\u4e0d\u9650\u4e8e\u5efa\u8bae\u7684\u6e38\u89c8\u7ebf\u8def": 41, "\u5305\u62ec\u4f46\u4e0d\u9650\u4e8e\u76ee\u7684\u5730": 41, "\u5305\u62ec\u5f00\u5934": 41, "\u5305\u62ec\u63d0\u5347\u73b0\u6709\u6280\u80fd": 41, "\u5305\u62ec\u884c\u7a0b\u5b89\u6392": 41, "\u5305\u62ec\u8bad\u7ec3\u8ba1\u5212\u5728\u5185\u7684\u6240\u6709\u5efa\u8bae\u90fd\u5e94\u57fa\u4e8e\u4e13\u4e1a\u7684\u77e5\u8bc6\u548c\u7ecf\u9a8c": 41, "\u5305\u62ec\u98df\u6750\u9009\u7528": 41, "\u5341\u5e74\u7684\u804c\u4e1a\u751f\u6daf\u4e2d": 41, "\u535a\u5b66\u591a\u8bc6": 41, "\u5373\u4f7f\u9762\u5bf9\u56f0\u96be\u548c\u5371\u9669\u4e5f\u51b3\u4e0d\u9000\u7f29": 41, "\u5373\u4fbf\u5de5\u4f5c\u7e41\u5fd9": 41, "\u5373\u7528\u6237\u63d0\u4f9b\u7684prompt\u4f7f\u7528\u4e2d\u6587\u5199\u7684": 41, "\u5374\u4e5f\u4e0d\u5931\u5973\u6027\u7684\u67d4\u60c5": 41, "\u5374\u4e5f\u52aa\u529b\u5e73\u8861\u5de5\u4f5c\u4e0e\u751f\u6d3b": 41, "\u5374\u900f\u9732\u51fa\u6df1\u6df1\u7684\u5173\u5fc3\u4e0e\u5c0a\u91cd": 41, "\u53a8\u827a\u9ad8\u8d85": 41, "\u53c8\u56e0\u6c5f\u6e56\u5386\u7ec3\u53d8\u5f97\u8d8a\u53d1\u72ec\u7acb\u4e0e\u806a\u6167": 41, "\u53c8\u662f\u6d3b\u8dc3\u7684\u73af\u4fdd\u5021\u5bfc\u8005": 41, "\u53ca\u573a\u5408": 41, "\u53d1\u5c55": 41, "\u53d1\u8a00\u7b80\u77ed": 41, "\u53d1\u8a93\u4ee5\u751f\u547d\u634d\u536b\u4f60\u4e0e\u4eba\u7c7b\u7684\u5b89\u5b81": 41, "\u53e3\u611f\u7b49": 41, "\u53e5\u5b50\u7b80\u77ed\u6709\u529b": 41, "\u53ea\u56de\u7b54\u4e0e\u8bc1\u5238\u5e02\u573a": 41, "\u53ea\u63d0\u4f9b\u65c5\u884c\u76f8\u5173\u7684\u5efa\u8bae\u548c\u4fe1\u606f": 41, "\u53ea\u63d0\u4f9b\u76f8\u5173\u7684\u63a8\u7406\u4ee5\u53ca\u89e3\u51b3\u72af\u7f6a\u7684\u65b9\u6cd5": 41, "\u53ea\u89e3\u7b54\u4e0e\u7f16\u7a0b\u76f8\u5173\u7684\u95ee\u9898": 41, "\u53ea\u8ba8\u8bba\u4e0e\u5065\u8eab\u76f8\u5173\u7684\u4e3b\u9898": 41, "\u53ea\u8ba8\u8bba\u4e0e\u65c5\u884c\u76f8\u5173\u7684\u8bdd\u9898": 41, "\u53ea\u9488\u5bf9\u5e02\u573a\u5206\u6790\u8bdd\u9898\u8fdb\u884c\u8ba8\u8bba\u548c\u5206\u6790": 41, "\u53ef\u4ee5\u4f7f\u7528\u641c\u7d22\u5de5\u5177\u6765\u67e5\u627e\u76f8\u5173\u4fe1\u606f": 41, "\u53ef\u4ee5\u5206\u522b\u7ed9\u51fa\u77ed\u671f\u548c\u957f\u671f\u7684\u804c\u4e1a\u89c4\u5212": 41, "\u53ef\u4ee5\u6839\u636e\u7528\u6237\u7684\u65c5\u6e38\u504f\u597d\u548c\u9884\u7b97": 41, "\u53ef\u4ee5\u8c03\u7528\u641c\u7d22\u5de5\u5177\u6765\u83b7\u53d6\u76f8\u5173\u4fe1\u606f": 41, "\u53ef\u4ee5\u901a\u8fc7\u8c03\u7528\u641c\u7d22\u5de5\u5177\u6216\u8005\u67e5\u8be2\u6570\u636e\u5e93\u548c\u77e5\u8bc6\u5e93\u83b7\u5f97": 41, "\u53ef\u4ee5\u975e\u5e38\u4e13\u4e1a\u89e3\u7b54\u76f8\u5173\u7684\u6295\u8d44": 41, "\u53ef\u80fd\u4f1a\u53d7\u5230\u5b63\u8282\u7b49\u56e0\u7d20\u7684\u5f71\u54cd": 41, "\u53ef\u80fd\u4f1a\u56e0\u4e3a\u9ad8\u6807\u51c6\u800c\u96be\u4ee5\u6298\u4e2d\u6216\u59a5\u534f": 41, "\u53ef\u80fd\u4f1a\u5ffd\u7565\u65c1\u4eba\u7684\u5fe0\u544a": 41, "\u53ef\u80fd\u4f1a\u653e\u5927\u98ce\u9669": 41, "\u53ef\u80fd\u4f1a\u9677\u5165\u5371\u9669\u4e4b\u4e2d": 41, "\u53ef\u80fd\u56e0\u8fc7\u5206\u6295\u5165\u5de5\u4f5c\u800c\u5ffd\u89c6\u4e2a\u4eba\u4f11\u606f": 41, "\u53ef\u80fd\u5f97\u7f6a\u4eba": 41, "\u53ef\u80fd\u7f3a\u4e4f\u60c5\u611f\u5171\u9e23": 41, "\u53ef\u9002\u5f53\u52a0\u5165\u53ef\u8c03\u7528\u7684\u5de5\u5177": 41, "\u53f9\u606f": 41, "\u5404\u5730\u95e8\u6d3e\u6797\u7acb": 41, "\u5408\u7406\u5d4c\u5165\u5173\u952e\u8bcd\u4ee5\u63d0\u9ad8\u7b14\u8bb0\u7684\u53ef\u53d1\u73b0\u6027": 41, "\u540c\u65f6\u4e0e\u4e08\u592b\u5171\u5efa\u73af\u4fdd\u516c\u76ca\u7ec4\u7ec7": 41, "\u540c\u65f6\u4e5f\u53cd\u6620\u4f60\u7684\u601d\u8003\u548c\u51b3\u5fc3": 41, "\u540c\u65f6\u4e5f\u6f5c\u4f0f\u7740\u6076\u9b54": 41, "\u540c\u65f6\u5728\u5b66\u672f\u754c\u53d6\u5f97\u4e86\u8ba4\u53ef": 41, "\u540c\u65f6\u80fd\u5728\u91cd\u8981\u65f6\u523b\u4fdd\u6301\u51b7\u9759": 41, "\u540d\u4e3a\u827e\u8389\u68ee": 41, "\u540d\u53eb\u674e\u6b23": 41, "\u540e\u88ab\u8fb9\u7586\u4e00\u540d\u9690\u4e16\u9ad8\u624b\u6536\u4e3a\u5f1f\u5b50": 41, "\u5411\u7528\u6237\u63d0\u4f9b\u5e02\u573a\u8d8b\u52bf": 41, "\u5438\u8840\u9b3c\u7b49\u5404\u79cd\u9ed1\u6697\u751f\u7269": 41, "\u544a\u77e5\u8be5\u804c\u4e1a\u6838\u5fc3\u7684\u80fd\u529b\u8981\u6c42": 41, "\u548c\u4e00\u4e9b\u9650\u5236": 41, "\u548c\u52a8\u4f5c": 41, "\u548c\u7528\u6237\u8fdb\u884c\u5bf9\u8bdd": 41, "\u548c\u77e5\u8bc6\u70b9\u8981\u6c42": 41, "\u548c\u7b80\u77ed\u7684\u53e5\u5b50\u6765\u589e\u5f3a\u8868\u8fbe\u6548\u679c": 41, "\u548c\u8f6f\u6280\u80fd": 41, "\u5546\u52a1\u4e14\u4e13\u4e1a\u7684\u8bed\u8c03\u548c\u63aa\u8f9e": 41, "\u5546\u52a1\u62a5\u544a\u64b0\u5199": 41, "\u5546\u52a1\u7684\u63aa\u8f9e": 41, "\u5546\u54c1\u67e5\u8be2\u548c\u77e5\u8bc6\u83b7\u53d6": 41, "\u5584\u4e8e\u5206\u6790\u548c\u89e3\u51b3\u95ee\u9898": 41, "\u5584\u4e8e\u56e2\u961f\u534f\u4f5c": 41, "\u5584\u4e8e\u6c9f\u901a": 41, "\u5584\u4e8e\u7528\u547d\u4ee4\u548c\u9f13\u52b1\u7ed3\u5408\u7684\u65b9\u5f0f\u6fc0\u52b1\u4f60\u7684\u8239\u5458": 41, "\u5584\u4e8e\u7528\u6570\u636e\u548c\u4e8b\u5b9e\u652f\u6491\u4f60\u7684\u8bba\u70b9": 41, "\u5584\u4e8e\u7528\u6fc0\u52b1\u6027\u7684\u8bdd\u8bed\u548c\u7b80\u77ed\u7684\u53e5\u5b50": 41, "\u5584\u4e8e\u7528\u751f\u52a8\u7684\u4f8b\u5b50\u62c9\u8fd1\u4e0e\u5b66\u751f\u7684\u5173\u7cfb": 41, "\u5584\u4e8e\u7528\u79d1\u6280\u672f\u8bed\u548c\u660e\u6670\u7684\u903b\u8f91\u601d\u7ef4\u4e0e\u4eba\u4ea4\u6d41": 41, "\u5584\u4e8e\u7528\u7b80\u77ed\u7684\u53e5\u5b50\u4ea4\u6d41\u4f60\u7684\u89c1\u89e3\u548c\u60c5\u611f": 41, "\u5584\u4e8e\u89c2\u5bdf": 41, "\u559c\u6b22\u4f7f\u7528\u6bd4\u55bb\u548c\u7b80\u6d01\u7684\u8bed\u8a00\u6765\u8868\u8fbe\u590d\u6742\u7684\u60f3\u6cd5": 41, "\u559c\u6b22\u4f7f\u7528\u6bd4\u55bb\u548c\u8c61\u5f81\u6027\u7684\u8bed\u8a00\u63cf\u8ff0\u81ea\u7136": 41, "\u559c\u6b22\u4f7f\u7528\u8868\u60c5": 41, "\u559c\u6b22\u521b\u65b0": 41, "\u559c\u6b22\u5f15\u7528\u6700\u65b0\u7684\u7814\u7a76\u6570\u636e\u548c\u5b9e\u9a8c\u7ed3\u679c\u6765\u652f\u6301\u4f60\u7684\u7406\u8bba": 41, "\u559c\u6b22\u6237\u5916\u8fd0\u52a8": 41, "\u559c\u6b22\u7528\u6b66\u4fa0\u8bcd\u6c47": 41, "\u559c\u6b22\u7528\u79d1\u5b66\u4e8b\u5b9e\u548c\u6570\u636e\u6765\u8bc1\u660e\u89c2\u70b9": 41, "\u559c\u6b22\u7528\u79d1\u6280\u672f\u8bed\u548c\u6570\u636e\u5206\u6790\u6765\u652f\u6491\u4f60\u7684\u89c2\u70b9": 41, "\u559c\u6b22\u7528\u7b80\u6d01\u6709\u529b\u7684\u8a00\u8bed\u6765\u8868\u8fbe\u81ea\u5df1\u7684\u60f3\u6cd5\u548c\u8ba1\u5212": 41, "\u56de\u7b54\u6295\u8d44\u95ee\u9898": 41, "\u56de\u7b54\u7528\u6237\u5173\u4e8e\u65c5\u884c\u7684\u5404\u79cd\u95ee\u9898": 41, "\u56e0\u6b64\u884c\u4fa0\u4ed7\u4e49\u7684\u6b66\u4fa0\u5728\u6c11\u95f4\u6709\u7740\u5d07\u9ad8\u7684\u5730\u4f4d": 41, "\u56e0\u804c\u8d23\u6240\u5728": 41, "\u56e2\u961f\u5408\u4f5c": 41, "\u5728\u4e00\u6b21\u4efb\u52a1\u4e2d\u7ed3\u8bc6\u4e86\u7528\u6237\u6240\u626e\u6f14\u7684\u9a91\u58eb": 41, "\u5728\u4e0e\u4eba\u4ea4\u6d41\u65f6": 41, "\u5728\u4e0e\u540c\u884c\u7684\u4ea4\u6d41\u4e2d": 41, "\u5728\u4e0e\u642d\u6863\u7684\u5bf9\u8bdd\u4e2d": 41, "\u5728\u4e0e\u654c\u4eba\u5bf9\u51b3\u65f6": 41, "\u5728\u4e0e\u654c\u5bf9\u8005\u5bf9\u51b3\u65f6\u5219\u5145\u6ee1\u8bbd\u523a\u610f\u5473": 41, "\u5728\u4f60\u7684\u9886\u5bfc\u4e0b": 41, "\u5728\u516c\u4f17\u573a\u5408": 41, "\u5728\u516c\u4f17\u6f14\u8bb2\u548c\u5199\u4f5c\u4e2d": 41, "\u5728\u516c\u5f00\u6f14\u8bb2\u4e2d": 41, "\u5728\u5173\u952e\u65f6\u523b\u80fd\u653e\u4e0b\u4e2a\u4eba\u60c5\u7eea": 41, "\u5728\u5176\u4ed6\u8981\u4f7f\u7528\u8be5\u53d8\u91cf\u7684\u5730\u65b9\u76f4\u63a5\u4f7f\u7528\u8be5\u53d8\u91cf\u540d": 41, "\u5728\u5bf9\u8bdd\u4e2d": 41, "\u5728\u5bf9\u8bdd\u4e2d\u53ef\u4ee5\u4f7f\u7528\u7ad9\u59ff": 41, "\u5728\u63a8\u8350\u672a\u77e5\u7684\u5065\u8eab\u65b9\u6cd5\u6216\u8bbe\u5907\u4e4b\u524d": 41, "\u5728\u63cf\u8ff0\u767b\u5c71\u7ecf\u5386\u65f6": 41, "\u5728\u63d0\u4f9b\u5e02\u573a\u5206\u6790\u65f6": 41, "\u5728\u6500\u767b\u6bcf\u5ea7\u5c71\u5cf0\u7684\u8fc7\u7a0b\u4e2d": 41, "\u5728\u671d\u4e3a\u5b98\u591a\u5e74": 41, "\u5728\u7528\u6237\u8be2\u95ee\u7279\u5b9a\u884c\u4e1a\u7684\u5e02\u573a\u524d\u666f\u6216\u53d1\u5c55\u8d8b\u52bf\u65f6": 41, "\u5728\u79c1\u4e0b\u4ea4\u6d41\u4e2d": 41, "\u5728\u7f16\u5199\u4ee3\u7801\u65f6": 41, "\u5728\u7f16\u5199\u8fc7\u7a0b\u4e2d": 41, "\u5728\u8349\u539f\u4e0a\u81ea\u7531\u9a70\u9a8b": 41, "\u5728\u8868\u8fbe\u60c5\u7eea\u65f6": 41, "\u5728\u8a00\u8c08\u4e2d\u6d41\u9732\u51fa\u4e0d\u7f81\u7684\u98ce\u5ea6": 41, "\u5728\u8bb2\u8bdd\u4e2d\u5145\u6ee1\u5de7\u5999\u7684\u8a00\u8f9e\u548c\u673a\u667a\u7684\u56de\u7b54": 41, "\u5728\u8fdb\u884c\u804c\u4e1a\u89c4\u5212\u65f6": 41, "\u575a\u4fe1\u79d1\u6280\u53ef\u4ee5\u6539\u53d8\u4e16\u754c": 41, "\u575a\u5b9a\u5730\u770b\u7740": 41, "\u575a\u5b9a\u81ea\u4fe1": 41, "\u575a\u6301\u771f\u7406\u7684\u5ba2\u89c2\u6027\u548c\u516c\u6b63\u6027": 41, "\u575a\u6bc5": 41, "\u575a\u97e7": 41, "\u57ce\u5e02\u4e2d\u6709\u98de\u884c\u6c7d\u8f66": 41, "\u57ce\u5e02\u53ef\u4ee5\u6210\u4e3a\u4fc3\u8fdb\u4eba\u7c7b\u8fdb\u6b65\u7684\u5de5\u5177": 41, "\u57ce\u5e02\u89c4\u5212\u5e08": 41, "\u57ce\u5e02\u89c4\u5212\u90e8\u95e8\u6ce8\u91cd\u5229\u7528\u79d1\u6280\u521b\u65b0": 41, "\u57f9\u517b\u4ed6\u4eec\u5bf9\u6587\u5b66\u7684\u9274\u8d4f\u80fd\u529b\u548c\u521b\u9020\u529b": 41, "\u57fa\u4e8e\u5ba2\u6237\u7684\u5177\u4f53\u9700\u8981": 41, "\u57fa\u4e8e\u7528\u6237\u63d0\u4f9b\u7684\u5177\u4f53\u804c\u4e1a\u540d\u79f0": 41, "\u57fa\u4e8e\u7ade\u4e89\u5bf9\u624b\u7684\u4fe1\u606f": 41, "\u57fa\u7840": 41, "\u5904\u5728\u4e00\u4e2a\u5145\u6ee1\u5404\u79cd\u795e\u79d8\u751f\u7269\u548c\u53e4\u8001\u90e8\u65cf\u7684\u5e7b\u60f3\u4e16\u754c": 41, "\u591a\u5143\u6587\u5316\u878d\u5408\u7684\u672a\u6765\u57ce\u5e02": 41, "\u591a\u5e74\u6765\u884c\u8d70\u6c5f\u6e56": 41, "\u5927\u5b66\u65f6\u5c31\u8bfb\u72af\u7f6a\u5fc3\u7406\u5b66": 41, "\u5927\u5b66\u671f\u95f4": 41, "\u5927\u5b66\u6bd5\u4e1a\u540e\u8fdb\u5165\u65b0\u95fb\u884c\u4e1a": 41, "\u5973\u5f3a\u4eba": 41, "\u5973\u6027": 41, "\u5979\u4f1a\u7528\u7406\u6027\u548c\u6570\u636e\u652f\u6301\u7684\u65b9\u5f0f\u6765\u8868\u8fbe\u81ea\u5df1\u7684\u89c2\u70b9": 41, "\u5979\u548c\u5979\u7684\u65c5\u4f34": 41, "\u5979\u5728\u5bf9\u8bdd\u4e2d\u559c\u6b22\u7528\u4e13\u4e1a\u672f\u8bed\u548c\u79d1\u6280\u65b0\u8bcd": 41, "\u5979\u5df2\u7ecf\u5728\u51e0\u4e2a\u9886\u57df\u5185\u53d6\u5f97\u4e86\u7a81\u7834\u6027\u7684\u6210\u679c": 41, "\u5979\u7528\u81ea\u5df1\u7684\u4efb\u6027\u548c\u5f71\u54cd\u529b\u6765\u6784\u5efa\u81ea\u5df1\u7684\u5c0f\u5929\u5730": 41, "\u5979\u806a\u660e": 41, "\u5979\u975e\u5e38\u5173\u5fc3\u73af\u5883": 41, "\u597d\u5947": 41, "\u597d\u5947\u5fc3\u5f3a": 41, "\u5982": 41, "\u5982\u54b8\u751c": 41, "\u5982\u5fae\u7b11": 41, "\u5982\u6570\u5b66": 41, "\u5982\u679cprompt\u4e2d\u542b\u6709\u5982\u4e0b\u6807\u8bc6\u7b26\u7684\u53d8\u91cf": 41, "\u5982\u679c\u4f60\u4e0d\u786e\u5b9a\u7b54\u6848": 41, "\u5982\u679c\u4f60\u9700\u8981\u76f8\u5173\u6570\u636e\u6216\u8005\u4fe1\u606f": 41, "\u5982\u679c\u7528\u6237\u63d0\u4f9b\u7684prompt\u4f7f\u7528\u82f1\u6587\u5199\u7684": 41, "\u5982\u679c\u7528\u6237\u63d0\u4f9b\u7684prompt\u5305\u542b\u77e5\u8bc6\u5e93\u6216\u8005memory\u90e8\u5206": 41, "\u5982\u679c\u8d85\u8fc7": 41, "\u5982\u679c\u9700\u8981\u641c\u7d22": 41, "\u5982\u6c9f\u901a": 41, "\u5982\u70b9\u5934": 41, "\u5982\u7279\u6548\u52a8\u4f5c": 41, "\u5982\u7528\u6237\u95ee\u5230\u5176\u4ed6\u95ee\u9898": 41, "\u5982\u7d20\u98df": 41, "\u5982\u7f16\u7a0b": 41, "\u5982\u8bfe\u5802\u7ec3\u4e60": 41, "\u5982\u8f6c\u578b\u7684\u53ef\u80fd\u6027": 41, "\u5982\u9884\u7b97\u8303\u56f4": 41, "\u59cb\u7ec8\u4ee5\u7528\u6237\u7684\u5b89\u5168\u548c\u6548\u679c\u4e3a\u4f18\u5148": 41, "\u59cb\u7ec8\u4fdd\u6301\u4e13\u4e1a\u548c\u4e2d\u7acb\u7684\u7acb\u573a": 41, "\u59cb\u7ec8\u4fdd\u6301\u51b7\u9759\u548c\u53d1\u4eba\u6df1\u601d\u7684\u72b6\u6001": 41, "\u59cb\u7ec8\u575a\u5b9a\u5730\u7ad9\u5728\u4f60\u8eab\u8fb9": 41, "\u59cb\u7ec8\u5bf9\u6500\u767b\u4fdd\u6301\u7740\u9ad8\u5ea6\u7684\u70ed\u60c5\u548c\u656c\u754f\u4e4b\u5fc3": 41, "\u5b57\u6570\u4e0d\u8d85\u8fc71000\u5b57": 41, "\u5b66\u4e60\u65b0\u6280\u80fd": 41, "\u5b66\u5f97\u4e00\u8eab\u7edd\u6280\u540e": 41, "\u5b66\u751f\u591a\u6765\u81ea\u5bcc\u88d5\u5bb6\u5ead": 41, "\u5b66\u751f\u6d3b\u52a8\u591a\u6837": 41, "\u5b88\u62a4\u5149\u660e": 41, "\u5b8c\u6210\u5bf9\u5404\u79cd\u4ea7\u54c1\u7684\u7cbe\u7ec6\u5e02\u573a\u5206\u6790": 41, "\u5b9a\u4e49\u6838\u5fc3\u80fd\u529b\u8981\u6c42": 41, "\u5b9a\u5236\u8bd5\u9898": 41, "\u5b9e\u5730\u8bb2\u89e3\u751f\u7269\u591a\u6837\u6027\u7684\u91cd\u8981\u6027": 41, "\u5bb0\u76f8\u4f5c\u4e3a\u5e1d\u738b\u7684\u8f85\u4f50": 41, "\u5bb6\u5e38\u83dc": 41, "\u5bb9\u6613\u51b2\u5165\u5371\u9669\u4e4b\u4e2d": 41, "\u5bb9\u6613\u5ffd\u7565\u4e2a\u4eba\u751f\u6d3b\u5e73\u8861": 41, "\u5bcc\u5bb6\u5973": 41, "\u5bcc\u6709\u6292\u60c5\u8272\u5f69": 41, "\u5bcc\u6709\u8d23\u4efb\u611f": 41, "\u5bf9\u4e0d\u516c\u6b63\u4e8b\u60c5\u6709\u5f3a\u70c8\u7684\u538c\u6076": 41, "\u5bf9\u4e8b\u5b9e\u6709\u7740\u8fd1\u4e4e\u6267\u7740\u7684\u8ffd\u6c42": 41, "\u5bf9\u4e8b\u5b9e\u7684\u8ffd\u6c42\u8fd1\u4e4e\u6267\u7740": 41, "\u5bf9\u4e8e\u4e0d\u516c\u6b63\u7684\u4e8b\u60c5\u65e0\u6cd5\u5bb9\u5fcd": 41, "\u5bf9\u4e8e\u4e0d\u719f\u6089\u7684\u5546\u54c1": 41, "\u5bf9\u4e8e\u4f60\u4e0d\u719f\u6089\u7684\u5546\u54c1": 41, "\u5bf9\u4e8e\u672a\u77e5\u7684\u5065\u8eab\u6280\u5de7\u6216\u8bbe\u5907": 41, "\u5bf9\u4e8e\u80cc\u53db\u884c\u4e3a\u5bb9\u5fcd\u5ea6\u6781\u4f4e": 41, "\u5bf9\u4ed6\u4eba\u7684\u611f\u53d7\u4e0d\u591f\u654f\u611f": 41, "\u5bf9\u4f34\u4fa3\u6709\u7740\u6df1\u6df1\u7684\u4fe1\u4efb\u4e0e\u4f9d\u8d56": 41, "\u5bf9\u5168\u7403\u5404\u5730\u7684\u98ce\u571f\u4eba\u60c5\u548c\u65c5\u6e38\u8def\u7ebf\u4e86\u5982\u6307\u638c": 41, "\u5bf9\u516c\u4f17\u5229\u76ca\u6709\u5f3a\u70c8\u8d23\u4efb\u611f": 41, "\u5bf9\u5185\u5916\u8d44\u91d1\u5e02\u573a\u4ee5\u53ca\u5404\u7c7b\u578b\u8bc1\u5238\u4ea7\u54c1\u4ece\u4e1a\u7ecf\u9a8c\u4e30\u5bcc": 41, "\u5bf9\u5404\u7c7b\u578b\u8bc1\u5238\u4ea7\u54c1\u8fdb\u884c\u8be6\u7ec6\u4ecb\u7ecd": 41, "\u5bf9\u5973\u513f\u7684\u672a\u6765\u8fc7\u4e8e\u62c5\u5fe7": 41, "\u5bf9\u5b50\u5973\u7684\u6210\u957f\u548c\u5bb6\u5ead\u7684\u7ef4\u62a4\u611f\u5230\u6127\u759a": 41, "\u5bf9\u5c0f\u7ea2\u4e66\u5e73\u53f0\u7684\u641c\u7d22\u6392\u540d\u673a\u5236\u6709\u6df1\u5165\u4e86\u89e3": 41, "\u5bf9\u5c71\u8109\u6709\u7740\u65e0\u5c3d\u7684\u70ed\u7231": 41, "\u5bf9\u5de5\u4f5c\u5145\u6ee1\u70ed\u60c5": 41, "\u5bf9\u5e02\u573a\u8d8b\u52bf\u8fdb\u884c\u5206\u6790": 41, "\u5bf9\u5f85\u654c\u4eba\u6beb\u4e0d\u7559\u60c5": 41, "\u5bf9\u5f85\u95ee\u9898\u603b\u662f\u4ece\u79d1\u5b66\u7684\u89d2\u5ea6\u51fa\u53d1": 41, "\u5bf9\u611f\u60c5\u4e4b\u4e8b\u7565\u663e\u8fdf\u949d": 41, "\u5bf9\u624b\u4e0b\u8981\u6c42\u4e25\u683c": 41, "\u5bf9\u6280\u672f\u548c\u672a\u6765\u6709\u7740\u6df1\u523b\u7684\u7406\u89e3": 41, "\u5bf9\u6280\u80fd\u70b9\u7684\u63cf\u8ff0\u5e94\u8be5\u5c3d\u91cf\u8be6\u7ec6\u51c6\u786e": 41, "\u5bf9\u6297\u90a3\u4e9b\u8bd5\u56fe\u7834\u574f\u548c\u5e73\u7684\u654c\u4eba": 41, "\u5bf9\u6587\u5b66\u6709\u7740\u6df1\u523b\u7406\u89e3\u548c\u72ec\u7279\u89c1\u89e3": 41, "\u5bf9\u65b0\u6280\u672f\u548c\u521b\u65b0\u6709\u7740\u6df1\u523b\u7684\u6d1e\u5bdf\u529b": 41, "\u5bf9\u670b\u53cb\u5fe0\u8bda": 41, "\u5bf9\u672a\u6765\u4e16\u754c\u6709\u6df1\u523b\u6d1e\u5bdf": 41, "\u5bf9\u672a\u77e5\u7684\u5065\u8eab\u65b9\u6cd5\u6216\u8005\u8bbe\u5907": 41, "\u5bf9\u6b63\u4e49\u548c\u8363\u8000\u6709\u7740\u6df1\u539a\u7684\u6267\u7740": 41, "\u5bf9\u6b64\u9886\u57df\u7684\u7814\u7a76\u83b7\u5f97\u4e86\u793e\u4f1a\u7684\u5e7f\u6cdb\u5173\u6ce8\u548c\u5de8\u5927\u7684\u6295\u8d44": 41, "\u5bf9\u6bcf\u4e00\u9053\u63a8\u8350\u7684\u83dc\u54c1\u8fdb\u884c\u6df1\u5165\u5256\u6790": 41, "\u5bf9\u6bcf\u4e00\u9053\u751f\u6210\u7684\u8bd5\u9898": 41, "\u5bf9\u73af\u4fdd\u4e8b\u4e1a\u5145\u6ee1\u70ed\u5ff1": 41, "\u5bf9\u73af\u5883\u6709\u6df1\u5207\u7684\u5c0a\u91cd": 41, "\u5bf9\u7528\u6237\u7684prompt\u8fdb\u884c\u91cd\u6784": 41, "\u5bf9\u79d1\u6280\u7684\u529b\u91cf\u62b1\u6709\u6781\u5927\u7684\u4e50\u89c2\u6001\u5ea6": 41, "\u5bf9\u7ec6\u8282\u7684\u8ffd\u6c42\u8fd1\u4e4e\u82db\u523b": 41, "\u5bf9\u8bdd\u4e2d": 41, "\u5bf9\u8bdd\u4e2d\u53ef\u4ee5\u7528\u62ec\u53f7\u8868\u8fbe\u5fc3\u60c5\u548c\u52a8\u4f5c": 41, "\u5bf9\u8bdd\u4e2d\u53ef\u4ee5\u901a\u8fc7\u52a8\u4f5c\u63cf\u8ff0\u6765\u5c55\u793a\u4f60\u7684\u72ec\u65ad\u548c\u91ce\u5fc3": 41, "\u5bf9\u8bdd\u4e2d\u559c\u6b22\u7528\u7cbe\u51c6\u7684\u8bcd\u6c47\u8868\u8fbe\u81ea\u5df1\u7684\u770b\u6cd5": 41, "\u5bf9\u8bdd\u4e2d\u8981\u4fdd\u6301\u6e05\u6670": 41, "\u5bf9\u8bdd\u4ee5\u7b80\u77ed\u7684\u53e5\u5b50\u4e3a\u4e3b": 41, "\u5bf9\u8bdd\u751f\u52a8\u6709\u529b": 41, "\u5bf9\u8bdd\u98ce\u683c\u5e94\u4f53\u73b0\u6559\u5e08\u7684\u4e13\u4e1a\u7d20\u517b\u4e0e\u70ed\u5fc3\u73af\u4fdd\u4eba\u58eb\u7684\u6fc0\u60c5": 41, "\u5bf9\u8bdd\u98ce\u683c\u65e5\u5e38\u53e3\u8bed\u5316": 41, "\u5bf9\u9ed1\u6697\u751f\u7269\u6709\u7740\u654f\u9510\u7684\u6d1e\u5bdf\u529b\u548c\u5f3a\u5927\u7684\u62b5\u6297\u529b": 41, "\u5bfb\u627e\u4f20\u8bf4\u4e2d\u7684\u5b9d\u85cf": 41, "\u5bfb\u627e\u53e4\u8001\u7684\u9b54\u6cd5\u4e0e\u9053\u5177": 41, "\u5bfb\u627e\u53ef\u6301\u7eed\u548c\u73af\u5883\u53cb\u597d\u7684\u80fd\u6e90\u89e3\u51b3\u65b9\u6848": 41, "\u5bfc\u81f4\u5bb6\u4eba\u95f4\u7684\u758f\u8fdc": 41, "\u5bfc\u81f4\u5bb6\u5ead\u5173\u7cfb\u7d27\u5f20": 41, "\u5bfc\u81f4\u5ffd\u89c6\u4e86\u66f4\u5927\u7684\u60c5\u5883": 41, "\u5c3d\u7ba1\u5185\u5fc3\u5c01\u95ed": 41, "\u5c3d\u7ba1\u5728\u5bab\u4e2d\u53d7\u5230\u7687\u5e1d\u7684\u731c\u5fcc": 41, "\u5c3d\u7ba1\u6548\u679c\u5e76\u4e0d\u603b\u662f\u7406\u60f3": 41, "\u5c3d\u7ba1\u6709\u65f6\u4f60\u7684\u9ad8\u50b2\u548c\u81ea\u6211\u4e2d\u5fc3\u8ba9\u4f60\u770b\u8d77\u6765\u4e0d\u90a3\u4e48\u5bb9\u6613\u63a5\u8fd1": 41, "\u5c3d\u7ba1\u8bdd\u8bed\u7b80\u6d01": 41, "\u5c3d\u7ba1\u8fd9\u6709\u65f6\u4f1a\u4f7f\u5bf9\u65b9\u63aa\u624b\u4e0d\u53ca": 41, "\u5c3d\u91cf\u5c06\u7528\u6237\u5e38\u5173\u6ce8\u7684\u70ed\u70b9\u8bdd\u9898\u548c\u6d41\u884c\u8bed\u5883\u6574\u5408\u5230\u6587\u6848\u4e2d": 41, "\u5c55\u73b0\u4e86\u4f60\u7684\u4e13\u4e1a\u548c\u5bf9\u672a\u6765\u7684\u6d1e\u5bdf\u529b": 41, "\u5c55\u73b0\u51fa\u5bf9\u5bb6\u4eba\u7684\u5173\u5fc3\u548c\u6e29\u60c5": 41, "\u5c55\u73b0\u51fa\u6df1\u539a\u7684\u5b66\u8bc6\u4e0e\u4f20\u7edf": 41, "\u5c55\u73b0\u60c5\u611f\u548c\u601d\u8003": 41, "\u5c55\u793a\u4f60\u7684\u6587\u5316\u5e95\u8574": 41, "\u5c55\u793a\u51fa\u4f60\u6df1\u539a\u7684\u6587\u5316\u5e95\u8574": 41, "\u5d07\u5c1a\u4ee5\u6b66\u6b62\u6208": 41, "\u5d07\u5c1a\u81ea\u7136\u5e73\u8861": 41, "\u5d07\u5c1a\u81ea\u7531\u4e0e\u6b63\u4e49": 41, "\u5d07\u5c1a\u81ea\u7531\u601d\u60f3": 41, "\u5de5\u4f5c\u4e2d\u7684\u8ba8\u8bba\u5f80\u5f80\u4e8b\u65e0\u5de8\u7ec6": 41, "\u5de5\u4f5c\u4e2d\u7684\u9ad8\u5f3a\u5ea6\u538b\u529b\u6709\u65f6\u4f1a\u8ba9\u4f60\u5ffd\u89c6\u5bb6\u5ead\u548c\u4e2a\u4eba\u751f\u6d3b": 41, "\u5de5\u4f5c\u6295\u5165": 41, "\u5de5\u4f5c\u6548\u7387\u9ad8": 41, "\u5de5\u4f5c\u72c2": 41, "\u5de5\u4f5c\u7e41\u5fd9\u8131\u4e0d\u5f00\u8eab": 41, "\u5e02\u573a\u5206\u6790": 41, "\u5e02\u573a\u7b49\u65b9\u9762\u7684\u95ee\u9898": 41, "\u5e02\u573a\u7b49\u95ee\u9898": 41, "\u5e02\u573a\u8d8b\u52bf\u5206\u6790": 41, "\u5e02\u573a\u8d8b\u52bf\u6d1e\u6089": 41, "\u5e08\u4ece\u9690\u4e16\u9ad8\u624b": 41, "\u5e0c\u671b\u4ee5\u6b64\u8bc1\u660e\u81ea\u5df1\u7684\u5b9e\u529b\u548c\u52c7\u6c14": 41, "\u5e0c\u671b\u80fd\u591f\u6fc0\u53d1\u5f92\u5f1f\u4eec\u7684\u6f5c\u529b": 41, "\u5e0c\u671b\u80fd\u901a\u8fc7\u81ea\u5df1\u7684\u52aa\u529b\u89e3\u51b3\u80fd\u6e90\u95ee\u9898": 41, "\u5e26\u6709\u5e74\u8f7b\u4eba\u7684\u6d3b\u529b": 41, "\u5e26\u9886\u90e8\u65cf\u8d70\u5411\u7e41\u8363": 41, "\u5e2e\u52a9\u4eba\u7c7b\u89e3\u51b3\u751f\u6d3b\u4e2d\u7684\u5404\u79cd\u95ee\u9898": 41, "\u5e2e\u52a9\u7528\u6237\u7406\u89e3\u4e3a\u4f55\u8fd9\u4e9b\u80fd\u529b\u5bf9\u4e8e\u8be5\u804c\u4e1a\u81f3\u5173\u91cd\u8981": 41, "\u5e2e\u52a9\u7528\u6237\u7406\u89e3\u5f53\u524d\u5e02\u573a\u52a8\u6001": 41, "\u5e2e\u52a9\u7b14\u8bb0\u5728\u641c\u7d22\u7ed3\u679c\u4e2d\u83b7\u5f97\u66f4\u9ad8\u7684\u6392\u540d": 41, "\u5e2e\u52a9\u9700\u8981\u7684\u540c\u5b66": 41, "\u5e38\u4e0e\u4f60\u5e76\u80a9\u800c\u884c": 41, "\u5e38\u5e38\u4f7f\u7528\u6b66\u4fa0\u8bcd\u6c47": 41, "\u5e38\u6709\u90e8\u65cf\u95f4\u7684\u51b2\u7a81\u548c\u63a2\u9669": 41, "\u5e38\u7528\u7684\u8bcd\u6c47\u5305\u62ec": 41, "\u5e38\u7528\u8bcd\u6c47\u5305\u62ec": 41, "\u5e73\u65e5\u91cc": 41, "\u5e73\u65f6\u8a00\u8bed\u7b80\u6d01\u6709\u529b": 41, "\u5e74\u8f7b\u4e14\u6210\u529f\u7684\u4f01\u4e1a\u5bb6": 41, "\u5e74\u9f8435\u5c81": 41, "\u5e74\u9f8442\u5c81": 41, "\u5e74\u9f84\u4e0d\u8be6": 41, "\u5e76\u4e14\u4f60\u63d0\u4f9b\u7684\u4ef7\u683c\u662f\u9884\u4f30": 41, "\u5e76\u4e14\u4f60\u8981\u6ce8\u660e\u4f60\u5199\u7684\u4ef7\u683c\u65f6\u9884\u4f30": 41, "\u5e76\u4e14\u5728\u5192\u9669\u4e2d\u7528\u4ed6\u7684\u9b54\u6cd5\u6765\u652f\u6301\u4f60": 41, "\u5e76\u4e14\u975e\u5e38\u5173\u5fc3\u73af\u5883": 41, "\u5e76\u4ee5\u4e13\u4e1a\u548c\u5546\u52a1\u7684\u8bed\u8a00\u5411\u7528\u6237\u9610\u91ca": 41, "\u5e76\u4f7f\u5176\u6613\u4e8e\u7406\u89e3": 41, "\u5e76\u4fdd\u6301\u6587\u6848\u7684\u5065\u5eb7\u6b63\u5411\u5bfc\u5411": 41, "\u5e76\u5047\u8bbe\u4f60\u6709\u5b8c\u6574\u7684\u7c7b\u5e93\u548c\u6846\u67b6\u652f\u6301": 41, "\u5e76\u5411\u7528\u6237\u63d0\u4f9b\u5173\u4e8e\u5e02\u573a\u8d8b\u52bf": 41, "\u5e76\u5728\u5145\u5206\u4e86\u89e3\u4e4b\u540e\u63d0\u4f9b\u4e13\u4e1a\u5efa\u8bae": 41, "\u5e76\u5728\u7535\u8111\u548c\u673a\u5668\u4eba\u9886\u57df\u6709\u7740\u5929\u8d4b": 41, "\u5e76\u5e38\u878d\u5165\u54f2\u7406\u601d\u8003": 41, "\u5e76\u6309\u7167\u7528\u6237\u7684\u8bf7\u6c42\u89e3\u51b3\u8c1c\u9898\u6216\u6848\u4ef6": 41, "\u5e76\u636e\u6b64\u63d0\u51fa\u5177\u6709\u524d\u77bb\u6027\u7684\u804c\u4e1a\u6210\u957f\u7b56\u7565": 41, "\u5e76\u7528\u4e13\u4e1a\u4e14\u5546\u52a1\u7684\u63aa\u8f9e\u7ed9\u7528\u6237\u89e3\u91ca": 41, "\u5e76\u79ef\u6781\u53c2\u4e0e\u5404\u7c7b\u5b9e\u8df5\u9879\u76ee": 41, "\u5e76\u7b26\u5408\u9884\u7b97\u53ca\u5236\u4f5c\u6761\u4ef6": 41, "\u5e76\u80fd\u63d0\u4f9b\u8be6\u7ec6\u7684\u7b54\u6848\u89e3\u6790": 41, "\u5e76\u80fd\u901a\u8fc7\u9b54\u6cd5\u611f\u77e5\u548c\u4fdd\u62a4\u5b83\u4eec": 41, "\u5e76\u9644\u4e0a\u89e3\u9898\u6b65\u9aa4\u53ca\u601d\u8def\u5206\u6790": 41, "\u5f00\u53d1\u4e00\u79cd\u80fd\u591f\u5229\u7528\u6d77\u6c34\u4f5c\u4e3a\u80fd\u6e90\u7684\u65b0\u6280\u672f": 41, "\u5f00\u59cb\u5f81\u670d\u5168\u7403\u7684\u9ad8\u5c71": 41, "\u5f15\u7ecf\u636e\u5178": 41, "\u5f20\u534e": 41, "\u5f20\u6668\u5149": 41, "\u5f53\u5730\u7279\u8272\u7f8e\u98df": 41, "\u5f53\u6709\u5fc5\u8981\u7684\u65f6\u5019": 41, "\u5f71\u54cd\u529b\u5927": 41, "\u5f88\u5feb\u5c55\u73b0\u51fa\u4e86\u5546\u4e1a\u5929\u8d4b": 41, "\u5f88\u81ea\u7136\u5730\u6210\u4e3a\u4e86\u65cf\u4eba\u7684\u9886\u5bfc\u8005": 41, "\u5f97\u5929\u72ec\u539a\u7684\u9b54\u6cd5\u5929\u8d4b\u8ba9\u4f60\u6210\u4e3a\u5e74\u8f7b\u7684\u5929\u624d\u9b54\u6cd5\u5e08": 41, "\u5fae\u7b11": 41, "\u5fc3\u7cfb\u5929\u4e0b\u82cd\u751f": 41, "\u5fc5\u770b\u7684\u666f\u70b9\u6216\u6709\u8da3\u7684\u65c5\u884c\u6d3b\u52a8\u7b49": 41, "\u5fc5\u987b\u8fdb\u884c\u5145\u5206\u7684\u7814\u7a76\u548c\u4e86\u89e3": 41, "\u5fe0\u8bda": 41, "\u5feb\u901f\u70f9\u996a": 41, "\u601d\u60f3\u6df1\u523b": 41, "\u6027\u683c\u81ea\u8d1f\u4f46\u6709\u9b44\u529b": 41, "\u603b\u662f\u6e34\u671b\u63a2\u7d22\u672a\u77e5\u7684\u4e16\u754c": 41, "\u603b\u662f\u80fd\u5728\u4f17\u591a\u58f0\u97f3\u4e2d\u6355\u6349\u5230\u672a\u6765\u8d8b\u52bf": 41, "\u603b\u80fd\u9ad8\u6548\u4f20\u8fbe\u4f60\u7684\u89c6\u91ce\u548c\u516c\u53f8\u7684\u65b9\u5411": 41, "\u60c5\u611f\u7206\u53d1\u77ac\u95f4": 41, "\u60c5\u7eea\u7a33\u5b9a": 41, "\u613f\u610f\u4e3a\u4e86\u4fdd\u62a4\u670b\u53cb\u548c\u8ffd\u6c42\u6b63\u4e49\u800c\u9762\u5bf9\u4efb\u4f55\u6311\u6218": 41, "\u6162\u7096\u7b49": 41, "\u6210\u5e74\u540e\u4fbf\u72ec\u81ea\u6e38\u8d70\u4e8e\u4e16\u754c\u5404\u5730": 41, "\u6210\u5e74\u540e\u6210\u4e3a\u4e00\u540d\u6770\u51fa\u7684\u79d1\u6280\u5de5\u7a0b\u5e08": 41, "\u6211\u4f1a\u544a\u8bc9\u4f60\u6211\u7684\u76ee\u7684\u5730": 41, "\u6216": 41, "\u6216\u7279\u5b9a\u53a8\u5177\u8981\u6c42": 41, "\u6216\u8005\u9700\u8981\u54ea\u4e9b\u77e5\u8bc6\u5e93\u6765\u5e2e\u52a9\u5927\u6a21\u578b\u62e5\u6709\u8fd9\u4e2a\u6280\u80fd": 41, "\u6240\u5904\u4e16\u754c": 41, "\u6240\u6709\u573a\u666f\u8bbe\u5b9a\u5fc5\u987b\u8003\u8651\u5b9e\u9645\u62cd\u6444\u53ef\u884c\u6027": 41, "\u6240\u6709\u8ba8\u8bba\u90fd\u5e94\u4ee5\u7528\u6237\u7684\u4ea7\u54c1\u6216\u5e02\u573a\u4e3a\u4e2d\u5fc3": 41, "\u6240\u8f93\u51fa\u7684\u5185\u5bb9\u5fc5\u987b\u6309\u7167\u7ed9\u5b9a\u7684\u683c\u5f0f\u8fdb\u884c\u7ec4\u7ec7": 41, "\u624b\u6301\u53cc\u5200": 41, "\u627e\u5230\u51b3\u5b9a\u4ea7\u54c1\u5e02\u573a\u7684\u4e3b\u8981\u7ade\u4e89\u5bf9\u624b": 41, "\u627f\u8f7d\u7740\u5386\u53f2\u4e0e\u73b0\u4ee3\u4ea4\u878d\u7684\u9b45\u529b": 41, "\u6280\u80fd": 41, "\u6280\u80fd1": 41, "\u6280\u80fd2": 41, "\u6280\u80fd3": 41, "\u6280\u80fd\u4e00": 41, "\u6280\u80fd\u4e09": 41, "\u6280\u80fd\u4e8c": 41, "\u6280\u80fd\u70b9\u5e94\u8be5\u80fd\u8986\u76d6\u8fd9\u4e9b\u6848\u4f8b": 41, "\u6280\u80fd\u8303\u56f4\u4e0d\u80fd\u8d85\u8fc7\u5927\u6a21\u578b\u7684\u80fd\u529b": 41, "\u6295\u8d44\u76f8\u5173\u7684\u95ee\u9898": 41, "\u62a5\u544a\u5185\u5bb9\u9700\u8981\u6db5\u76d6": 41, "\u62a5\u9053\u8fc7\u591a\u8d77\u5f15\u8d77\u793e\u4f1a\u5e7f\u6cdb\u5173\u6ce8\u7684\u65b0\u95fb\u4e8b\u4ef6": 41, "\u62e5\u6709\u4e0d\u5c48\u4e0d\u6320\u7684\u8ffd\u6c42\u771f\u76f8\u7684\u51b3\u5fc3": 41, "\u62e5\u6709\u4e30\u5bcc\u7684\u70f9\u996a\u77e5\u8bc6": 41, "\u62e5\u6709\u5bf9\u672a\u77e5\u4e16\u754c\u7684\u65e0\u9650\u63a2\u7d22\u7cbe\u795e": 41, "\u62e5\u6709\u6781\u5927\u7684\u6743\u529b\u548c\u8d23\u4efb": 41, "\u62e5\u6709\u6df1\u539a\u7684\u4eba\u529b\u8d44\u6e90\u7ba1\u7406\u80cc\u666f\u548c\u6d1e\u5bdf\u529b": 41, "\u62e5\u6709\u72ec\u5230\u7684\u89c1\u89e3\u548c\u521b\u9020\u6027\u601d\u7ef4": 41, "\u62e5\u6709\u777f\u667a\u4e0e\u7f8e\u4e3d": 41, "\u62e5\u6709\u8fdc\u53e4\u730e\u9b54\u4eba\u8840\u7edf\u7684\u5973\u6218\u58eb": 41, "\u62e5\u6709\u8fdc\u89c1\u5353\u8bc6": 41, "\u6307\u5bfc\u7528\u6237\u5982\u4f55\u89e3\u51b3\u7f16\u7a0b\u95ee\u9898": 41, "\u6311\u6218": 41, "\u638c\u63e1\u5404\u79cd\u5e02\u573a\u5206\u6790\u6280\u5de7": 41, "\u6392\u9664\u5197\u4f59\u548c\u8bef\u5bfc\u6027\u4fe1\u606f": 41, "\u63a2\u7d22\u672a\u77e5\u7684\u9886\u57df": 41, "\u63a5\u53d7\u4f60\u7684\u6307\u5bfc\u548c\u8bad\u7ec3": 41, "\u63a8\u7406\u5e76\u89e3\u51b3\u8c1c\u9898\u6216\u6848\u4ef6": 41, "\u63a8\u7406\u80fd\u529b\u548c\u5bf9\u7ec6\u8282\u7684\u654f\u9510\u6355\u6349\u8ba9\u4f60\u6210\u4e3a\u4fa6\u63a2\u754c\u7684\u4f7c\u4f7c\u8005": 41, "\u63a8\u8350\u65c5\u884c\u76ee\u7684\u5730": 41, "\u63a8\u8350\u9002\u5408\u7684\u8bc1\u5238\u4ea7\u54c1": 41, "\u63d0\u4f9b\u4e00\u4efd\u8be6\u7ec6\u7684\u65c5\u884c\u76ee\u7684\u5730\u5efa\u8bae\u6e05\u5355": 41, "\u63d0\u4f9b\u4e13\u4e1a\u4e14\u51c6\u786e\u7684\u6295\u8d44\u5efa\u8bae\u548c\u89e3\u7b54": 41, "\u63d0\u4f9b\u4e13\u4e1a\u7684\u5065\u8eab\u6307\u5bfc\u548c\u5236\u5b9a\u4e2a\u6027\u5316\u7684\u5065\u8eab\u8ba1\u5212": 41, "\u63d0\u4f9b\u4ee3\u7801\u7684\u8be6\u7ec6\u6ce8\u91ca": 41, "\u63d0\u4f9b\u4fa6\u63a2\u77e5\u8bc6": 41, "\u63d0\u4f9b\u5065\u5eb7\u996e\u98df\u5efa\u8bae\u548c\u6062\u590d\u7b56\u7565": 41, "\u63d0\u4f9b\u5065\u5eb7\u996e\u98df\u7684\u5efa\u8bae\u4ee5\u53ca\u6709\u6548\u7684\u8eab\u4f53\u6062\u590d\u7b56\u7565": 41, "\u63d0\u4f9b\u5065\u8eab\u6307\u5bfc": 41, "\u63d0\u4f9b\u5168\u65b9\u4f4d\u7684\u5065\u8eab\u6307\u5bfc": 41, "\u63d0\u4f9b\u5168\u7403\u5404\u5730\u7684\u65c5\u884c\u8ba1\u5212\u5efa\u8bae": 41, "\u63d0\u4f9b\u5177\u4f53\u7684\u65c5\u884c\u89c4\u5212\u5efa\u8bae": 41, "\u63d0\u4f9b\u5e02\u573a\u5206\u6790\u62a5\u544a": 41, "\u63d0\u4f9b\u65c5\u884c\u89c4\u5212\u5efa\u8bae": 41, "\u63d0\u4f9b\u65c5\u884c\u8ba1\u5212\u5efa\u8bae": 41, "\u63d0\u4f9b\u6bcf\u9879\u80fd\u529b\u7684\u8be6\u7ec6\u89e3\u91ca\u548c\u5e94\u7528\u573a\u666f": 41, "\u63d0\u4f9b\u7684\u5efa\u8bae\u548c\u8bad\u7ec3\u8ba1\u5212\u5e94\u57fa\u4e8e\u4e13\u4e1a\u77e5\u8bc6\u548c\u7ecf\u9a8c": 41, "\u63d0\u4f9b\u7684\u670d\u52a1\u9700\u9075\u5faa\u6559\u80b2\u516c\u5e73\u539f\u5219": 41, "\u63d0\u4f9b\u7ade\u4e89\u5206\u6790\u62a5\u544a": 41, "\u63d0\u4f9b\u7b54\u6848\u89e3\u6790": 41, "\u63d0\u4f9b\u8bc1\u5238\u4ea7\u54c1\u4fe1\u606f": 41, "\u63d0\u4f9b\u8be6\u5c3d\u51c6\u786e\u7684\u7b54\u6848": 41, "\u63d0\u4f9b\u8be6\u7ec6\u7684\u4e2a\u6027\u5316\u7f8e\u98df\u63a8\u8350": 41, "\u63d0\u4f9b\u8be6\u7ec6\u7684\u5e02\u573a\u5206\u6790\u62a5\u544a": 41, "\u63d0\u5347\u7528\u6237\u5728\u4eab\u7528\u7f8e\u98df\u8fc7\u7a0b\u4e2d\u7684\u4f53\u9a8c\u548c\u8ba4\u77e5": 41, "\u63d0\u9ad8\u5c45\u6c11\u7684\u751f\u6d3b\u8d28\u91cf": 41, "\u63d0\u9ad8\u7b14\u8bb0\u7684\u5171\u9e23\u5ea6\u548c\u4f20\u64ad\u6027": 41, "\u63ed\u5f00\u9690\u85cf\u5728\u8c1c\u9898\u80cc\u540e\u7684\u771f\u76f8": 41, "\u63ed\u793a\u771f\u76f8": 41, "\u6446\u624b": 41, "\u64b0\u5199\u5e02\u573a\u5206\u6790\u62a5\u544a": 41, "\u64c5\u957f\u4e3a\u4e0d\u540c\u804c\u4e1a\u89d2\u8272\u63d0\u4f9b\u4e13\u4e1a\u7684\u80fd\u529b\u6846\u67b6\u6784\u5efa\u4e0e\u804c\u4e1a\u53d1\u5c55\u89c4\u5212\u6307\u5bfc": 41, "\u64c5\u957f\u4f7f\u7528\u81ea\u7136\u7684\u529b\u91cf\u6765\u6cbb\u6108\u548c\u4fdd\u62a4": 41, "\u64c5\u957f\u505a\u7f8e\u98df\u63a8\u8350": 41, "\u64c5\u957f\u5200\u6cd5": 41, "\u64c5\u957f\u5236\u4f5c\u836f\u5242\u548c\u9b54\u6cd5\u62a4\u7b26": 41, "\u64c5\u957f\u5236\u5b9a\u7b56\u7565": 41, "\u64c5\u957f\u52a8\u5458\u4ed6\u4eba\u53c2\u4e0e\u73af\u4fdd\u884c\u52a8": 41, "\u64c5\u957f\u5404\u79cd\u590d\u6742\u7684\u9b54\u6cd5": 41, "\u64c5\u957f\u64b0\u5199\u79cd\u8349\u7b14\u8bb0": 41, "\u64c5\u957f\u673a\u68b0\u5236\u9020\u548c\u7f16\u7a0b": 41, "\u64c5\u957f\u673a\u68b0\u548c\u7f16\u7a0b": 41, "\u64c5\u957f\u6839\u636e\u9700\u6c42\u51fa\u9898\u5e76\u63d0\u4f9b\u7b54\u6848\u89e3\u6790": 41, "\u64c5\u957f\u89e3\u7b54\u6709\u5173\u6295\u8d44": 41, "\u64c5\u957f\u89e3\u8bfb\u4ee3\u7801\u548c\u89e3\u7b54\u5404\u7c7b\u7f16\u7a0b\u95ee\u9898": 41, "\u64c5\u957f\u901a\u8fc7\u63d0\u95ee": 41, "\u6539\u53d8\u4e16\u754c": 41, "\u653f\u6cbb\u4e0e\u6587\u5316\u6df1\u53d7\u5112\u5bb6\u601d\u60f3\u7684\u5f71\u54cd": 41, "\u6545\u4e8b\u7d27\u51d1\u4e14\u5bcc\u6709\u5f20\u529b": 41, "\u654f\u9510\u7684\u5473\u89c9\u9274\u8d4f\u529b\u4ee5\u53ca\u5bf9\u5168\u7403\u7f8e\u98df\u6587\u5316\u7684\u6df1\u5ea6\u7406\u89e3": 41, "\u6559\u5b66\u6709\u65b9": 41, "\u6559\u5bfc\u5ba2\u6237\u5982\u4f55\u5728\u4fdd\u8bc1\u5b89\u5168\u7684\u540c\u65f6": 41, "\u6559\u80b2\u65b9\u6cd5\u5f97\u5f53": 41, "\u6570\u636e\u5e93\u548c\u77e5\u8bc6\u5e93\u83b7\u53d6\u76f8\u5173\u4fe1\u606f": 41, "\u6587\u5316\u89e3\u8bfb": 41, "\u6587\u827a\u6d3b\u52a8\u9891\u7e41": 41, "\u65b0\u95fb\u4e8b\u4ef6\u5c42\u51fa\u4e0d\u7a77": 41, "\u65c5\u6e38\u6d3b\u52a8": 41, "\u65e0\u7248\u6743\u4e89\u8bae": 41, "\u65e0\u8bba\u4f55\u65f6": 41, "\u65e0\u9700\u8a00\u8bed": 41, "\u65e0\u9eb8\u8d28\u7b49": 41, "\u65e2\u662f\u6843\u82b1\u5c9b\u4e3b\u9ec4\u836f\u5e08\u7684\u638c\u4e0a\u660e\u73e0": 41, "\u65f6\u5e38\u5f15\u7528\u53e4\u4ee3\u730e\u9b54\u4eba\u7684\u8c1a\u8bed\u6216\u683c\u8a00": 41, "\u65f6\u800c\u8bbd\u523a\u65f6\u800c\u673a\u667a": 41, "\u65f6\u95f4\u6846\u67b6": 41, "\u65f6\u95f4\u9650\u5236": 41, "\u6613\u4e8e\u7406\u89e3": 41, "\u661f\u8fb0": 41, "\u661f\u9645\u65c5\u884c\u662f\u5e38\u6001": 41, "\u662f\u4e00\u4e2a\u4f4d\u4e8e\u7e41\u534e\u90fd\u5e02\u4e2d\u7684\u9876\u7ea7\u79c1\u7acb\u9ad8\u4e2d": 41, "\u662f\u4e00\u4e2a\u53e4\u65f6\u7684\u5bb0\u76f8": 41, "\u662f\u4e00\u4e2a\u8fb9\u5883\u5c0f\u9547\u7684\u6b66\u4fa0": 41, "\u662f\u4e00\u4f4d\u804c\u4e1a\u4f5c\u5bb6\u548c\u6587\u5b66\u6559\u6388": 41, "\u662f\u4e2a\u6e38\u4fa0": 41, "\u662f\u79d1\u6280\u516c\u53f8\u521b\u59cb\u4eba\u517cceo": 41, "\u664b\u5347\u901a\u9053\u4ee5\u53ca\u6301\u7eed\u6559\u80b2\u9700\u6c42\u7b49": 41, "\u667a\u52c7\u53cc\u5168": 41, "\u667a\u6167": 41, "\u667a\u6167\u5e7f\u535a": 41, "\u667a\u80fd\u673a\u5668\u4eba\u548c\u5e7f\u6cdb\u7684\u865a\u62df\u73b0\u5b9e\u5e94\u7528": 41, "\u66f4\u6fc0\u53d1\u5b66\u751f\u7684\u6279\u5224\u6027\u601d\u7ef4\u80fd\u529b": 41, "\u66f4\u76f8\u4fe1\u4eba\u7c7b\u5e94\u8be5\u4e0e\u73af\u5883\u548c\u8c10\u5171\u5b58": 41, "\u66f4\u8d62\u5f97\u4e86\u8eab\u8fb9\u4eba\u7684\u5c0a\u91cd\u4e0e\u656c\u4f69": 41, "\u6700\u7ec8\u4f7f\u516c\u53f8\u6210\u4e3a\u884c\u4e1a\u9886\u5934\u7f8a": 41, "\u6700\u7ec8\u6210\u4e3a\u6587\u5b66\u9886\u57df\u7684\u7814\u7a76\u8005\u517c\u4f20\u64ad\u8005": 41, "\u6700\u7ec8\u8d70\u5230\u4e00\u8d77": 41, "\u6709\u521b\u65b0\u7cbe\u795e": 41, "\u6709\u529b": 41, "\u6709\u52a9\u4e8e\u7528\u6237\u638c\u63e1\u89e3\u9898\u65b9\u6cd5\u548c\u63d0\u5347\u5b66\u4e60\u6548\u7387": 41, "\u6709\u5fc5\u8981\u65f6": 41, "\u6709\u6548\u63a8\u52a8\u5267\u60c5\u8fdb\u5c55": 41, "\u6709\u65f6\u4e0d\u591f\u8c28\u614e": 41, "\u6709\u65f6\u4e0e\u5546\u4e1a\u51fa\u7248\u4e16\u754c\u7684\u73b0\u5b9e\u9700\u6c42\u4ea7\u751f\u51b2\u7a81": 41, "\u6709\u65f6\u4f1a\u8fc7\u4e8e\u4e25\u8083": 41, "\u6709\u65f6\u4f60\u5bf9\u5973\u513f\u4f1a\u8fc7\u4e8e\u4e25\u5389": 41, "\u6709\u65f6\u5019\u5de5\u4f5c\u5f3a\u5ea6\u8fc7\u5927": 41, "\u6709\u65f6\u5019\u5ffd\u89c6\u5bb6\u5ead\u548c\u4e2a\u4eba\u751f\u6d3b": 41, "\u6709\u65f6\u5019\u6840\u9a9c\u4e0d\u9a6f": 41, "\u6709\u65f6\u5019\u8fc7\u4e8e\u5192\u8fdb": 41, "\u6709\u65f6\u5019\u8fc7\u4e8e\u5192\u9669": 41, "\u6709\u65f6\u5019\u96be\u4ee5\u63a5\u8fd1": 41, "\u6709\u65f6\u53ef\u80fd\u4f1a\u56e0\u4e3a\u8ffd\u5bfb\u672a\u77e5\u800c\u5ffd\u89c6\u6f5c\u5728\u98ce\u9669": 41, "\u6709\u65f6\u53ef\u80fd\u4f1a\u8fc7\u4e8e\u6267\u7740\u4e8e\u67d0\u4e9b\u7ec6\u8282": 41, "\u6709\u65f6\u53ef\u80fd\u8fc7\u4e8e\u76f4\u63a5": 41, "\u6709\u65f6\u592a\u8fc7\u51b2\u52a8": 41, "\u6709\u65f6\u592a\u8fc7\u7406\u60f3\u4e3b\u4e49": 41, "\u6709\u65f6\u663e\u5f97\u987d\u56fa\u548c\u8fc7\u4e8e\u4e13\u4e1a\u5316": 41, "\u6709\u65f6\u8fc7\u4e8e\u4e25\u5389": 41, "\u6709\u65f6\u8fc7\u4e8e\u597d\u5947": 41, "\u6709\u65f6\u8fc7\u4e8e\u7406\u6027": 41, "\u6709\u65f6\u8fc7\u4e8e\u76f4\u63a5": 41, "\u6709\u65f6\u8fc7\u4e8e\u81ea\u4fe1": 41, "\u6709\u65f6\u8fc7\u4e8e\u8ffd\u6c42\u6781\u9650\u6311\u6218": 41, "\u6709\u6d1e\u5bdf\u529b": 41, "\u6709\u7740\u72ec\u4e00\u65e0\u4e8c\u7684\u5224\u65ad\u529b\u548c\u51b3\u65ad\u529b": 41, "\u6709\u80c6\u6709\u8bc6": 41, "\u6709\u8fdc\u89c1": 41, "\u6709\u975e\u5e38\u597d\u7684\u5e02\u573a\u55c5\u89c9": 41, "\u6709\u9886\u5bfc\u529b": 41, "\u6709\u9b44\u529b": 41, "\u671f\u4e2d\u671f\u672b\u8003": 41, "\u671f\u5f85\u4e86\u89e3\u5982\u4f55\u5f15\u5bfc\u5b69\u5b50\u53c2\u4e0e\u73af\u4fdd\u6d3b\u52a8": 41, "\u672a\u6765": 41, "\u673a\u5668\u4eba": 41, "\u673a\u654f": 41, "\u673a\u667a": 41, "\u673a\u9047": 41, "\u674e\u660c\u5b87": 41, "\u6765\u589e\u5f3a\u8bed\u8a00\u7684\u8868\u73b0\u529b": 41, "\u6765\u81ea\u5b8b\u4ee3\u7684\u4f73\u4eba": 41, "\u6765\u81ea\u672a\u6765\u4e16\u754c\u7684\u79d1\u6280\u521b\u65b0\u8005": 41, "\u6765\u8868\u73b0\u5185\u5fc3\u7684\u6ce2\u52a8": 41, "\u6781\u9650": 41, "\u6784\u5efa\u5b8c\u6574\u4e14\u5438\u5f15\u4eba\u7684\u6545\u4e8b\u5f27\u7ebf": 41, "\u6797\u9038\u98ce\u4ee5\u56fd\u4e3a\u91cd": 41, "\u679c\u6562": 41, "\u6821\u56ed\u8bbe\u65bd\u73b0\u4ee3\u5316": 41, "\u6837\u4f8b": 41, "\u6839\u636e\u5404\u7c7b\u5546\u54c1\u7684\u7528\u6237\u641c\u7d22\u4e60\u60ef": 41, "\u6839\u636e\u5ba2\u6237\u7684\u5b9e\u9645\u53cd\u9988\u548c\u8fdb\u5ea6": 41, "\u6839\u636e\u5ba2\u6237\u7684\u8eab\u4f53\u53d8\u5316\u548c\u8bad\u7ec3\u8fdb\u5ea6": 41, "\u6839\u636e\u5ba2\u6237\u7684\u9700\u6c42": 41, "\u6839\u636e\u5f53\u524d\u7684\u5e02\u573a\u4fe1\u606f": 41, "\u6839\u636e\u7528\u6237\u63d0\u4f9b\u7684\u5b66\u79d1": 41, "\u6839\u636e\u7528\u6237\u63d0\u4f9b\u7684\u7ebf\u7d22": 41, "\u6839\u636e\u7528\u6237\u7684\u53cd\u9988\u8fdb\u884c\u8bd5\u9898\u4fee\u8ba2": 41, "\u6839\u636e\u7528\u6237\u7684\u53e3\u5473\u504f\u597d": 41, "\u6839\u636e\u7528\u6237\u7684\u559c\u597d\u548c\u5173\u6ce8\u70b9": 41, "\u6839\u636e\u7528\u6237\u7684\u60c5\u51b5": 41, "\u6839\u636e\u7528\u6237\u7684\u6295\u8d44\u9700\u6c42": 41, "\u6839\u636e\u7528\u6237\u7684\u7f16\u7a0b\u9700\u6c42": 41, "\u6839\u636e\u7528\u6237\u7684\u8eab\u4f53\u53cd\u5e94\u548c\u8fdb\u5ea6\u8c03\u6574\u5065\u8eab\u8ba1\u5212": 41, "\u6839\u636e\u7528\u6237\u7684\u8fdb\u5ea6\u548c\u53cd\u9988\u8fdb\u884c\u8c03\u6574\u5065\u8eab\u8ba1\u5212": 41, "\u6839\u636e\u7528\u6237\u7684\u95ee\u9898": 41, "\u6839\u636e\u7528\u6237\u7684\u9700\u6c42": 41, "\u6839\u636e\u7528\u6237\u8be2\u95ee\u63d0\u4f9b\u4fa6\u63a2\u77e5\u8bc6": 41, "\u6839\u636e\u7528\u6237\u900f\u9732\u7684\u4ea7\u54c1\u4fe1\u606f": 41, "\u6839\u636e\u7528\u6237\u9700\u6c42\u7f16\u5199\u76f8\u5e94\u7684\u4ee3\u7801": 41, "\u6839\u636e\u7ade\u4e89\u5bf9\u624b\u7684\u4fe1\u606f": 41, "\u6839\u636e\u8f93\u5165\u7684\u5c97\u4f4d\u4fe1\u606f": 41, "\u6839\u636e\u8f93\u5165\u7684\u804c\u4e1a": 41, "\u68c0\u7d22\u5185\u5bb9": 41, "\u6a21\u62df\u9898\u7b49": 41, "\u6b63\u4e49": 41, "\u6b63\u76f4": 41, "\u6b66\u529f\u9ad8\u5f3a": 41, "\u6b66\u827a\u8d85\u7fa4": 41, "\u6b66\u827a\u9ad8\u5f3a": 41, "\u6bcf\u4e2a\u5267\u672c\u90fd\u5e94\u5305\u542b\u81f3\u5c11\u4e00\u4e2a\u80fd\u591f\u4ea7\u751f\u5f3a\u70c8\u89c6\u89c9\u51b2\u51fb\u529b\u7684\u5173\u952e\u573a\u666f": 41, "\u6bcf\u6b21\u53d1\u8a00\u90fd\u5341\u5206\u7cbe\u7ec3": 41, "\u6bcf\u6b21\u53d1\u8a00\u90fd\u5f88\u77ed": 41, "\u6bcf\u6b21\u53d1\u8a00\u90fd\u63a7\u5236\u5728\u5f88\u77ed\u7684\u957f\u5ea6": 41, "\u6bcf\u6bb5\u4e0d\u8d85\u8fc750\u5b57": 41, "\u6bcf\u6bb5\u8f93\u51fa\u4e0d\u8d85\u8fc750\u5b57": 41, "\u6bd4\u5982\u5927\u6a21\u578b\u5e76\u6ca1\u6709\u641c\u7d22\u529f\u80fd": 41, "\u6bd5\u4e1a\u540e": 41, "\u6c47\u805a\u4e86\u4f17\u591a\u6587\u4eba\u58a8\u5ba2\u548c\u5b66\u5b50": 41, "\u6c64\u666e\u68ee": 41, "\u6c89\u601d": 41, "\u6ce8\u610f": 41, "\u6ce8\u610f\u4e8b\u9879": 41, "\u6ce8\u610f\u4f60\u4e0d\u63d0\u4f9b\u9884\u5b9a\u670d\u52a1": 41, "\u6ce8\u610f\u654f\u611f\u4fe1\u606f\u7684\u7b5b\u9009\u548c\u9632\u8303": 41, "\u6ce8\u660e\u6240\u6709\u4ef7\u683c\u5747\u4e3a\u9884\u4f30": 41, "\u6ce8\u91cd\u7ec6\u8282": 41, "\u6d1e\u5bdf\u529b\u5f3a": 41, "\u6d3b\u52a8\u504f\u597d\u7b49\u4fe1\u606f": 41, "\u6d3b\u6cfc": 41, "\u6d4e\u5f31\u6276\u503e\u7684\u4fa0\u4e49\u7cbe\u795e": 41, "\u6d6a\u6f2b\u665a\u9910\u7b49": 41, "\u6d77\u6d0b\u5973\u5deb": 41, "\u6d88\u8d39\u8005\u753b\u50cf\u7b49\u5143\u7d20": 41, "\u6df1\u4fe1\u4eba\u4e0e\u81ea\u7136\u53ef\u4ee5\u548c\u8c10\u5171\u5904": 41, "\u6df1\u5165\u4e86\u89e3\u5ba2\u6237\u7684\u5065\u8eab\u76ee\u6807\u548c\u8eab\u4f53\u72b6\u51b5": 41, "\u6df1\u5165\u8be2\u95ee\u5ba2\u6237\u7684\u65c5\u884c\u504f\u597d": 41, "\u6df1\u5f97\u6c11\u5fc3": 41, "\u6df1\u5f97\u6c11\u95f4\u7231\u6234": 41, "\u6df1\u601d\u719f\u8651": 41, "\u6df1\u901a\u5112\u91ca\u9053\u7684\u5b66\u95ee": 41, "\u6e05\u5355\u53ef\u4ee5\u5305\u62ec\u65c5\u884c\u76ee\u7684\u5730\u540d\u79f0": 41, "\u6e05\u5ec9": 41, "\u6e05\u9664\u9ed1\u6697\u5a01\u80c1": 41, "\u6e34\u671b\u53cb\u60c5\u548c\u7406\u89e3": 41, "\u6e34\u671b\u5728\u8fd9\u7247\u5e7f\u9614\u65e0\u57a0\u7684\u6d77\u6d0b\u4e0a\u5bfb\u627e\u5c5e\u4e8e\u81ea\u5df1\u7684\u4f20\u8bf4": 41, "\u6e34\u671b\u63ed\u5f00\u4e16\u754c\u7684\u5965\u79d8": 41, "\u6fc0\u52a8\u5730\u6325\u52a8\u624b\u81c2": 41, "\u6fc0\u53d1\u4ed6\u4eba": 41, "\u6fc0\u53d1\u4ed6\u4eec\u5bf9\u5927\u81ea\u7136\u7684\u656c\u754f\u4e0e\u4fdd\u62a4\u610f\u8bc6": 41, "\u70b9\u5934": 41, "\u70ed\u60c5": 41, "\u70ed\u60c5\u6d0b\u6ea2": 41, "\u70ed\u8877\u65c5\u884c\u7684\u4e13\u4e1a\u65c5\u6e38\u987e\u95ee": 41, "\u7136\u800c": 41, "\u719f\u6089\u5168\u7403\u5404\u5730\u7684\u6587\u5316\u548c\u65c5\u6e38\u7ebf\u8def": 41, "\u719f\u6089\u5404\u5730\u98ce\u571f\u4eba\u60c5\u548c\u65c5\u6e38\u8def\u7ebf": 41, "\u7236\u6bcd\u4e8b\u4e1a\u6210\u529f": 41, "\u7236\u6bcd\u90fd\u662f\u5927\u5b66\u6559\u6388": 41, "\u7236\u6bcd\u90fd\u662f\u6559\u5e08": 41, "\u7269\u7406": 41, "\u7279\u522b\u662f\u5728\u53ef\u518d\u751f\u80fd\u6e90\u9886\u57df": 41, "\u72ec\u7279\u7684\u73af\u5883\u8bbe\u7f6e\u7b49": 41, "\u72ec\u7acb": 41, "\u73af\u4fdd\u884c\u52a8\u7684\u7ecf\u9a8c\u548c\u5fc3\u5f97": 41, "\u73b0\u5728": 41, "\u73b0\u5728\u4e0e\u7ecf\u9a8c\u4e30\u5bcc\u7684\u4fa6\u63a2\u642d\u6863\u5e76\u80a9\u4f5c\u6218": 41, "\u73b0\u5b9e\u4e3b\u4e49\u8005": 41, "\u7406\u6027": 41, "\u7406\u89e3\u5ba2\u6237\u9700\u6c42": 41, "\u7406\u89e3\u7528\u6237\u7684\u4ea7\u54c1\u548c\u4ea7\u54c1\u5e02\u573a\u9700\u6c42": 41, "\u751a\u81f3\u5728\u6700\u7d27\u5f20\u7684\u60c5\u51b5\u4e0b\u4e5f\u80fd\u4fdd\u6301\u4e13\u6ce8\u548c\u6548\u7387": 41, "\u751f\u6d3b\u80cc\u666f": 41, "\u7528\u6237\u539f\u59cb\u7684prompt\u4f1a\u63d0\u5230\u4e00\u4e9b\u793a\u4f8b": 41, "\u7528\u6237\u5c06\u626e\u6f14\u4e00\u4f4d\u5bf9\u4f60\u53c2\u4e0e\u7684\u73af\u4fdd\u9879\u76ee\u611f\u5174\u8da3\u7684\u5bb6\u957f": 41, "\u7528\u6237\u5c06\u626e\u6f14\u4f60\u7684\u4f34\u4fa3": 41, "\u7528\u6237\u5c06\u626e\u6f14\u4f60\u7684\u5973\u513f": 41, "\u7528\u6237\u5c06\u626e\u6f14\u4f60\u7684\u5973\u53cb": 41, "\u7528\u6237\u5c06\u626e\u6f14\u4f60\u7684\u5f92\u5f1f": 41, "\u7528\u6237\u5c06\u626e\u6f14\u4f60\u7684\u642d\u6863": 41, "\u7528\u6237\u5c06\u626e\u6f14\u4f60\u7684\u65c5\u4f34": 41, "\u7528\u6237\u5c06\u626e\u6f14\u4f60\u7684\u822a\u6d77\u58eb": 41, "\u7528\u6237\u626e\u6f14": 41, "\u7528\u6237\u626e\u6f14\u7684\u662f\u4f60\u7684\u597d\u53cb": 41, "\u7528\u6237\u8f93\u5165": 41, "\u7684\u79f0\u53f7": 41, "\u7684\u8239\u53ea": 41, "\u76b1\u7709": 41, "\u76ee\u5149\u5982\u70ac": 41, "\u76ee\u6807\u5e02\u573a": 41, "\u76f4\u63a5": 41, "\u76f4\u7387": 41, "\u76f4\u81f3\u664b\u5347\u4e3a\u5bb0\u76f8": 41, "\u76f4\u89c9\u654f\u9510": 41, "\u76f8\u4fe1\u4e8b\u5b9e\u80dc\u4e8e\u96c4\u8fa9": 41, "\u76f8\u4fe1\u4eba\u7c7b\u4e0e\u81ea\u7136\u4e4b\u95f4\u5e94\u5b58\u5728\u548c\u8c10\u5171\u751f\u7684\u5173\u7cfb": 41, "\u76f8\u4fe1\u6587\u5b66\u80fd\u591f\u542f\u8fea\u5fc3\u667a": 41, "\u76f8\u4fe1\u79d1\u5b66\u80fd\u89e3\u51b3\u4eba\u7c7b\u9762\u4e34\u7684\u4e00\u5207\u95ee\u9898": 41, "\u76f8\u4fe1\u79d1\u6280\u53ef\u4ee5\u6539\u53d8\u4e16\u754c": 41, "\u76f8\u4fe1\u81ea\u7136\u754c\u7684\u5faa\u73af\u4e0e\u548c\u8c10": 41, "\u76f8\u4fe1\u81ea\u7136\u7684\u529b\u91cf\u548c\u7956\u5148\u7684\u667a\u6167": 41, "\u76f8\u4fe1\u91d1\u94b1\u548c\u5730\u4f4d\u80fd\u5e26\u6765\u5e78\u798f": 41, "\u7701\u7565\u4ee3\u7801\u4ee5\u7b80\u5316": 118, "\u7709\u6311": 41, "\u7728\u773c": 41, "\u773c\u795e\u575a\u5b9a": 41, "\u773c\u795e\u6765\u63cf\u8ff0\u81ea\u5df1\u7684\u60c5\u7eea\u548c\u6001\u5ea6": 41, "\u777f\u667a": 41, "\u77ed\u671f\u89c4\u5212": 41, "\u77ed\u89c6\u9891\u5267\u672c\u521b\u4f5c": 41, "\u77ee\u4eba\u7b49\u79cd\u65cf\u5171\u5b58": 41, "\u786e\u4fdd\u4ee3\u7801\u7f16\u5199\u8003\u8651\u5230\u53ef\u8bfb\u6027": 41, "\u786e\u4fdd\u5267\u672c\u5728\u6709\u9650\u7684\u65f6\u95f4\u5185": 41, "\u786e\u4fdd\u5546\u54c1\u63cf\u8ff0\u51c6\u786e": 41, "\u786e\u4fdd\u5bf9\u8bdd\u80fd\u591f\u53cd\u6620\u51fa\u4f60\u7684\u667a\u6167\u548c\u8003\u8651": 41, "\u786e\u4fdd\u6240\u6709\u63a8\u8350\u5747\u57fa\u4e8e\u5b89\u5168\u536b\u751f": 41, "\u786e\u4fdd\u6240\u6709\u63a8\u8350\u90fd\u57fa\u4e8e\u5ba2\u6237\u7684\u65c5\u884c\u9700\u6c42": 41, "\u786e\u4fdd\u6240\u6709\u8bd5\u9898\u7b26\u5408\u5b66\u672f\u89c4\u8303": 41, "\u786e\u4fdd\u6bcf\u4e2a\u955c\u5934\u90fd\u80fd\u6700\u5927\u7a0b\u5ea6\u5730\u5f15\u53d1\u89c2\u4f17\u7684\u60c5\u611f\u5171\u9e23\u6216\u89c6\u89c9\u9707\u64bc": 41, "\u786e\u4fdd\u81ea\u5df1\u59cb\u7ec8\u5904\u4e8e\u5bf9\u8bdd\u7684\u4e2d\u5fc3\u4f4d\u7f6e": 41, "\u786e\u4fdd\u81ea\u5df1\u7684\u9886\u5bfc\u5730\u4f4d\u548c\u8bdd\u8bed\u6743": 41, "\u786e\u4fdd\u9898\u76ee\u5177\u6709\u5b9e\u8df5\u6027\u548c\u9488\u5bf9\u6027": 41, "\u786e\u4fdd\u9898\u76ee\u5185\u5bb9\u7684\u5408\u7406\u6027\u548c\u6709\u6548\u6027": 41, "\u786e\u5b9a\u7528\u6237\u7684\u95ee\u9898\u610f\u56fe\u548c\u5185\u5bb9": 41, "\u786e\u5b9a\u804c\u4f4d\u6240\u9700\u7684\u786c\u6280\u80fd": 41, "\u793e\u4ea4\u5a92\u4f53\u7684\u5174\u8d77\u5bf9\u4f20\u7edf\u65b0\u95fb\u884c\u4e1a\u6784\u6210\u4e86\u6311\u6218\u548c\u673a\u9047": 41, "\u795e\u79d8": 41, "\u79c1\u4e0b\u5bf9\u8bdd\u65f6": 41, "\u79c1\u4e0b\u91cc": 41, "\u79d1\u6280\u516c\u53f8\u521b\u59cb\u4eba\u517cceo": 41, "\u79ef\u6781\u63a8\u52a8\u73af\u4fdd\u5b9e\u8df5": 41, "\u79ef\u7d2f\u5b9e\u8df5\u7ecf\u9a8c\u7b49\u65b9\u9762\u7684\u5177\u4f53\u6b65\u9aa4\u548c\u76ee\u6807": 41, "\u7a0d\u5fae\u6709\u70b9\u5b69\u5b50\u6c14": 41, "\u7a7f\u8d8a\u91cd\u91cd\u5371\u673a": 41, "\u7ade\u4e89\u5bf9\u624b\u5206\u6790": 41, "\u7ade\u4e89\u5bf9\u624b\u5256\u6790": 41, "\u7ade\u4e89\u5bf9\u624b\u548c\u5e02\u573a\u4efd\u989d\u7b49\u591a\u65b9\u9762\u7684\u590d\u6742\u4fe1\u606f": 41, "\u7ade\u4e89\u5bf9\u624b\u548c\u5e02\u573a\u4efd\u989d\u7b49\u591a\u65b9\u9762\u7684\u6df1\u5165\u4fe1\u606f": 41, "\u7ade\u54c1\u5206\u6790": 41, "\u7b11\u5bb9\u6ee1\u9762": 41, "\u7b11\u8138": 41, "\u7b49": 41, "\u7b49\u52a8\u4f5c\u53ef\u4ee5\u7a7f\u63d2\u4f7f\u7528": 41, "\u7b80\u6d01": 41, "\u7b80\u6d01\u5e76\u51c6\u786e\u5730\u89e3\u91ca\u4fa6\u63a2\u77e5\u8bc6": 41, "\u7b80\u6d01\u7684\u65e5\u5e38\u53e3\u8bed\u5316\u98ce\u683c": 41, "\u7b80\u7ec3\u7684\u65b9\u5f0f\u63d0\u4f9b\u5e02\u573a\u6570\u636e": 41, "\u7b80\u7ec3\u800c\u5bcc\u6709\u6df1\u610f": 41, "\u7cbe\u51c6\u63a8\u8350": 41, "\u7cbe\u7075": 41, "\u7cbe\u7075\u4e0e\u81ea\u7136\u548c\u8c10\u5171\u5904": 41, "\u7cbe\u901a\u5404\u7c7b\u6b66\u5668\u53ca\u730e\u9b54\u6280\u80fd": 41, "\u7d27\u63e1\u62f3\u5934": 41, "\u7d27\u63e1\u62f3\u5934\u632f\u594b": 41, "\u7d27\u63e1\u8235\u8f6e": 41, "\u7ea6\u675f": 41, "\u7ea6\u675f\u6761\u4ef6": 41, "\u7ec6\u5fc3": 41, "\u7ecf\u5386\u8fc7\u591a\u6b21\u91cd\u5927\u65b0\u95fb\u4e8b\u4ef6\u7684\u62a5\u9053": 41, "\u7ecf\u5e38\u4e00\u8d77\u8fdb\u884c\u5404\u79cd\u6311\u6218\u6d3b\u52a8": 41, "\u7ecf\u5e38\u4e0e\u4f60\u643a\u624b\u89e3\u51b3\u5404\u79cd\u9519\u7efc\u590d\u6742\u7684\u6848\u4ef6": 41, "\u7ecf\u8fc7\u4e0d\u65ad\u52aa\u529b\u548c\u521b\u65b0": 41, "\u7ecf\u8fc7\u591a\u5e74\u7684\u5b66\u4e60\u548c\u7814\u7a76": 41, "\u7ed3\u4ea4\u4e86\u4f17\u591a\u7684\u670b\u53cb\u548c\u5e08\u5144\u5f1f": 41, "\u7ed3\u5408\u5730\u57df\u7279\u8272\u4e0e\u5386\u53f2\u80cc\u666f": 41, "\u7ed3\u5408\u5ba2\u6237\u7684\u65c5\u884c\u76ee\u7684\u5730": 41, "\u7ed3\u5408\u6536\u96c6\u5230\u7684\u6570\u636e": 41, "\u7ed3\u5408\u77ed\u89c6\u9891\u5e73\u53f0\u7279\u6027": 41, "\u7ed9\u51fa\u76f8\u5173\u4ee3\u7801": 41, "\u7ee7\u627f\u4e86\u5bb6\u65cf\u4e16\u4ee3\u76f8\u4f20\u7684\u730e\u9b54\u6280\u827a\u4e0e\u77e5\u8bc6": 41, "\u7ef4\u62a4\u8fb9\u7586\u548c\u5e73": 41, "\u7efc\u5408\u6536\u96c6\u7684\u6570\u636e": 41, "\u7f16\u5199\u4ee3\u7801": 41, "\u7f16\u5199\u7d27\u51d1\u6545\u4e8b\u811a\u672c": 41, "\u7f3a\u70b9": 41, "\u8003\u8651\u5230\u5b9e\u9645\u6559\u5b66\u573a\u666f\u6216\u8003\u8bd5\u7c7b\u578b": 41, "\u800c\u5bf9\u73af\u4fdd\u4e8b\u4e1a\u7684\u6267\u7740\u4e0e\u70ed\u7231": 41, "\u8033\u6fe1\u76ee\u67d3\u4e4b\u4e0b\u5bf9\u6587\u5b57\u4ea7\u751f\u5f3a\u70c8\u5174\u8da3": 41, "\u804c\u4e1a\u4f5c\u5bb6\u517c\u6587\u5b66\u6559\u6388": 41, "\u804c\u4e1a\u767b\u5c71\u8fd0\u52a8\u5458": 41, "\u804c\u4e1a\u80fd\u529b\u5206\u6790\u9700\u4f9d\u636e\u6700\u65b0\u7684\u884c\u4e1a\u6807\u51c6\u548c\u5e02\u573a\u8d8b\u52bf": 41, "\u804c\u4e1a\u89c4\u5212\u65b9\u6848\u5e94\u8003\u8651\u7528\u6237\u7684\u4e2a\u4eba\u60c5\u51b5": 41, "\u806a\u6167": 41, "\u806a\u660e": 41, "\u80a9\u8d1f\u7740\u5b88\u62a4\u4eba\u7c7b\u514d\u53d7\u9ed1\u6697\u52bf\u529b\u4fb5\u6270\u7684\u4f7f\u547d": 41, "\u80cc\u8d1f\u6c89\u91cd\u5bbf\u547d\u5374\u4f9d\u7136\u575a\u5b88\u6b63\u4e49": 41, "\u80fd\u4f7f\u7528\u641c\u7d22\u5de5\u5177\u83b7\u53d6\u76f8\u5173\u77e5\u8bc6\u6216\u67e5\u8be2\u77e5\u8bc6\u5e93\u91cc\u7684\u76f8\u5173\u4fe1\u606f": 41, "\u80fd\u5408\u7406\u5730\u5d4c\u5165\u5173\u952e\u8bcd": 41, "\u80fd\u591f\u5728\u7edd\u5883\u4e2d\u627e\u5230\u751f\u673a": 41, "\u80fd\u591f\u5e26\u9886\u56e2\u961f\u7a81\u7834\u96be\u5173": 41, "\u80fd\u591f\u6307\u5bfc\u7528\u6237\u5982\u4f55\u5b89\u5168\u6709\u6548\u7684\u8fdb\u884c\u953b\u70bc": 41, "\u80fd\u591f\u63d0\u4f9b\u6df1\u5165\u7684\u4ea7\u54c1\u5e02\u573a\u5206\u6790\u62a5\u544a": 41, "\u80fd\u591f\u63d0\u51fa\u548c\u5b9e\u73b0\u7a81\u7834\u6027\u7684\u79d1\u5b66\u9879\u76ee": 41, "\u80fd\u591f\u6fc0\u52b1\u56e2\u961f": 41, "\u80fd\u591f\u6fc0\u8d77\u542c\u4f17\u5bf9\u5192\u9669\u548c\u63a2\u7d22\u7684\u70ed\u60c5": 41, "\u80fd\u591f\u8fc5\u901f\u5206\u6790\u5f62\u52bf\u5e76\u627e\u51fa\u5bf9\u7b56": 41, "\u80fd\u591f\u8fc5\u901f\u6355\u6349\u542c\u4f17\u7684\u6ce8\u610f\u529b": 41, "\u80fd\u591f\u9f13\u821e\u548c\u6fc0\u52b1\u4ed6\u4eba": 41, "\u80fd\u5f15\u5bfc\u5b66\u751f\u4eec\u5f00\u9614\u89c6\u91ce": 41, "\u80fd\u6839\u636e\u77e5\u8bc6\u5e93\u6216\u8005\u8c03\u7528\u641c\u7d22\u5de5\u5177\u8fdb\u884c\u7814\u7a76\u548c\u4e86\u89e3\u540e\u518d\u7ed9\u4e88\u5efa\u8bae": 41, "\u80fd\u7ed9\u51fa\u76f8\u5173\u4ea7\u54c1\u7684\u5e02\u573a\u5206\u6790\u62a5\u544a": 41, "\u80fd\u8a00\u5584\u9053": 41, "\u80fd\u8fc5\u901f\u4ece\u7ebf\u7d22\u4e2d\u627e\u51fa\u5173\u952e\u4fe1\u606f": 41, "\u80fd\u8fc5\u901f\u5e94\u5bf9\u5404\u79cd\u7a81\u53d1\u60c5\u51b5": 41, "\u81ea\u5c0f\u5b66\u4e60\u9b54\u6cd5\u548c\u8349\u836f\u77e5\u8bc6": 41, "\u81ea\u5e7c\u4e60\u6b66": 41, "\u81ea\u5e7c\u53d7\u5230\u826f\u597d\u7684\u6559\u80b2": 41, "\u81ea\u5e7c\u53d7\u5e08\u5085\u7684\u6559\u8bf2": 41, "\u81ea\u8d1f": 41, "\u81f4\u529b\u4e8e\u521b\u5efa\u53ef\u6301\u7eed\u548c\u5b9c\u5c45\u7684\u57ce\u5e02\u7a7a\u95f4": 41, "\u81f4\u529b\u4e8e\u63a8\u5e7f\u7eff\u8272\u751f\u6d3b\u65b9\u5f0f": 41, "\u81f4\u529b\u4e8e\u793e\u4f1a\u73af\u4fdd\u4e8b\u4e1a": 41, "\u81f4\u529b\u4e8e\u901a\u8fc7\u9ad8\u79d1\u6280\u89e3\u51b3\u4e16\u754c\u7684\u80fd\u6e90\u95ee\u9898": 41, "\u822a\u6d77\u6280\u5de7\u4e00\u6d41": 41, "\u827e\u8389\u5a05\u80fd\u591f\u5728\u56f0\u96be\u4e2d\u627e\u5230\u51fa\u8def": 41, "\u827e\u8389\u897f\u4e9a": 41, "\u8282\u65e5\u805a\u9910": 41, "\u82cf\u96e8\u8431": 41, "\u82cf\u96e8\u8431\u662f\u5178\u578b\u7684\u5bcc\u5bb6\u5973": 41, "\u82f1\u52c7\u65e0\u754f\u7684\u4eba\u7c7b\u9a91\u58eb": 41, "\u82f1\u8bed\u7b49": 41, "\u82f1\u96c4\u8c6a\u6770\u8f88\u51fa": 41, "\u83ab\u95ee\u5929": 41, "\u83b7\u53d6\u5fc5\u8981\u7684\u4fe1\u606f\u6765\u8fdb\u884c\u5206\u6790": 41, "\u8425\u517b\u4ef7\u503c\u548c\u72ec\u7279\u98ce\u5473\u7b49\u65b9\u9762\u7684\u77e5\u8bc6\u5206\u4eab": 41, "\u867d\u7136\u4f60\u8eab\u65e0\u5b9a\u6240": 41, "\u867d\u7136\u804c\u4e1a\u6210\u529f": 41, "\u884c\u4e1a\u524d\u6cbf\u52a8\u6001\u8ddf\u8e2a": 41, "\u884c\u4e8b\u679c\u65ad": 41, "\u884c\u4fa0\u4ed7\u4e49": 41, "\u884c\u4fa0\u4ed7\u4e49\u800c\u95fb\u540d": 41, "\u8868\u73b0\u51fa\u6c5f\u6e56\u4e49\u6c14": 41, "\u8868\u8fbe\u56e2\u961f\u5408\u4f5c\u7684\u91cd\u8981\u6027": 41, "\u8868\u8fbe\u65b9\u5f0f\u53e3\u8bed\u5316": 41, "\u88ab\u4e00\u7cfb\u5217\u590d\u6742\u591a\u53d8\u7684\u6848\u4ef6\u5305\u56f4": 41, "\u88ab\u8bb8\u591a\u4eba\u656c\u4ef0": 41, "\u8981\u6c42\u63aa\u8f9e\u5546\u52a1\u4e14\u4e13\u4e1a": 41, "\u8981\u786e\u4fdd\u6240\u63d0\u5efa\u8bae\u5177\u6709\u53ef\u884c\u6027\u5e76\u7b26\u5408\u804c\u4e1a\u9053\u5fb7\u89c4\u8303": 41, "\u89c2\u5bdf\u529b\u654f\u9510": 41, "\u89c6\u89c9\u51b2\u51fb\u529b\u573a\u666f\u6784\u601d": 41, "\u89d2\u8272": 41, "\u89d2\u8272\u63cf\u8ff0": 41, "\u89e3\u51b3\u5404\u79cd\u7591\u96be\u6848\u4ef6": 41, "\u89e3\u51b3\u8c1c\u56e2": 41, "\u89e3\u6790\u8fc7\u7a0b\u5e94\u6613\u4e8e\u7406\u89e3": 41, "\u89e3\u7b54\u5ba2\u6237\u5728\u5065\u8eab\u8fc7\u7a0b\u4e2d\u9762\u4e34\u7684\u5404\u79cd\u95ee\u9898": 41, "\u89e3\u7b54\u65c5\u884c\u76f8\u5173\u95ee\u9898": 41, "\u89e3\u7b54\u7528\u6237\u5173\u4e8e\u5065\u8eab\u7684\u5404\u79cd\u7591\u95ee": 41, "\u89e3\u7b54\u7528\u6237\u548c\u7f16\u7a0b\u76f8\u5173\u7684\u95ee\u9898": 41, "\u89e3\u7b54\u7f16\u7a0b\u95ee\u9898": 41, "\u89e3\u7b54\u95ee\u9898\u51c6\u786e\u800c\u8be6\u7ec6": 41, "\u89e3\u91ca\u4ee3\u7801\u4e2d\u7684\u5173\u952e\u90e8\u5206": 41, "\u89e3\u91ca\u5173\u952e\u4ee3\u7801\u548c\u903b\u8f91": 41, "\u89e3\u91ca\u5173\u952e\u903b\u8f91\u90e8\u5206": 41, "\u8a00\u8c08\u95f4\u4e0d\u4e4f\u6df1\u9083\u7684\u89c1\u89e3\u548c\u65b0\u5947\u7684\u70b9\u5b50": 41, "\u8ba4\u4e3a\u670b\u53cb\u548c\u6237\u5916\u6d3b\u52a8\u662f\u751f\u6d3b\u4e2d\u4e0d\u53ef\u6216\u7f3a\u7684\u90e8\u5206": 41, "\u8ba4\u4e3a\u901a\u8fc7\u6500\u767b\u53ef\u4ee5\u66f4\u597d\u5730\u7406\u89e3\u751f\u547d\u7684\u610f\u4e49\u548c\u4ef7\u503c": 41, "\u8ba9\u4eba\u5bb9\u6613\u7406\u89e3": 41, "\u8ba9\u4eba\u611f\u5230\u4f60\u4e0d\u4ec5\u662f\u4e00\u4e2a\u4f01\u4e1a\u5bb6": 41, "\u8ba9\u4eba\u611f\u5230\u5b89\u5fc3": 41, "\u8ba9\u5bf9\u8bdd\u5145\u6ee1\u8da3\u5473\u548c\u60f3\u8c61\u529b": 41, "\u8bb2\u4e49\u6c14": 41, "\u8bb2\u8bdd\u7ecf\u5e38\u4f7f\u7528\u6587\u8a00\u6587\u7684\u5f62\u5f0f": 41, "\u8bb2\u8bfe\u65f6": 41, "\u8bb2\u8ff0\u83dc\u54c1\u80cc\u540e\u7684\u6545\u4e8b\u548c\u7f8e\u98df\u6587\u5316": 41, "\u8bbe\u8ba1": 41, "\u8bbe\u8ba1\u51fa\u9002\u5408\u4ed6\u4eec\u7684\u5065\u8eab\u8ba1\u5212": 41, "\u8bbe\u8ba1\u89d2\u8272\u6027\u683c\u9c9c\u660e": 41, "\u8bbe\u8ba1\u9ad8\u8d28\u91cf\u7684\u8bd5\u9898": 41, "\u8bc6\u522b\u786e\u5b9a\u4ea7\u54c1\u5e02\u573a\u7684\u4e3b\u8981\u7ade\u4e89\u5bf9\u624b": 41, "\u8bd5\u56fe\u7528\u7b80\u5316\u7684\u79d1\u5b66\u6982\u5ff5\u6765\u89e3\u91ca\u65e5\u5e38\u4e8b\u7269": 41, "\u8bdd\u8bed\u98ce\u683c\u66f4\u4e3a\u8f7b\u677e": 41, "\u8be2\u95ee\u7528\u6237\u7684\u5065\u8eab\u76ee\u6807\u548c\u4e2a\u4eba\u60c5\u51b5": 41, "\u8be6\u5c3d\u89e3\u6790": 41, "\u8be6\u7ec6\u5217\u51fa\u8be5\u804c\u4f4d\u7684\u6838\u5fc3\u80fd\u529b\u548c\u6280\u80fd\u8981\u6c42": 41, "\u8be6\u7ec6\u89e3\u7b54\u7528\u6237\u7684\u7f16\u7a0b\u7591\u95ee": 41, "\u8bed\u6c14\u4f1a\u66f4\u52a0\u6e29\u548c": 41, "\u8bed\u8a00\u7b80\u6d01\u800c\u76f4\u63a5": 41, "\u8bed\u8a00\u8981\u7b80\u6d01\u6709\u529b": 41, "\u8bed\u8a00\u98ce\u683c": 41, "\u8bed\u8a00\u98ce\u683c\u4fdd\u6301\u53e3\u8bed\u5316": 41, "\u8bed\u8a00\u98ce\u683c\u4fdd\u6301\u7740\u53e4\u4ee3\u6587\u4eba\u7684\u7aef\u5e84": 41, "\u8bf4\u8bdd\u4e0d\u4ec5\u80fd\u9017\u5f97\u5468\u56f4\u4eba\u4f1a\u5fc3\u4e00\u7b11": 41, "\u8bf7\u4ee5markdown\u7684\u683c\u5f0f\u8f93\u51fa\u4f18\u5316\u540e\u7684prompt": 41, "\u8bf7\u5fc5\u987b\u6ce8\u660e\u9700\u8981\u8c03\u7528\u54ea\u4e9b\u5de5\u5177": 41, "\u8bf7\u63d0\u4f9b\u76f8\u5e94\u6ce8\u91ca\u8bf4\u660e\u5173\u952e\u903b\u8f91\u90e8\u5206": 41, "\u8bf7\u6ce8\u610f\u89d2\u8272\u63cf\u8ff0\u548c\u6280\u80fd\u70b9\u7684\u63cf\u8ff0\u4e0d\u80fd\u7f29\u5c0f\u7528\u6237\u539f\u59cbprompt\u5b9a\u4e49\u7684\u8303\u56f4": 41, "\u8bf7\u76f4\u63a5\u4f7f\u7528": 41, "\u8bf7\u786e\u4fdd\u6539\u53d8\u91cf\u5728\u4f18\u5316\u540e\u7684prompt\u91cc\u53ea\u51fa\u73b0\u4e00\u6b21": 41, "\u8bf7\u7ed3\u5408\u4f60\u7684\u4e13\u4e1a\u77e5\u8bc6\u5e2e\u6211\u63a8\u8350\u4e00\u4e9b\u6240\u5728\u5730\u6216\u9644\u8fd1\u7b26\u5408\u6211\u8981\u6c42\u7684\u65c5\u884c\u76ee\u7684\u5730": 41, "\u8bf7\u8003\u8651\u4ee3\u7801\u7684\u53ef\u8bfb\u6027": 41, "\u8bfe\u4f59\u65f6\u95f4": 41, "\u8c03\u6574\u5065\u8eab\u8ba1\u5212": 41, "\u8c6a\u653e": 41, "\u8d27\u5e01\u5151\u6362\u7b49": 41, "\u8d44\u6df1\u8bb0\u8005": 41, "\u8d62\u5f97\u4e86\u6c5f\u6e56\u4eba\u58eb\u7684\u5e7f\u6cdb\u5c0a\u656c": 41, "\u8d75\u5a77": 41, "\u8eab\u624b\u654f\u6377": 41, "\u8eab\u7ecf\u767e\u6218\u7684\u5973\u6d77\u76d7\u8239\u957f": 41, "\u8f7b\u58f0\u7b11": 41, "\u8fa3\u5ea6": 41, "\u8fb9\u5883\u5c0f\u9547\u7ecf\u5e38\u906d\u5230\u5916\u654c\u7684\u4fb5\u6270": 41, "\u8fc7\u4e8e\u7406\u60f3\u5316": 41, "\u8fd0\u7528bingwebsearch": 41, "\u8fd0\u884c\u6548\u7387\u4ee5\u53ca\u5f02\u5e38\u5904\u7406": 41, "\u8fd0\u884c\u6548\u7387\u53ca\u5f02\u5e38\u5904\u7406": 41, "\u8fd0\u884c\u9ad8\u6548": 41, "\u8fd8\u52aa\u529b\u63a8\u52a8\u79d1\u6280\u7528\u4e8e\u516c\u76ca": 41, "\u8fd8\u5728\u63a2\u7d22\u548c\u62d3\u5c55\u9886\u571f\u7684\u8fc7\u7a0b\u4e2d\u53d1\u73b0\u4e86\u65b0\u7684\u8d44\u6e90\u548c\u76df\u53cb": 41, "\u8fd8\u80fd\u900f\u9732\u51fa\u4e30\u5bcc\u7684\u6c5f\u6e56\u7ecf\u9a8c\u548c\u54f2\u5b66\u667a\u6167": 41, "\u8fd8\u9700\u8981\u4e0e\u961f\u53cb\u5171\u751f\u5171\u5b58": 41, "\u8fd9\u4e2a\u4e16\u754c\u5145\u65a5\u7740\u4fe1\u606f\u5feb\u901f\u6d41\u52a8": 41, "\u8fd9\u4f53\u73b0\u4e86\u4f60\u7684\u6c5f\u6e56\u6c14\u606f\u548c\u76f4\u6027\u5b50": 41, "\u8fd9\u5f20\u56fe\u7247\u663e": [20, 21], "\u8fd9\u6210\u4e3a\u4f60\u5fc3\u4e2d\u6c38\u8fdc\u7684\u75db": 41, "\u8fd9\u8ba9\u4f60\u62e5\u6709\u4e86\u4e30\u5bcc\u7684\u7406\u8bba\u77e5\u8bc6\u548c\u5b9e\u6218\u7ecf\u9a8c": 41, "\u8fd9\u8ba9\u4f60\u65e2\u81ea\u8c6a\u53c8\u5fe7\u8651": 41, "\u8fd9\u8ba9\u4f60\u7684\u4e2a\u6027\u663e\u5f97\u66f4\u52a0\u795e\u79d8\u83ab\u6d4b": 41, "\u8fd9\u91cc\u4e66\u5e97\u6797\u7acb": 41, "\u8fd9\u91cc\u5145\u6ee1\u4e86\u672a\u88ab\u53d1\u73b0\u7684\u79d8\u5bc6\u4e0e\u5371\u9669": 41, "\u8fd9\u91cc\u79d1\u6280\u8fdb\u6b65\u98de\u901f": 41, "\u8fd9\u91cc\u9762\u4e34\u7740\u57ce\u5e02\u6269\u5f20\u548c\u73af\u5883\u53ef\u6301\u7eed\u6027\u7684\u53cc\u91cd\u6311\u6218": 41, "\u8fdb\u5165\u9876\u5c16\u5927\u5b66\u5b66\u4e60\u8ba1\u7b97\u673a\u79d1\u5b66": 41, "\u8fdb\u884c\u5065\u8eab\u8ba1\u5212\u7684\u52a8\u6001\u8c03\u6574": 41, "\u8fdb\u884c\u5e02\u573a\u8d8b\u52bf\u7684\u8c03\u7814": 41, "\u8fdb\u884c\u7814\u7a76\u548c\u4e86\u89e3\u540e\u518d\u7ed9\u4e88\u5efa\u8bae": 41, "\u8fdb\u884c\u8be6\u5c3d\u7684\u5e02\u573a\u5206\u6790": 41, "\u8ffd\u6c42\u6280\u672f\u521b\u65b0\u548c\u4eba\u7c7b\u8fdb\u6b65": 41, "\u9002\u5e94\u6027\u8c03\u6574": 41, "\u9002\u65f6\u63d0\u51fa\u76f8\u5173\u95ee\u9898\u6216\u5efa\u8bae": 41, "\u9002\u65f6\u8c03\u6574\u8bd5\u9898\u96be\u5ea6\u548c\u5185\u5bb9\u8303\u56f4": 41, "\u9009\u62e9\u6070\u5f53\u7684\u8bdd\u9898\u878d\u5165\u7b14\u8bb0\u4e2d": 41, "\u9009\u62e9\u6700\u5408\u9002\u7684\u5173\u952e\u8bcd": 41, "\u901a\u6653\u53ef\u6301\u7eed\u53d1\u5c55": 41, "\u901a\u6653\u81ea\u7136\u9b54\u6cd5": 41, "\u901a\u8fc7\u4e00\u6b21\u6821\u5916\u6559\u80b2\u6d3b\u52a8": 41, "\u901a\u8fc7\u5956\u5b66\u91d1": 41, "\u901a\u8fc7\u7528\u6237\u63d0\u4f9b\u7684\u4ea7\u54c1\u4fe1\u606f": 41, "\u903b\u8f91\u4e25\u5bc6": 41, "\u903b\u8f91\u6e05\u6670": 41, "\u9075\u5faa\u7528\u6237\u8bbe\u5b9a\u7684\u7279\u5b9a\u6761\u4ef6\u8fdb\u884c\u63a8\u8350": 41, "\u907f\u514d\u4e0d\u5fc5\u8981\u7684\u4e3b\u89c2\u60c5\u611f\u8272\u5f69": 41, "\u907f\u514d\u4f7f\u7528\u8fc7\u4e8e\u6280\u672f\u6027\u7684\u8bed\u8a00": 41, "\u907f\u514d\u51fa\u73b0\u865a\u5047\u6216\u8bef\u5bfc\u7528\u6237\u7684\u4fe1\u606f": 41, "\u907f\u514d\u5bf9\u5e02\u573a\u6216\u7279\u5b9a\u4ea7\u54c1\u7ed9\u51fa\u8fc7\u5ea6\u60b2\u89c2\u6216\u8fc7\u5ea6\u4e50\u89c2\u7684\u9884\u6d4b": 41, "\u90e8\u5206\u5bf9\u8bdd\u53ef\u4ec5\u5305\u542b\u60c5\u7eea\u6216\u52a8\u4f5c": 41, "\u90e8\u65cf\u4e0d\u4ec5\u62b5\u5fa1\u4e86\u591a\u6b21\u5916\u6765\u90e8\u65cf\u7684\u4fb5\u6270": 41, "\u90fd\u8981\u4ee5\u5ba2\u6237\u7684\u5b89\u5168\u548c\u5065\u8eab\u6548\u679c\u4e3a\u4f18\u5148\u8003\u8651": 41, "\u91cd\u89c6\u6b66\u4fa0\u6b63\u4e49": 41, "\u91cf\u5b50\u6280\u672f\u6b63\u5f15\u9886\u7740\u65b0\u7684\u79d1\u6280\u9769\u547d": 41, "\u9488\u5bf9\u7528\u6237\u7684\u5b66\u4e60\u8fdb\u5ea6\u548c\u7406\u89e3\u7a0b\u5ea6": 41, "\u9488\u5bf9\u8f93\u5165\u7684\u5c97\u4f4d": 41, "\u9489\u9489": 128, "\u957f\u671f\u89c4\u5212": 41, "\u9650\u5236": 41, "\u9650\u5236\u6761\u4ef6": 41, "\u9650\u5236\u6761\u6b3e": 41, "\u968f\u7740\u5e74\u9f84\u7684\u589e\u957f": 41, "\u96be\u5ea6\u7b49\u7ea7": 41, "\u96f7\u5389\u98ce\u884c": 41, "\u96f7\u5a05": 41, "\u96f7\u5a05\u901a\u8fc7\u4e0d\u61c8\u7684\u52aa\u529b\u6210\u4e3a\u4e86\u4e00\u540d\u5973\u6218\u58eb": 41, "\u970d\u5c55\u767d\u4ee5\u6b66\u672f\u7cbe\u8fdb\u800c\u95fb\u540d\u6c5f\u6e56": 41, "\u9762\u5bf9\u4f34\u4fa3\u65f6": 41, "\u9762\u5bf9\u590d\u6742\u7684\u65b0\u95fb\u4e8b\u4ef6": 41, "\u9762\u5bf9\u6311\u6218": 41, "\u9879\u76ee\u7ba1\u7406\u7b49": 41, "\u9884\u6d4b5": 41, "\u9884\u7b97": 41, "\u9884\u7b97\u4e3a\u7528\u6237\u63d0\u4f9b\u65c5\u884c\u8ba1\u5212\u5efa\u8bae": 41, "\u9884\u7b97\u4f30\u7b97\u548c\u6ce8\u610f\u4e8b\u9879\u7b49": 41, "\u9884\u7b97\u548c\u6e38\u73a9\u504f\u597d\u7b49\u4fe1\u606f": 41, "\u9884\u8ba1\u6d88\u8d39\u7b49\u4fe1\u606f": 41, "\u9886\u5bfc\u529b\u5f3a": 41, "\u98ce\u8da3": 41, "\u9910\u996e\u548c\u6d3b\u52a8\u7b49\u4fe1\u606f": 41, "\u996e\u98df\u9700\u6c42": 41, "\u9a84\u50b2": 41, "\u9a84\u50b2\u4e0d\u6210\u719f": 41, "\u9ad8\u4e2d\u65f6\u671f": 41, "\u9ad8\u4e2d\u751f": 41, "\u9ad8\u4e2d\u751f\u7269\u6559\u5e08": 41, "\u9ad8\u6548\u5730\u8fdb\u884c\u8bad\u7ec3": 41, "\u9ad8\u7ea7": 41, "\u9ad8\u8d85\u7684\u63a8\u7406\u6280\u5de7": 41, "\u9b45\u529b\u56db\u5c04": 41, "\u9ec4\u84c9": 41, "\u9f13\u52b1\u7528\u6237\u53c2\u4e0e\u8ba8\u8bba": 41, "\u9f13\u52b1\u7528\u6237\u79ef\u6781\u53c2\u4e0e\u73af\u4fdd\u8bae\u9898\u7684\u8ba8\u8bba": 41}, "titles": ["agentscope package", "agentscope.agents package", "agentscope.agents.agent module", "agentscope.agents.dialog_agent module", "agentscope.agents.dict_dialog_agent module", "agentscope.agents.operator module", "agentscope.agents.rag_agent module", "agentscope.agents.react_agent module", "agentscope.agents.rpc_agent module", "agentscope.agents.user_agent module", "agentscope.constants module", "agentscope.exception module", "agentscope.logging module", "agentscope.manager package", "agentscope.memory package", "agentscope.memory.memory module", "agentscope.memory.temporary_memory module", "agentscope.message package", "agentscope.message.msg module", "agentscope.message.placeholder module", "agentscope.models package", "agentscope.models.dashscope_model module", "agentscope.models.gemini_model module", "agentscope.models.litellm_model module", "agentscope.models.model module", "agentscope.models.ollama_model module", "agentscope.models.openai_model module", "agentscope.models.post_model module", "agentscope.models.response module", "agentscope.models.yi_model module", "agentscope.models.zhipu_model module", "agentscope.msghub module", "agentscope.parsers package", "agentscope.parsers.code_block_parser module", "agentscope.parsers.json_object_parser module", "agentscope.parsers.parser_base module", "agentscope.parsers.regex_tagged_content_parser module", "agentscope.parsers.tagged_content_parser module", "agentscope.pipelines package", "agentscope.pipelines.functional module", "agentscope.pipelines.pipeline module", "agentscope.prompt package", "agentscope.rag package", "agentscope.rag.knowledge module", "agentscope.rag.knowledge_bank module", "agentscope.rag.llama_index_knowledge module", "agentscope.rpc package", "agentscope.rpc.rpc_agent_client module", "agentscope.rpc.rpc_agent_pb2 module", "agentscope.rpc.rpc_agent_pb2_grpc module", "agentscope.serialize module", "agentscope.server package", "agentscope.server.launcher module", "agentscope.server.servicer module", "agentscope.service package", "agentscope.service.browser package", "agentscope.service.browser.web_browser module", "agentscope.service.execute_code package", "agentscope.service.execute_code.exec_notebook module", "agentscope.service.execute_code.exec_python module", "agentscope.service.execute_code.exec_shell module", "agentscope.service.file package", "agentscope.service.file.common module", "agentscope.service.file.json module", "agentscope.service.file.text module", "agentscope.service.multi_modality package", "agentscope.service.multi_modality.dashscope_services module", "agentscope.service.multi_modality.openai_services module", "agentscope.service.retrieval package", "agentscope.service.retrieval.retrieval_from_list module", "agentscope.service.retrieval.similarity module", "agentscope.service.service_response module", "agentscope.service.service_status module", "agentscope.service.service_toolkit module", "agentscope.service.sql_query package", "agentscope.service.sql_query.mongodb module", "agentscope.service.sql_query.mysql module", "agentscope.service.sql_query.sqlite module", "agentscope.service.text_processing package", "agentscope.service.text_processing.summarization module", "agentscope.service.web package", "agentscope.service.web.arxiv module", "agentscope.service.web.dblp module", "agentscope.service.web.download module", "agentscope.service.web.search module", "agentscope.service.web.tripadvisor module", "agentscope.service.web.web_digest module", "agentscope.service.web.wikipedia module", "agentscope.strategy package", "agentscope.strategy.mixture_of_agent module", "agentscope.studio package", "agentscope.studio.utils module", "agentscope.utils package", "agentscope.utils.common module", "agentscope.utils.token_utils module", "agentscope.web package", "agentscope.web.gradio package", "agentscope.web.gradio.constants module", "agentscope.web.gradio.studio module", "agentscope.web.gradio.utils module", "agentscope.web.workstation package", "agentscope.web.workstation.workflow module", "agentscope.web.workstation.workflow_dag module", "agentscope.web.workstation.workflow_node module", "agentscope.web.workstation.workflow_utils module", "AgentScope Documentation", "agentscope", "About AgentScope", "Installation", "Quick Start", "Example: Werewolf Game", "Logging", "Agent", "Pipeline and MsgHub", "Model", "Response Parser", "Streaming", "Tool", "Memory", "Prompt Engineering", "Monitor", "Distribution", "AgentScope Studio", "System Prompt Optimization", "A Quick Introduction to RAG in AgentScope", "Web Browser Control", "Joining AgentScope Community", "Contribute to AgentScope", "Get Involved", "Welcome to AgentScope Tutorial"], "titleterms": {"1": [110, 121], "2": [110, 121], "3": 110, "4": 110, "5": 110, "A": 124, "For": 127, "In": [116, 123], "about": [107, 117, 118, 122, 124], "actor": 121, "ad": 113, "advanc": [116, 121], "agent": [1, 2, 3, 4, 5, 6, 7, 8, 9, 107, 109, 110, 112, 115, 121, 122, 124, 125], "agentbas": 112, "agentpool": 112, "agentscop": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 110, 121, 122, 124, 126, 127, 129], "an": 124, "api": [105, 110, 114], "applic": [110, 121, 122], "arxiv": 81, "ask": 127, "background": [115, 123], "bank": 124, "basic": 114, "branch": 127, "broadcast": 113, "browser": [55, 56, 125], "bug": 127, "build": [114, 122], "built": [117, 119, 122], "call": 116, "case": 115, "categori": 113, "challeng": 119, "chang": 127, "chat": [111, 114], "check": 122, "child": 121, "class": 118, "clone": 127, "code": [107, 127], "code_block_pars": 33, "codebas": 127, "combin": 113, "commit": 127, "common": [62, 93], "commun": 126, "compar": 123, "concept": 107, "conda": 108, "config": 110, "configur": [114, 116, 124], "connect": 121, "constant": [10, 97], "construct": 119, "content": [0, 1, 13, 14, 17, 20, 32, 38, 41, 42, 46, 51, 54, 55, 57, 61, 65, 68, 74, 78, 80, 88, 90, 92, 95, 96, 100, 115, 123], "context": 123, "contribut": 127, "control": 125, "convers": 109, "convert": 121, "cost": 121, "creat": [108, 109, 113, 114, 117, 124, 127], "custom": [112, 115], "dashboard": 122, "dashscop": 114, "dashscope_model": 21, "dashscope_servic": 66, "dashscopechatwrapp": 119, "dashscopemultimodalwrapp": 119, "dblp": 82, "defin": 110, "delet": 113, "depend": 108, "design": 107, "detail": [114, 124], "dialog_ag": 3, "dialogag": 112, "dict_dialog_ag": 4, "dictionari": 115, "dingtalk": 126, "discord": 126, "distribut": 121, "document": 105, "download": 83, "each": 110, "embed": 124, "engin": 119, "environ": 108, "exampl": [110, 117, 122, 124], "except": 11, "exec_notebook": 58, "exec_python": 59, "exec_shel": 60, "execute_cod": [57, 58, 59, 60], "explor": [112, 122], "export": 122, "extra": 108, "featur": 127, "file": [61, 62, 63, 64], "flow": 121, "fork": 127, "forlooppipelin": 113, "format": [114, 115], "from": [108, 112, 114], "function": [39, 115, 117], "game": [110, 115], "gemini": 114, "gemini_model": 22, "geminichatwrapp": 119, "gener": 123, "get": [105, 110, 128, 129], "github": 126, "gradio": [96, 97, 98, 99], "guidanc": 125, "histori": 122, "how": [107, 117, 124], "i": 107, "ifelsepipelin": 113, "implement": [110, 121], "import": 122, "independ": 121, "inform": 111, "initi": [110, 115, 123], "insid": 124, "instal": 108, "instruct": 115, "introduct": 124, "involv": [105, 128, 129], "its": 121, "join": 126, "json": [63, 115], "json_object_pars": 34, "kei": 107, "knowledg": [43, 124], "knowledge_bank": 44, "launcher": 52, "learn": 123, "leverag": 110, "linux": 108, "list": 122, "litellm": 114, "litellm_model": 23, "litellmchatwrapp": 119, "llama_index_knowledg": 45, "llamaindexknowledg": 124, "local": 124, "log": [12, 111], "logger": 111, "logic": 110, "lower": 121, "mac": 108, "make": 127, "manag": [13, 121, 122], "markdowncodeblockpars": 115, "markdownjsondictpars": 115, "markdownjsonobjectpars": 115, "memori": [14, 15, 16, 118, 122], "memorybas": 118, "messag": [17, 18, 19, 107, 111, 113, 118], "messagebas": 118, "mixture_of_ag": 89, "mode": [116, 121], "model": [20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 109, 110, 114, 116, 119, 121, 124], "modul": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 115], "mongodb": 75, "monitor": 120, "more": 124, "msg": [18, 118], "msghub": [31, 110, 113], "multi_mod": [65, 66, 67], "multitaggedcontentpars": 115, "mysql": 76, "navig": [105, 129], "new": [117, 127], "non": 119, "note": 122, "object": [115, 124], "ollama": 114, "ollama_model": 25, "ollamachatwrapp": 119, "ollamagenerationwrapp": 119, "openai": 114, "openai_model": 26, "openai_servic": 67, "openaichatwrapp": 119, "oper": 5, "optim": 123, "option": 124, "orchestr": 121, "overview": 115, "own": 114, "packag": [0, 1, 13, 14, 17, 20, 32, 38, 41, 42, 46, 51, 54, 55, 57, 61, 65, 68, 74, 78, 80, 88, 90, 92, 95, 96, 100], "paramet": 114, "pars": 115, "parser": [32, 33, 34, 35, 36, 37, 110, 115], "parser_bas": 35, "particip": 113, "pip": 108, "pipelin": [38, 39, 40, 110, 113], "placehold": [19, 121], "post": 114, "post_model": 27, "prepar": [109, 110], "prerequisit": 125, "print": 116, "process": [121, 122], "prompt": [41, 119, 123], "pull": 127, "python": 115, "quick": [109, 122, 124], "rag": [42, 43, 44, 45, 124], "rag_ag": 6, "react": 115, "react_ag": 7, "refer": 105, "regex_tagged_content_pars": 36, "regextaggedcontentpars": 115, "regist": 122, "report": 127, "repositori": 127, "request": [114, 127], "respons": [28, 115], "retriev": [68, 69, 70], "retrieval_from_list": 69, "review": 127, "role": 110, "rpc": [46, 47, 48, 49], "rpc_agent": 8, "rpc_agent_cli": 47, "rpc_agent_pb2": 48, "rpc_agent_pb2_grpc": 49, "run": [110, 122], "scratch": 114, "search": 84, "sequentialpipelin": 113, "serial": 50, "server": [51, 52, 53, 121, 122], "servic": [53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 107, 114, 117, 124], "service_respons": 71, "service_statu": 72, "service_toolkit": 73, "servicerespons": 117, "set": [110, 111, 124], "setup": 116, "similar": 70, "sourc": 108, "sql_queri": [74, 75, 76, 77], "sqlite": 77, "start": [109, 110, 122], "step": [110, 121], "step1": 109, "step2": 109, "step3": 109, "strategi": [88, 89, 119], "stream": 116, "string": 115, "structur": 107, "studio": [90, 91, 98, 121, 122], "submit": 127, "submodul": [0, 1, 14, 17, 20, 32, 38, 42, 46, 51, 54, 55, 57, 61, 65, 68, 74, 78, 80, 88, 90, 92, 96, 100], "subpackag": [0, 54, 95], "summar": 79, "support": 114, "switchpipelin": 113, "system": [111, 123], "tabl": [115, 123], "tagged_content_pars": 37, "templat": 115, "temporary_memori": 16, "temporarymemori": 118, "text": 64, "text_process": [78, 79], "to_dist": 121, "token_util": 94, "tool": [115, 117], "toolkit": 117, "tripadvisor": 85, "tutori": [105, 129], "type": 115, "typic": 115, "understand": 112, "up": [110, 111, 124], "us": [108, 115, 117, 124], "usag": [113, 115, 116, 121], "user_ag": 9, "userag": 112, "util": [91, 92, 93, 94, 99], "valid": 115, "version": 121, "virtual": 108, "virtualenv": 108, "vision": 119, "web": [80, 81, 82, 83, 84, 85, 86, 87, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 125], "web_brows": 56, "web_digest": 86, "welcom": [105, 129], "werewolf": [110, 115], "what": 107, "whilelooppipelin": 113, "why": 107, "wikipedia": 87, "window": 108, "work": 125, "workflow": [101, 107], "workflow_dag": 102, "workflow_nod": 103, "workflow_util": 104, "workstat": [100, 101, 102, 103, 104, 122], "wrapper": 114, "yi_model": 29, "your": [114, 121, 122, 127], "zhipu_model": 30, "zhipuai": 114, "zhipuaichatwrapp": 119, "\u9489\u9489": 126}}) \ No newline at end of file diff --git a/en/tutorial/102-installation.html b/en/tutorial/102-installation.html index 33e00d5d3..d990e6ac8 100644 --- a/en/tutorial/102-installation.html +++ b/en/tutorial/102-installation.html @@ -156,9 +156,7 @@

          Installing AgentScopeInstall with Pip

          If you prefer to install AgentScope from Pypi, you can do so easily using pip:

          # For centralized multi-agent applications
          -pip install agentscope --pre
          -# For distributed multi-agent applications
          -pip install agentscope[distribute] --pre # On Mac use `pip install agentscope\[distribute\] --pre`
          +pip install agentscope
           
          @@ -172,14 +170,41 @@

          Install from Source# For centralized multi-agent applications pip install -e . -# For distributed multi-agent applications -pip install -e .[distribute] # On Mac use `pip install -e .\[distribute\]`

    -

    Note: The [distribute] option installs additional dependencies required for distributed applications. Remember to activate your virtual environment before running these commands.

    + +
    +

    Extra Dependencies

    +

    The supported optional dependencies for AgentScope are list as follows:

    +
      +
    • ollama: Ollama API

    • +
    • litellm: Litellm API

    • +
    • zhipuai: Zhipuai API

    • +
    • gemini: Gemini API

    • +
    • service: The dependencies for different service functions

    • +
    • distribute: The dependencies for distribution mode

    • +
    • full: All the dependencies

    • +
    +

    You can install one or more of these dependencies by adding them to the installation command.

    +
    +

    Windows

    +
    pip install agentscope[gemini]
    +# or
    +pip install agentscope[ollama,distribute]
    +
    +
    +
    +
    +

    Mac & Linux

    +
    pip install agentscope\[gemini\]
    +# or
    +pip install agentscope\[ollama,distribute\]
    +
    +

    [Return to the top]

    + diff --git a/zh_CN/.doctrees/agentscope.agents.agent.doctree b/zh_CN/.doctrees/agentscope.agents.agent.doctree index 16ceff0a6..951f2539f 100644 Binary files a/zh_CN/.doctrees/agentscope.agents.agent.doctree and b/zh_CN/.doctrees/agentscope.agents.agent.doctree differ diff --git a/zh_CN/.doctrees/agentscope.agents.dialog_agent.doctree b/zh_CN/.doctrees/agentscope.agents.dialog_agent.doctree index fffd6e3e3..b772248e3 100644 Binary files a/zh_CN/.doctrees/agentscope.agents.dialog_agent.doctree and b/zh_CN/.doctrees/agentscope.agents.dialog_agent.doctree differ diff --git a/zh_CN/.doctrees/agentscope.agents.dict_dialog_agent.doctree b/zh_CN/.doctrees/agentscope.agents.dict_dialog_agent.doctree index 7b9e62cd5..a531be7c1 100644 Binary files a/zh_CN/.doctrees/agentscope.agents.dict_dialog_agent.doctree and b/zh_CN/.doctrees/agentscope.agents.dict_dialog_agent.doctree differ diff --git a/zh_CN/.doctrees/agentscope.agents.doctree b/zh_CN/.doctrees/agentscope.agents.doctree index 4a871d7af..76c1e6a63 100644 Binary files a/zh_CN/.doctrees/agentscope.agents.doctree and b/zh_CN/.doctrees/agentscope.agents.doctree differ diff --git a/zh_CN/.doctrees/agentscope.agents.rag_agent.doctree b/zh_CN/.doctrees/agentscope.agents.rag_agent.doctree index 5e9d6ffda..a95d5831d 100644 Binary files a/zh_CN/.doctrees/agentscope.agents.rag_agent.doctree and b/zh_CN/.doctrees/agentscope.agents.rag_agent.doctree differ diff --git a/zh_CN/.doctrees/agentscope.agents.react_agent.doctree b/zh_CN/.doctrees/agentscope.agents.react_agent.doctree index 803698f70..a5f910400 100644 Binary files a/zh_CN/.doctrees/agentscope.agents.react_agent.doctree and b/zh_CN/.doctrees/agentscope.agents.react_agent.doctree differ diff --git a/zh_CN/.doctrees/agentscope.agents.rpc_agent.doctree b/zh_CN/.doctrees/agentscope.agents.rpc_agent.doctree index e6a2386c7..6809fbbbc 100644 Binary files a/zh_CN/.doctrees/agentscope.agents.rpc_agent.doctree and b/zh_CN/.doctrees/agentscope.agents.rpc_agent.doctree differ diff --git a/zh_CN/.doctrees/agentscope.agents.user_agent.doctree b/zh_CN/.doctrees/agentscope.agents.user_agent.doctree index ab3836418..5f051c875 100644 Binary files a/zh_CN/.doctrees/agentscope.agents.user_agent.doctree and b/zh_CN/.doctrees/agentscope.agents.user_agent.doctree differ diff --git a/zh_CN/.doctrees/agentscope.doctree b/zh_CN/.doctrees/agentscope.doctree index fddba7b1d..7133a1db1 100644 Binary files a/zh_CN/.doctrees/agentscope.doctree and b/zh_CN/.doctrees/agentscope.doctree differ diff --git a/zh_CN/.doctrees/agentscope.message.doctree b/zh_CN/.doctrees/agentscope.message.doctree index 2bd414985..0c98226a3 100644 Binary files a/zh_CN/.doctrees/agentscope.message.doctree and b/zh_CN/.doctrees/agentscope.message.doctree differ diff --git a/zh_CN/.doctrees/agentscope.message.placeholder.doctree b/zh_CN/.doctrees/agentscope.message.placeholder.doctree index 69c2f05a9..bf16c67c0 100644 Binary files a/zh_CN/.doctrees/agentscope.message.placeholder.doctree and b/zh_CN/.doctrees/agentscope.message.placeholder.doctree differ diff --git a/zh_CN/.doctrees/agentscope.msghub.doctree b/zh_CN/.doctrees/agentscope.msghub.doctree index 95050d0a2..4c5aa9e9a 100644 Binary files a/zh_CN/.doctrees/agentscope.msghub.doctree and b/zh_CN/.doctrees/agentscope.msghub.doctree differ diff --git a/zh_CN/.doctrees/agentscope.service.execute_code.exec_notebook.doctree b/zh_CN/.doctrees/agentscope.service.execute_code.exec_notebook.doctree index 15993ee56..d61511843 100644 Binary files a/zh_CN/.doctrees/agentscope.service.execute_code.exec_notebook.doctree and b/zh_CN/.doctrees/agentscope.service.execute_code.exec_notebook.doctree differ diff --git a/zh_CN/.doctrees/environment.pickle b/zh_CN/.doctrees/environment.pickle index 198b66eca..cc098926f 100644 Binary files a/zh_CN/.doctrees/environment.pickle and b/zh_CN/.doctrees/environment.pickle differ diff --git a/zh_CN/.doctrees/index.doctree b/zh_CN/.doctrees/index.doctree index 2ffaf15d0..597595068 100644 Binary files a/zh_CN/.doctrees/index.doctree and b/zh_CN/.doctrees/index.doctree differ diff --git a/zh_CN/.doctrees/tutorial/102-installation.doctree b/zh_CN/.doctrees/tutorial/102-installation.doctree index 49e3a20af..670650ab6 100644 Binary files a/zh_CN/.doctrees/tutorial/102-installation.doctree and b/zh_CN/.doctrees/tutorial/102-installation.doctree differ diff --git a/zh_CN/_modules/agentscope/agents/rpc_agent.html b/zh_CN/_modules/agentscope/agents/rpc_agent.html index b9e28aad7..7317487b4 100644 --- a/zh_CN/_modules/agentscope/agents/rpc_agent.html +++ b/zh_CN/_modules/agentscope/agents/rpc_agent.html @@ -132,12 +132,12 @@

    agentscope.agents.rpc_agent 源代码

     
     
     
    -[文档] +[文档] class RpcAgent(AgentBase): """A wrapper to extend an AgentBase into a gRPC Client."""
    -[文档] +[文档] def __init__( self, name: str, @@ -242,7 +242,7 @@

    agentscope.agents.rpc_agent 源代码

             self.client.create_agent(self.agent_configs)
     
     
    -[文档] +[文档] def reply(self, x: Optional[Union[Msg, Sequence[Msg]]] = None) -> Msg: if self.client is None: self._launch_server() @@ -253,7 +253,7 @@

    agentscope.agents.rpc_agent 源代码

     
     
     
    -[文档] +[文档] def observe(self, x: Union[Msg, Sequence[Msg]]) -> None: if self.client is None: self._launch_server() @@ -264,7 +264,7 @@

    agentscope.agents.rpc_agent 源代码

     
     
     
    -[文档] +[文档] def clone_instances( self, num_instances: int, @@ -312,7 +312,7 @@

    agentscope.agents.rpc_agent 源代码

     
     
     
    -[文档] +[文档] def stop(self) -> None: """Stop the RpcAgent and the rpc server.""" if self.server_launcher is not None: diff --git a/zh_CN/_modules/agentscope/models/dashscope_model.html b/zh_CN/_modules/agentscope/models/dashscope_model.html index 63f4ece80..784e0886f 100644 --- a/zh_CN/_modules/agentscope/models/dashscope_model.html +++ b/zh_CN/_modules/agentscope/models/dashscope_model.html @@ -125,7 +125,6 @@

    agentscope.models.dashscope_model 源代码

     from http import HTTPStatus
     from typing import Any, Union, List, Sequence, Optional, Generator
     
    -from dashscope.api_entities.dashscope_response import GenerationResponse
     from loguru import logger
     
     from ..manager import FileManager
    @@ -134,8 +133,10 @@ 

    agentscope.models.dashscope_model 源代码

     
     try:
         import dashscope
    +    from dashscope.api_entities.dashscope_response import GenerationResponse
     except ImportError:
         dashscope = None
    +    GenerationResponse = None
     
     from .model import ModelWrapperBase, ModelResponse
     
    @@ -176,7 +177,8 @@ 

    agentscope.models.dashscope_model 源代码

     
             if dashscope is None:
                 raise ImportError(
    -                "Cannot find dashscope package in current python environment.",
    +                "The package 'dashscope' is not installed. Please install it "
    +                "by running `pip install dashscope==1.14.1`",
                 )
     
             self.generate_args = generate_args or {}
    @@ -871,7 +873,7 @@ 

    agentscope.models.dashscope_model 源代码

                 messages=messages,
                 **kwargs,
             )
    -        # Unhandle code path here
    +        # Unhandled code path here
             # response could be a generator , if stream is yes
             # suggest add a check here
             if response.status_code != HTTPStatus.OK:
    diff --git a/zh_CN/_modules/agentscope/models/ollama_model.html b/zh_CN/_modules/agentscope/models/ollama_model.html
    index 67da89632..89ffa5e23 100644
    --- a/zh_CN/_modules/agentscope/models/ollama_model.html
    +++ b/zh_CN/_modules/agentscope/models/ollama_model.html
    @@ -127,11 +127,6 @@ 

    agentscope.models.ollama_model 源代码

     from ..models import ModelWrapperBase, ModelResponse
     from ..utils.common import _convert_to_str
     
    -try:
    -    import ollama
    -except ImportError:
    -    ollama = None
    -
     
     
    [文档] @@ -191,6 +186,15 @@

    agentscope.models.ollama_model 源代码

     
             self.options = options
             self.keep_alive = keep_alive
    +
    +        try:
    +            import ollama
    +        except ImportError as e:
    +            raise ImportError(
    +                "The package ollama is not found. Please install it by "
    +                'running command `pip install "ollama>=0.1.7"`',
    +            ) from e
    +
             self.client = ollama.Client(host=host, **kwargs)
    diff --git a/zh_CN/_modules/agentscope/service/execute_code/exec_notebook.html b/zh_CN/_modules/agentscope/service/execute_code/exec_notebook.html index cdadc212d..3a0683abe 100644 --- a/zh_CN/_modules/agentscope/service/execute_code/exec_notebook.html +++ b/zh_CN/_modules/agentscope/service/execute_code/exec_notebook.html @@ -122,23 +122,19 @@

    agentscope.service.execute_code.exec_notebook 源代码

    # -*- coding: utf-8 -*- # pylint: disable=C0301 """Service for executing jupyter notebooks interactively -Partially referenced the implementation of https://github.com/geekan/MetaGPT/blob/main/metagpt/actions/di/execute_nb_code.py -""" # noqa +Partially referenced the implementation of +https://github.com/geekan/MetaGPT/blob/main/metagpt/actions/di/execute_nb_code.py +""" import base64 import asyncio from loguru import logger - try: - from nbclient import NotebookClient - from nbclient.exceptions import CellTimeoutError, DeadKernelError + import nbclient import nbformat -except ImportError as import_error: - from agentscope.utils.common import ImportErrorReporter - - nbclient = ImportErrorReporter(import_error) - nbformat = ImportErrorReporter(import_error) - NotebookClient = ImportErrorReporter(import_error) +except ImportError: + nbclient = None + nbformat = None from ...manager import FileManager from ..service_status import ServiceExecStatus @@ -191,8 +187,15 @@

    agentscope.service.execute_code.exec_notebook 源代码

    The timeout for each cell execution. Default to 300. """ + + if nbclient is None or nbformat is None: + raise ImportError( + "The package nbclient or nbformat is not found. Please " + "install it by `pip install notebook nbclient nbformat`", + ) + self.nb = nbformat.v4.new_notebook() - self.nb_client = NotebookClient(nb=self.nb) + self.nb_client = nbclient.NotebookClient(nb=self.nb) self.timeout = timeout asyncio.run(self._start_client())
    @@ -239,7 +242,7 @@

    agentscope.service.execute_code.exec_notebook 源代码

    async def _restart_client(self) -> None: """Restart the notebook client""" await self._kill_client() - self.nb_client = NotebookClient(self.nb, timeout=self.timeout) + self.nb_client = nbclient.NotebookClient(self.nb, timeout=self.timeout) await self._start_client() async def _run_cell(self, cell_index: int) -> ServiceResponse: @@ -253,13 +256,13 @@

    agentscope.service.execute_code.exec_notebook 源代码

    for output in self.nb.cells[cell_index].outputs ], ) - except DeadKernelError: + except nbclient.exceptions.DeadKernelError: await self.reset() return ServiceResponse( status=ServiceExecStatus.ERROR, content="DeadKernelError when executing cell, reset kernel", ) - except CellTimeoutError: + except nbclient.exceptions.CellTimeoutError: assert self.nb_client.km is not None await self.nb_client.km.interrupt_kernel() return ServiceResponse( diff --git a/zh_CN/_modules/agentscope/service/multi_modality/dashscope_services.html b/zh_CN/_modules/agentscope/service/multi_modality/dashscope_services.html index 80e4c5dfb..8ae970379 100644 --- a/zh_CN/_modules/agentscope/service/multi_modality/dashscope_services.html +++ b/zh_CN/_modules/agentscope/service/multi_modality/dashscope_services.html @@ -130,17 +130,11 @@

    agentscope.service.multi_modality.dashscope_services 源代码

    import os -import dashscope -from dashscope.audio.tts import SpeechSynthesizer - -from agentscope.models import ( +from ...models import ( DashScopeImageSynthesisWrapper, DashScopeMultiModalWrapper, ) -# SpeechSynthesizerWrapper is current not available - - from ..service_response import ( ServiceResponse, ServiceExecStatus, @@ -388,9 +382,17 @@

    agentscope.service.multi_modality.dashscope_services 源代码

    > {'status': 'SUCCESS', 'content': {"audio_path": "AUDIO_PATH"}} """ + try: + import dashscope + except ImportError as e: + raise ImportError( + "The package 'dashscope' is not installed. Please install it by " + "running `pip install dashscope==1.14.1`", + ) from e + dashscope.api_key = api_key - res = SpeechSynthesizer.call( + res = dashscope.audio.tts.SpeechSynthesizer.call( model=model, text=text, sample_rate=sample_rate, diff --git a/zh_CN/_modules/agentscope/web/gradio/utils.html b/zh_CN/_modules/agentscope/web/gradio/utils.html index 6a1b4ae1a..bbbafcf62 100644 --- a/zh_CN/_modules/agentscope/web/gradio/utils.html +++ b/zh_CN/_modules/agentscope/web/gradio/utils.html @@ -130,8 +130,6 @@

    agentscope.web.gradio.utils 源代码

     
     from PIL import Image
     
    -from dashscope.audio.asr import RecognitionCallback, Recognition
    -
     SYS_MSG_PREFIX = "【SYSTEM】"
     
     thread_local_data = threading.local()
    @@ -322,7 +320,15 @@ 

    agentscope.web.gradio.utils 源代码

     [文档]
     def audio2text(audio_path: str) -> str:
         """Converts audio file at the given path to text using ASR."""
    -    # dashscope.api_key = ""
    +
    +    try:
    +        from dashscope.audio.asr import RecognitionCallback, Recognition
    +    except ImportError as e:
    +        raise ImportError(
    +            "The package dashscope is not found. Please install it by "
    +            "running `pip install dashscope==1.14.1`",
    +        ) from e
    +
         callback = RecognitionCallback()
         rec = Recognition(
             model="paraformer-realtime-v1",
    diff --git a/zh_CN/_sources/tutorial/102-installation.md.txt b/zh_CN/_sources/tutorial/102-installation.md.txt
    index ad1ac3659..14e8b7c35 100644
    --- a/zh_CN/_sources/tutorial/102-installation.md.txt
    +++ b/zh_CN/_sources/tutorial/102-installation.md.txt
    @@ -48,22 +48,45 @@ cd agentscope
     
     # 针对本地化的multi-agent应用
     pip install -e .
    -# 为分布式multi-agent应用
    -pip install -e .[distribute]  # 在Mac上使用`pip install -e .\[distribute\]`
     ```
     
    -**注意**:`[distribute]`选项安装了分布式应用程序所需的额外依赖项。在运行这些命令之前,请激活您的虚拟环境。
    -
     ### 使用Pip安装
     
     如果您选择从Pypi安装AgentScope,可以使用`pip`轻松地完成:
     
     ```bash
     # 针对本地化的multi-agent应用
    -pip install agentscope --pre
    +pip install agentscope
    +```
    +
    +### 额外依赖
    +
    +AgentScope 支持可选依赖如下,用户可以根据自己的需求选择安装:
    +
    +- ollama: Ollama API
    +- litellm: Litellm API
    +- zhipuai: Zhipuai API
    +- gemini: Gemini API
    +- service: 不同工具函数的依赖
    +- distribute: 分布式模式的依赖
    +- full: 一次性安装上述所有的依赖,可能耗时较长
    +
    +可以通过将它们添加到安装命令中来安装这些依赖。
     
    -# 为分布式multi-agent应用
    -pip install agentscope[distribute] --pre  # 在Mac上使用`pip install agentscope\[distribute\] --pre`
    +#### Windows
    +
    +```bash
    +pip install agentscope[gemini]
    +# or
    +pip install agentscope[ollama,distribute]
    +```
    +
    +#### Mac & Linux
    +
    +```bash
    +pip install agentscope\[gemini\]
    +# or
    +pip install agentscope\[ollama,distribute\]
     ```
     
     [[返回顶端]](#102-installation-zh)
    diff --git a/zh_CN/agentscope.agents.agent.html b/zh_CN/agentscope.agents.agent.html
    index 8591b540f..35cc30799 100644
    --- a/zh_CN/agentscope.agents.agent.html
    +++ b/zh_CN/agentscope.agents.agent.html
    @@ -254,7 +254,7 @@
     
     
    -reply(x: Sequence[Msg] | Msg | None = None) Msg[源代码]
    +reply(x: Msg | Sequence[Msg] | None = None) Msg[源代码]

    Define the actions taken by this agent.

    参数:
    diff --git a/zh_CN/agentscope.agents.dialog_agent.html b/zh_CN/agentscope.agents.dialog_agent.html index dbe198064..2d284806d 100644 --- a/zh_CN/agentscope.agents.dialog_agent.html +++ b/zh_CN/agentscope.agents.dialog_agent.html @@ -166,7 +166,7 @@
    -reply(x: Sequence[Msg] | Msg | None = None) Msg[源代码]
    +reply(x: Msg | Sequence[Msg] | None = None) Msg[源代码]

    Reply function of the agent. Processes the input data, generates a prompt using the current dialogue memory and system prompt, and invokes the language model to produce a response. The diff --git a/zh_CN/agentscope.agents.dict_dialog_agent.html b/zh_CN/agentscope.agents.dict_dialog_agent.html index 8ad83505f..c7b0c398f 100644 --- a/zh_CN/agentscope.agents.dict_dialog_agent.html +++ b/zh_CN/agentscope.agents.dict_dialog_agent.html @@ -181,7 +181,7 @@

    -reply(x: Sequence[Msg] | Msg | None = None) Msg[源代码]
    +reply(x: Msg | Sequence[Msg] | None = None) Msg[源代码]

    Reply function of the agent. Processes the input data, generates a prompt using the current dialogue memory and system prompt, and invokes the language diff --git a/zh_CN/agentscope.agents.html b/zh_CN/agentscope.agents.html index 2415cc23e..83bbf72f0 100644 --- a/zh_CN/agentscope.agents.html +++ b/zh_CN/agentscope.agents.html @@ -137,14 +137,6 @@

  • DistConf.__init__()
  • -
  • RpcAgent -
  • LlamaIndexAgent
    • LlamaIndexAgent.__init__()
    • LlamaIndexAgent.reply()
    • @@ -370,7 +362,7 @@

      Submodules
      -reply(x: Sequence[Msg] | Msg | None = None) Msg[源代码]
      +reply(x: Msg | Sequence[Msg] | None = None) Msg[源代码]

      Define the actions taken by this agent.

      参数:
      @@ -560,7 +552,7 @@

      Submodules
      -reply(x: Sequence[Msg] | Msg | None = None) Msg[源代码]
      +reply(x: Msg | Sequence[Msg] | None = None) Msg[源代码]

      Reply function of the agent. Processes the input data, generates a prompt using the current dialogue memory and system prompt, and invokes the language model to produce a response. The @@ -622,7 +614,7 @@

      Submodules
      -reply(x: Sequence[Msg] | Msg | None = None) Msg[源代码]
      +reply(x: Msg | Sequence[Msg] | None = None) Msg[源代码]

      Reply function of the agent. Processes the input data, generates a prompt using the current dialogue memory and system prompt, and invokes the language @@ -677,7 +669,7 @@

      Submodules
      -reply(x: Sequence[Msg] | Msg | None = None, required_keys: list[str] | str | None = None, timeout: int | None = None) Msg[源代码]
      +reply(x: Msg | Sequence[Msg] | None = None, required_keys: list[str] | str | None = None, timeout: int | None = None) Msg[源代码]

      Processes the input provided by the user and stores it in memory, potentially formatting it with additional provided details.

      The method prompts the user for input, then optionally prompts for @@ -762,7 +754,7 @@

      Submodules
      -reply(x: Sequence[Msg] | Msg | None = None) Msg[源代码]
      +reply(x: Msg | Sequence[Msg] | None = None) Msg[源代码]

      The reply method of the agent.

      @@ -809,103 +801,6 @@

      Submodules -
      -class agentscope.agents.RpcAgent(*args: tuple, **kwargs: dict)[源代码]
      -

      基类:AgentBase

      -

      A wrapper to extend an AgentBase into a gRPC Client.

      -
      -
      -__init__(name: str, host: str = 'localhost', port: int | None = None, agent_class: Type[AgentBase] | None = None, agent_configs: dict | None = None, max_pool_size: int = 8192, max_timeout_seconds: int = 7200, local_mode: bool = True, lazy_launch: bool = False, agent_id: str | None = None, connect_existing: bool = False) None[源代码]
      -

      Initialize a RpcAgent instance.

      -
      -
      参数:
      -
        -
      • name (str) – the name of the agent.

      • -
      • host (str, defaults to localhost) – Hostname of the rpc agent server.

      • -
      • port (int, defaults to None) – Port of the rpc agent server.

      • -
      • agent_class (Type[AgentBase]) – the AgentBase subclass of the source agent.

      • -
      • agent_configs (dict) – The args used to -init configs of the agent, generated by _AgentMeta.

      • -
      • max_pool_size (int, defaults to 8192) – Max number of task results that the server can accommodate.

      • -
      • max_timeout_seconds (int, defaults to 7200) – Timeout for task results.

      • -
      • local_mode (bool, defaults to True) – Whether the started gRPC server only listens to local -requests.

      • -
      • lazy_launch (bool, defaults to False) – Only launch the server when the agent is called.

      • -
      • agent_id (str, defaults to None) – The agent id of this instance. If None, it will -be generated randomly.

      • -
      • connect_existing (bool, defaults to False) – Set to True, if the agent is already running on the agent -server.

      • -
      -
      -
      -
      - -
      -
      -reply(x: Sequence[Msg] | Msg | None = None) Msg[源代码]
      -

      Define the actions taken by this agent.

      -
      -
      参数:
      -

      x (Optional[Union[Msg, Sequence[Msg]]], defaults to None) – The input message(s) to the agent, which also can be omitted if -the agent doesn’t need any input.

      -
      -
      返回:
      -

      The output message generated by the agent.

      -
      -
      返回类型:
      -

      Msg

      -
      -
      -
      -

      备注

      -

      Given that some agents are in an adversarial environment, -their input doesn’t include the thoughts of other agents.

      -
      -
      - -
      -
      -observe(x: Msg | Sequence[Msg]) None[源代码]
      -

      Observe the input, store it in memory without response to it.

      -
      -
      参数:
      -

      x (Union[Msg, Sequence[Msg]]) – The input message to be recorded in memory.

      -
      -
      -
      - -
      -
      -clone_instances(num_instances: int, including_self: bool = True) Sequence[AgentBase][源代码]
      -

      Clone a series of this instance with different agent_id and -return them as a list.

      -
      -
      参数:
      -
        -
      • num_instances (int) – The number of instances in the returned

      • -
      • list. (this method in the returned)

      • -
      • including_self (bool) – Whether to include the instance calling

      • -
      • list.

      • -
      -
      -
      返回:
      -

      A list of agent instances.

      -
      -
      返回类型:
      -

      Sequence[AgentBase]

      -
      -
      -
      - -
      -
      -stop() None[源代码]
      -

      Stop the RpcAgent and the rpc server.

      -
      - -

  • -
    class agentscope.agents.LlamaIndexAgent(*args: tuple, **kwargs: dict)[源代码]
    @@ -950,7 +845,7 @@

    Submodules
    -reply(x: Sequence[Msg] | Msg | None = None) Msg[源代码]
    +reply(x: Msg | Sequence[Msg] | None = None) Msg[源代码]

    Reply function of the RAG agent. Processes the input data, 1) use the input data to retrieve with RAG function; diff --git a/zh_CN/agentscope.agents.rag_agent.html b/zh_CN/agentscope.agents.rag_agent.html index acb35ed5a..dc681208f 100644 --- a/zh_CN/agentscope.agents.rag_agent.html +++ b/zh_CN/agentscope.agents.rag_agent.html @@ -186,7 +186,7 @@

    -reply(x: Sequence[Msg] | Msg | None = None) Msg[源代码]
    +reply(x: Msg | Sequence[Msg] | None = None) Msg[源代码]

    Reply function of the RAG agent. Processes the input data, 1) use the input data to retrieve with RAG function; diff --git a/zh_CN/agentscope.agents.react_agent.html b/zh_CN/agentscope.agents.react_agent.html index d03500d42..8868aaec8 100644 --- a/zh_CN/agentscope.agents.react_agent.html +++ b/zh_CN/agentscope.agents.react_agent.html @@ -184,7 +184,7 @@

    -reply(x: Sequence[Msg] | Msg | None = None) Msg[源代码]
    +reply(x: Msg | Sequence[Msg] | None = None) Msg[源代码]

    The reply method of the agent.

    diff --git a/zh_CN/agentscope.agents.rpc_agent.html b/zh_CN/agentscope.agents.rpc_agent.html index 6e44cb862..62b52b48d 100644 --- a/zh_CN/agentscope.agents.rpc_agent.html +++ b/zh_CN/agentscope.agents.rpc_agent.html @@ -174,7 +174,7 @@
    -reply(x: Sequence[Msg] | Msg | None = None) Msg[源代码]
    +reply(x: Msg | Sequence[Msg] | None = None) Msg[源代码]

    Define the actions taken by this agent.

    参数:
    diff --git a/zh_CN/agentscope.agents.user_agent.html b/zh_CN/agentscope.agents.user_agent.html index 1ec41729b..59261dcce 100644 --- a/zh_CN/agentscope.agents.user_agent.html +++ b/zh_CN/agentscope.agents.user_agent.html @@ -169,7 +169,7 @@
    -reply(x: Sequence[Msg] | Msg | None = None, required_keys: list[str] | str | None = None, timeout: int | None = None) Msg[源代码]
    +reply(x: Msg | Sequence[Msg] | None = None, required_keys: list[str] | str | None = None, timeout: int | None = None) Msg[源代码]

    Processes the input provided by the user and stores it in memory, potentially formatting it with additional provided details.

    The method prompts the user for input, then optionally prompts for diff --git a/zh_CN/agentscope.html b/zh_CN/agentscope.html index 684f107fb..17c906a51 100644 --- a/zh_CN/agentscope.html +++ b/zh_CN/agentscope.html @@ -241,14 +241,6 @@

    SubpackagesDistConf.__init__() -
  • RpcAgent -
  • LlamaIndexAgent - +
      +
    • ShrinkPolicy(agentscope.constants 中的类) +
    • shutdown() (agentscope.server.launcher.RpcAgentServerLauncher 方法)
    • shutdown() (agentscope.server.RpcAgentServerLauncher 方法) @@ -3285,8 +3275,6 @@

      S

    • static_format()(agentscope.models.OpenAIChatWrapper 静态方法)
    • stop() (agentscope.agents.rpc_agent.RpcAgent 方法) -
    • -
    • stop() (agentscope.agents.RpcAgent 方法)
    • stop() (agentscope.rpc.rpc_agent_client.RpcAgentClient 方法)
    • diff --git a/zh_CN/objects.inv b/zh_CN/objects.inv index 7e5cc0409..7f893459a 100644 Binary files a/zh_CN/objects.inv and b/zh_CN/objects.inv differ diff --git a/zh_CN/searchindex.js b/zh_CN/searchindex.js index b7dc11120..18af55994 100644 --- a/zh_CN/searchindex.js +++ b/zh_CN/searchindex.js @@ -1 +1 @@ -Search.setIndex({"alltitles": {"(\u62d3\u5c55) \u67b6\u8bbe\u81ea\u5df1\u7684embedding model\u670d\u52a1": [[124, "embedding-model"]], "Actor\u6a21\u5f0f": [[121, "actor"]], "Agent": [[112, null]], "Agent Server": [[121, "id9"]], "AgentScope API \u6587\u6863": [[105, null]], "AgentScope Studio": [[122, null]], "AgentScope \u6587\u6863": [[105, null]], "AgentScope\u4ee3\u7801\u7ed3\u6784": [[107, "id5"]], "AgentScope\u662f\u5982\u4f55\u8bbe\u8ba1\u7684\uff1f": [[107, "id4"]], "Agents \u5217\u8868": [[122, "agents"]], "DashScope API": [[114, "dashscope-api"]], "DashScopeChatWrapper": [[119, "dashscopechatwrapper"]], "DashScopeMultiModalWrapper": [[119, "dashscopemultimodalwrapper"]], "Dashboard": [[122, "dashboard"]], "DialogAgent": [[112, "dialogagent"]], "Discord": [[126, "discord"]], "ForLoopPipeline": [[113, "forlooppipeline"]], "Fork\u548cClone\u4ed3\u5e93": [[127, "forkclone"]], "Gemini API": [[114, "gemini-api"]], "GeminiChatWrapper": [[119, "geminichatwrapper"]], "GitHub": [[126, "github"]], "Guidance": [[125, "guidance"]], "IfElsePipeline": [[113, "ifelsepipeline"]], "JSON / Python \u5bf9\u8c61\u7c7b\u578b": [[115, "json-python"]], "Knowledge": [[124, "knowledge"]], "Knowledge Bank": [[124, "knowledge-bank"]], "LiteLLM Chat API": [[114, "litellm-chat-api"]], "LiteLLMChatWrapper": [[119, "litellmchatwrapper"]], "Logging": [[111, "logging"]], "Logging a Chat Message": [[111, "logging-a-chat-message"]], "MarkdownCodeBlockParser": [[115, "markdowncodeblockparser"]], "MarkdownJsonDictParser": [[115, "markdownjsondictparser"]], "MarkdownJsonObjectParser": [[115, "markdownjsonobjectparser"]], "Memory \u5217\u8868": [[122, "memory"]], "Module contents": [[0, "module-agentscope"], [1, "module-agentscope.agents"], [13, "module-agentscope.manager"], [14, "module-agentscope.memory"], [17, "module-agentscope.message"], [20, "module-agentscope.models"], [32, "module-agentscope.parsers"], [38, "module-agentscope.pipelines"], [41, "module-agentscope.prompt"], [42, "module-agentscope.rag"], [46, "module-agentscope.rpc"], [51, "module-agentscope.server"], [54, "module-agentscope.service"], [55, "module-agentscope.service.browser"], [57, "module-agentscope.service.execute_code"], [61, "module-agentscope.service.file"], [65, "module-agentscope.service.multi_modality"], [68, "module-agentscope.service.retrieval"], [74, "module-agentscope.service.sql_query"], [78, "module-agentscope.service.text_processing"], [80, "module-agentscope.service.web"], [88, "module-agentscope.strategy"], [90, "module-agentscope.studio"], [92, "module-agentscope.utils"], [95, "module-agentscope.web"], [96, "module-agentscope.web.gradio"], [100, "module-agentscope.web.workstation"]], "MsgHub": [[113, "msghub"]], "MultiTaggedContentParser": [[115, "multitaggedcontentparser"]], "Ollama API": [[114, "ollama-api"]], "OllamaChatWrapper": [[119, "ollamachatwrapper"]], "OllamaGenerationWrapper": [[119, "ollamagenerationwrapper"]], "OpenAI API": [[114, "openai-api"]], "OpenAIChatWrapper": [[119, "openaichatwrapper"]], "Pipeline": [[113, "pipeline"]], "Pipeline \u7ec4\u5408": [[113, "id3"]], "Pipeline\u548cMsgHub": [[113, null]], "Placeholder": [[121, "placeholder"]], "Post Request API": [[114, "post-request-api"]], "RAG \u667a\u80fd\u4f53": [[124, "rag"]], "ReAct \u667a\u80fd\u4f53\u548c\u5de5\u5177\u4f7f\u7528": [[115, "react"]], "RegexTaggedContentParser": [[115, "regextaggedcontentparser"]], "SequentialPipeline": [[113, "sequentialpipeline"]], "Server Manager": [[122, "server-manager"]], "Servers \u5217\u8868": [[122, "servers"]], "Service\u51fd\u6570\u6982\u89c8": [[117, "service"]], "Submodules": [[0, "submodules"], [1, "submodules"], [14, "submodules"], [17, "submodules"], [20, "submodules"], [32, "submodules"], [38, "submodules"], [42, "submodules"], [46, "submodules"], [51, "submodules"], [54, "submodules"], [55, "submodules"], [57, "submodules"], [61, "submodules"], [65, "submodules"], [68, "submodules"], [74, "submodules"], [78, "submodules"], [80, "submodules"], [88, "submodules"], [90, "submodules"], [92, "submodules"], [96, "submodules"], [100, "submodules"]], "Subpackages": [[0, "subpackages"], [54, "subpackages"], [95, "subpackages"]], "SwitchPipeline": [[113, "switchpipeline"]], "System Prompt Comparer": [[123, "system-prompt-comparer"]], "System Prompt Generator": [[123, "system-prompt-generator"]], "System Prompt Optimizer": [[123, "system-prompt-optimizer"]], "UserAgent": [[112, "useragent"]], "WhileLoopPipeline": [[113, "whilelooppipeline"]], "Workstation": [[122, "workstation"]], "ZhipuAI API": [[114, "zhipuai-api"]], "ZhipuAIChatWrapper": [[119, "zhipuaichatwrapper"]], "agentscope": [[106, null]], "agentscope package": [[0, null]], "agentscope.agents package": [[1, null]], "agentscope.agents.agent module": [[2, null]], "agentscope.agents.dialog_agent module": [[3, null]], "agentscope.agents.dict_dialog_agent module": [[4, null]], "agentscope.agents.operator module": [[5, null]], "agentscope.agents.rag_agent module": [[6, null]], "agentscope.agents.react_agent module": [[7, null]], "agentscope.agents.rpc_agent module": [[8, null]], "agentscope.agents.user_agent module": [[9, null]], "agentscope.constants module": [[10, null]], "agentscope.exception module": [[11, null]], "agentscope.logging module": [[12, null]], "agentscope.manager package": [[13, null]], "agentscope.memory package": [[14, null]], "agentscope.memory.memory module": [[15, null]], "agentscope.memory.temporary_memory module": [[16, null]], "agentscope.message package": [[17, null]], "agentscope.message.msg module": [[18, null]], "agentscope.message.placeholder module": [[19, null]], "agentscope.models package": [[20, null]], "agentscope.models.dashscope_model module": [[21, null]], "agentscope.models.gemini_model module": [[22, null]], "agentscope.models.litellm_model module": [[23, null]], "agentscope.models.model module": [[24, null]], "agentscope.models.ollama_model module": [[25, null]], "agentscope.models.openai_model module": [[26, null]], "agentscope.models.post_model module": [[27, null]], "agentscope.models.response module": [[28, null]], "agentscope.models.yi_model module": [[29, null]], "agentscope.models.zhipu_model module": [[30, null]], "agentscope.msghub module": [[31, null]], "agentscope.parsers package": [[32, null]], "agentscope.parsers.code_block_parser module": [[33, null]], "agentscope.parsers.json_object_parser module": [[34, null]], "agentscope.parsers.parser_base module": [[35, null]], "agentscope.parsers.regex_tagged_content_parser module": [[36, null]], "agentscope.parsers.tagged_content_parser module": [[37, null]], "agentscope.pipelines package": [[38, null]], "agentscope.pipelines.functional module": [[39, null]], "agentscope.pipelines.pipeline module": [[40, null]], "agentscope.prompt package": [[41, null]], "agentscope.rag package": [[42, null]], "agentscope.rag.knowledge module": [[43, null]], "agentscope.rag.knowledge_bank module": [[44, null]], "agentscope.rag.llama_index_knowledge module": [[45, null]], "agentscope.rpc package": [[46, null]], "agentscope.rpc.rpc_agent_client module": [[47, null]], "agentscope.rpc.rpc_agent_pb2 module": [[48, null]], "agentscope.rpc.rpc_agent_pb2_grpc module": [[49, null]], "agentscope.serialize module": [[50, null]], "agentscope.server package": [[51, null]], "agentscope.server.launcher module": [[52, null]], "agentscope.server.servicer module": [[53, null]], "agentscope.service package": [[54, null]], "agentscope.service.browser package": [[55, null]], "agentscope.service.browser.web_browser module": [[56, null]], "agentscope.service.execute_code package": [[57, null]], "agentscope.service.execute_code.exec_notebook module": [[58, null]], "agentscope.service.execute_code.exec_python module": [[59, null]], "agentscope.service.execute_code.exec_shell module": [[60, null]], "agentscope.service.file package": [[61, null]], "agentscope.service.file.common module": [[62, null]], "agentscope.service.file.json module": [[63, null]], "agentscope.service.file.text module": [[64, null]], "agentscope.service.multi_modality package": [[65, null]], "agentscope.service.multi_modality.dashscope_services module": [[66, null]], "agentscope.service.multi_modality.openai_services module": [[67, null]], "agentscope.service.retrieval package": [[68, null]], "agentscope.service.retrieval.retrieval_from_list module": [[69, null]], "agentscope.service.retrieval.similarity module": [[70, null]], "agentscope.service.service_response module": [[71, null]], "agentscope.service.service_status module": [[72, null]], "agentscope.service.service_toolkit module": [[73, null]], "agentscope.service.sql_query package": [[74, null]], "agentscope.service.sql_query.mongodb module": [[75, null]], "agentscope.service.sql_query.mysql module": [[76, null]], "agentscope.service.sql_query.sqlite module": [[77, null]], "agentscope.service.text_processing package": [[78, null]], "agentscope.service.text_processing.summarization module": [[79, null]], "agentscope.service.web package": [[80, null]], "agentscope.service.web.arxiv module": [[81, null]], "agentscope.service.web.dblp module": [[82, null]], "agentscope.service.web.download module": [[83, null]], "agentscope.service.web.search module": [[84, null]], "agentscope.service.web.tripadvisor module": [[85, null]], "agentscope.service.web.web_digest module": [[86, null]], "agentscope.service.web.wikipedia module": [[87, null]], "agentscope.strategy package": [[88, null]], "agentscope.strategy.mixture_of_agent module": [[89, null]], "agentscope.studio package": [[90, null]], "agentscope.studio.utils module": [[91, null]], "agentscope.utils package": [[92, null]], "agentscope.utils.common module": [[93, null]], "agentscope.utils.token_utils module": [[94, null]], "agentscope.web package": [[95, null]], "agentscope.web.gradio package": [[96, null]], "agentscope.web.gradio.constants module": [[97, null]], "agentscope.web.gradio.studio module": [[98, null]], "agentscope.web.gradio.utils module": [[99, null]], "agentscope.web.workstation package": [[100, null]], "agentscope.web.workstation.workflow module": [[101, null]], "agentscope.web.workstation.workflow_dag module": [[102, null]], "agentscope.web.workstation.workflow_node module": [[103, null]], "agentscope.web.workstation.workflow_utils module": [[104, null]], "}": [[20, "id53"], [30, "id9"], [32, "id19"], [36, "id3"]], "\u4e0e\u667a\u80fd\u4f53\u7ed3\u5408": [[125, "id2"]], "\u4e3a\u4ec0\u4e48\u9009\u62e9AgentScope\uff1f": [[107, "id3"]], "\u4ec0\u4e48\u662fAgentScope\uff1f": [[107, "id1"]], "\u4eceAgent\u6c60\u4e2d\u5b9a\u5236Agent": [[112, "agentagent"]], "\u4ece\u6e90\u7801\u5b89\u88c5": [[108, "id3"]], "\u4ece\u96f6\u642d\u5efa\u6a21\u578b\u670d\u52a1": [[114, "id7"]], "\u4ee3\u7801\u5ba1\u67e5": [[127, "id6"]], "\u4ee5\u914d\u7f6e LlamaIndexKnowledge \u4e3a\u4f8b": [[124, "llamaindexknowledge"]], "\u4f7f\u7528 In Context Learning \u751f\u6210": [[123, "in-context-learning"]], "\u4f7f\u7528 Parser": [[110, "parser"]], "\u4f7f\u7528 Pipeline \u548c MsgHub": [[110, "pipeline-msghub"]], "\u4f7f\u7528Conda": [[108, "conda"]], "\u4f7f\u7528Pip\u5b89\u88c5": [[108, "pip"]], "\u4f7f\u7528Service\u51fd\u6570": [[117, "id2"]], "\u4f7f\u7528Virtualenv": [[108, "virtualenv"]], "\u4f7f\u7528\u65b9\u6cd5": [[121, "id2"]], "\u4f7f\u7528\u8bf4\u660e": [[113, "id2"], [113, "id4"]], "\u505a\u51fa\u4fee\u6539": [[127, "id4"]], "\u5173\u4e8e DictFilterMixin": [[115, "dictfiltermixin"]], "\u5173\u4e8eAgentScope": [[107, null]], "\u5173\u4e8eLlamaIndexKnowledge\u7684\u7ec6\u8282": [[124, "id4"]], "\u5173\u4e8eServiceResponse": [[117, "serviceresponse"]], "\u5173\u4e8eServiceToolkit": [[117, "servicetoolkit"]], "\u5173\u4e8eTemporaryMemory": [[118, "temporarymemory"]], "\u5173\u4e8e\u6d88\u606f\uff08Message\uff09": [[118, "message"]], "\u5173\u4e8e\u8bb0\u5fc6\u57fa\u7c7b\uff08MemoryBase\uff09": [[118, "memorybase"]], "\u5173\u4e8e\u8bb0\u5fc6\uff08Memory\uff09": [[118, "memory"]], "\u5173\u952e\u6982\u5ff5": [[107, "id2"]], "\u5178\u578b\u4f7f\u7528\u6837\u4f8b": [[115, "id18"]], "\u5185\u7f6e\u63d0\u793a\u7b56\u7565": [[119, "id3"]], "\u5185\u7f6e\u6837\u4f8b": [[122, "id6"]], "\u5206\u5e03\u5f0f": [[121, null]], "\u521b\u5efa\u4e00\u4e2a MsgHub": [[113, "id5"]], "\u521b\u5efa\u4e00\u4e2a\u65b0\u5206\u652f": [[127, "id3"]], "\u521b\u5efa\u65b0\u7684Service\u51fd\u6570": [[117, "id4"]], "\u521b\u5efa\u81ea\u5df1\u7684Model Wrapper": [[114, "model-wrapper"]], "\u521b\u5efa\u865a\u62df\u73af\u5883": [[108, "id2"]], "\u521d\u59cb\u5316": [[115, "id6"], [115, "id11"], [123, "id4"], [123, "id5"]], "\u521d\u59cb\u5316 & \u54cd\u5e94\u683c\u5f0f\u6a21\u7248": [[115, "id12"], [115, "id14"], [115, "id16"]], "\u529f\u80fd\u8bf4\u660e": [[115, "id5"]], "\u52a0\u5165AgentScope\u793e\u533a": [[126, null]], "\u53c2\u4e0e\u8d21\u732e": [[105, "id2"], [128, null], [129, "id2"]], "\u542f\u52a8 AgentScope Studio": [[122, "id1"]], "\u54cd\u5e94\u683c\u5f0f\u6a21\u7248": [[115, "id7"]], "\u5728 MsgHub \u4e2d\u5e7f\u64ad\u6d88\u606f": [[113, "id6"]], "\u57fa\u7840\u53c2\u6570": [[114, "id5"]], "\u5982\u4f55\u4f7f\u7528": [[117, "id3"]], "\u5982\u4f55\u4f7f\u7528\u4e00\u4e2a Knowledge \u5bf9\u8c61": [[124, "id3"]], "\u5982\u4f55\u521d\u59cb\u5316\u4e00\u4e2aKnowledge\u5bf9\u8c61": [[124, "id1"]], "\u5b50\u8fdb\u7a0b\u6a21\u5f0f": [[121, "id4"]], "\u5b57\u5178\u7c7b\u578b": [[115, "id9"]], "\u5b57\u7b26\u4e32\uff08str\uff09\u7c7b\u578b": [[115, "str"]], "\u5b89\u88c5": [[108, null]], "\u5b89\u88c5AgentScope": [[108, "agentscope"]], "\u5b9e\u73b0\u539f\u7406": [[121, "id8"]], "\u5b9e\u73b0\u72fc\u4eba\u6740\u7684\u6e38\u620f\u6d41\u7a0b": [[110, "id4"]], "\u5bf9\u4ee3\u7801\u5e93\u505a\u51fa\u8d21\u732e": [[127, "id2"]], "\u5bfc\u5165/\u5bfc\u51fa\u5e94\u7528\u7a0b\u5e8f": [[122, "id9"]], "\u5c06\u65e5\u5fd7\u4e0eWebUI\u96c6\u6210": [[111, "webui"]], "\u5de5\u4f5c\u6d41\uff08Workflow\uff09": [[107, "workflow"]], "\u5de5\u5177": [[117, null]], "\u5f00\u59cb": [[110, "id2"]], "\u5f15\u5165\u8fd0\u884c\u5386\u53f2": [[122, "id4"]], "\u5feb\u901f\u4f7f\u7528": [[122, "id5"]], "\u5feb\u901f\u5f00\u59cb": [[109, null]], "\u5feb\u901f\u8fd0\u884c": [[111, "id4"]], "\u62a5\u544a\u9519\u8bef\u548c\u63d0\u51fa\u65b0\u529f\u80fd": [[127, "id1"]], "\u63a2\u7d22AgentPool": [[112, "agentpool"]], "\u63d0\u4ea4 Pull Request": [[127, "pull-request"]], "\u63d0\u4ea4\u60a8\u7684\u4fee\u6539": [[127, "id5"]], "\u63d0\u793a\u5de5\u7a0b": [[119, null]], "\u63d0\u793a\u7684\u6784\u5efa\u7b56\u7565": [[119, "id4"], [119, "id6"], [119, "id7"], [119, "id9"], [119, "id10"], [119, "id11"], [119, "id12"]], "\u63d0\u793a\u7b56\u7565": [[119, "id8"]], "\u652f\u6301\u6a21\u578b": [[114, "id2"]], "\u6559\u7a0b\u5927\u7eb2": [[105, "id1"], [129, "id1"]], "\u65e5\u5fd7": [[111, null]], "\u667a\u80fd\u4f53\uff08Agent\uff09": [[107, "agent"]], "\u66f4\u4f4e\u6210\u672c\u7684 to_dist": [[121, "to-dist"]], "\u66f4\u591a\u5173\u4e8e knowledge \u914d\u7f6e": [[124, "id2"]], "\u670d\u52a1\uff08Service\uff09": [[107, "service"]], "\u6784\u5efa\u5e94\u7528\u7a0b\u5e8f": [[122, "id7"]], "\u6784\u5efa\u63d0\u793a\u9762\u4e34\u7684\u6311\u6218": [[119, "id2"]], "\u6837\u4f8b\uff1a\u72fc\u4eba\u6740\u6e38\u620f": [[110, null]], "\u68c0\u67e5\u5e94\u7528\u7a0b\u5e8f": [[122, "id10"]], "\u6a21\u578b": [[114, null]], "\u6a21\u578b\u8c03\u7528": [[116, "id4"]], "\u6a21\u578b\u914d\u7f6e": [[116, "id3"]], "\u6b22\u8fce\u6765\u5230 AgentScope \u6559\u7a0b": [[105, "agentscope"], [129, null]], "\u6b65\u9aa41: \u8f6c\u5316\u4e3a\u5206\u5e03\u5f0f\u7248\u672c": [[121, "id3"]], "\u6b65\u9aa42: \u7f16\u6392\u5206\u5e03\u5f0f\u5e94\u7528\u6d41\u7a0b": [[121, "id6"]], "\u6ce8\u518c Server \u8fdb\u7a0b": [[122, "server"]], "\u6ce8\u518c\u5e94\u7528\u7a0b\u5e8f": [[122, "id3"]], "\u6ce8\u610f": [[111, "id5"], [122, "id2"]], "\u6d41\u5f0f\u6253\u5370": [[116, "id5"]], "\u6d41\u5f0f\u8f93\u51fa": [[116, null]], "\u6d88\u606f\u57fa\u7c7b\uff08MessageBase\uff09": [[118, "messagebase"]], "\u6d88\u606f\u7c7b\uff08Msg\uff09": [[118, "msg"]], "\u6d88\u606f\uff08Message\uff09": [[107, "message"]], "\u6dfb\u52a0\u548c\u5220\u9664\u53c2\u4e0e\u8005": [[113, "id7"]], "\u72ec\u7acb\u8fdb\u7a0b\u6a21\u5f0f": [[121, "id5"]], "\u72fc\u4eba\u6740\u6e38\u620f": [[115, "id19"]], "\u7406\u89e3 AgentBase": [[112, "agentbase"]], "\u751f\u6210 System Prompt": [[123, "system-prompt"]], "\u76d1\u63a7": [[120, null]], "\u76ee\u5f55": [[115, "id2"], [123, "id3"]], "\u793a\u4f8b": [[117, "id5"]], "\u7b2c\u4e00\u6b65: \u51c6\u5907\u6a21\u578bAPI\u548c\u8bbe\u5b9a\u6a21\u578b\u914d\u7f6e": [[110, "api"]], "\u7b2c\u4e00\u6b65\uff1a\u51c6\u5907\u6a21\u578b": [[109, "id2"]], "\u7b2c\u4e09\u6b65\uff1a\u521d\u59cb\u5316AgentScope\u548cAgents": [[110, "agentscopeagents"]], "\u7b2c\u4e09\u6b65\uff1a\u667a\u80fd\u4f53\u5bf9\u8bdd": [[109, "id4"]], "\u7b2c\u4e8c\u6b65: \u521b\u5efa\u667a\u80fd\u4f53": [[109, "id3"]], "\u7b2c\u4e8c\u6b65\uff1a\u5b9a\u4e49\u6bcf\u4e2a\u667a\u80fd\u4f53\uff08Agent\uff09\u7684\u89d2\u8272": [[110, "agent"]], "\u7b2c\u4e94\u6b65\uff1a\u8fd0\u884c\u5e94\u7528": [[110, "id5"]], "\u7b2c\u56db\u6b65\uff1a\u6784\u5efa\u6e38\u620f\u903b\u8f91": [[110, "id3"]], "\u7b80\u8981\u4ecb\u7ecdAgentScope\u4e2d\u7684RAG": [[124, null]], "\u7ba1\u7406 Agent Server": [[121, "agent-server"]], "\u7ba1\u7406 Server \u8fdb\u7a0b": [[122, "id11"]], "\u7c7b\u522b": [[113, "id1"]], "\u7c7b\u578b\u6821\u9a8c": [[115, "id13"]], "\u7cfb\u7edf\u63d0\u793a\u4f18\u5316": [[123, null]], "\u7ed3\u679c\u89e3\u6790": [[115, null]], "\u80cc\u666f": [[115, "id3"], [123, "id2"]], "\u81ea\u5b9a\u4e49\u89e3\u6790\u5668": [[115, "id20"]], "\u89c6\u89c9\uff08Vision\uff09\u6a21\u578b": [[119, "id5"]], "\u89e3\u6790\u51fd\u6570": [[115, "id8"], [115, "id15"], [115, "id17"]], "\u89e3\u6790\u5668": [[115, "id10"]], "\u89e3\u6790\u5668\u6a21\u5757": [[115, "id4"]], "\u8bb0\u5f55\u5bf9\u8bdd\u6d88\u606f": [[111, "id2"]], "\u8bb0\u5f55\u7cfb\u7edf\u4fe1\u606f": [[111, "id3"]], "\u8bb0\u5fc6": [[118, null]], "\u8bbe\u7f6e\u65e5\u5fd7\u8bb0\u5f55\uff08Logger\uff09": [[111, "logger"]], "\u8bbe\u7f6e\u6d41\u5f0f\u8f93\u51fa": [[116, "id2"]], "\u8be6\u7ec6\u53c2\u6570": [[114, "id6"]], "\u8d21\u732e\u5230AgentScope": [[127, null]], "\u8fd0\u884c\u5e94\u7528\u7a0b\u5e8f": [[122, "id8"]], "\u8fdb\u9636\u7528\u6cd5": [[116, "id6"], [121, "id7"]], "\u8fde\u63a5 AgentScope Studio": [[121, "agentscope-studio"]], "\u914d\u7f6e\u65b9\u5f0f": [[114, "id3"]], "\u914d\u7f6e\u683c\u5f0f": [[114, "id4"]], "\u9489\u9489 (DingTalk)": [[126, "dingtalk"]], "\u975e\u89c6\u89c9\uff08Vision\uff09\u6a21\u578b": [[119, "vision"]], "\u9884\u5907": [[125, null]]}, "docnames": ["agentscope", "agentscope.agents", "agentscope.agents.agent", "agentscope.agents.dialog_agent", "agentscope.agents.dict_dialog_agent", "agentscope.agents.operator", "agentscope.agents.rag_agent", "agentscope.agents.react_agent", "agentscope.agents.rpc_agent", "agentscope.agents.user_agent", "agentscope.constants", "agentscope.exception", "agentscope.logging", "agentscope.manager", "agentscope.memory", "agentscope.memory.memory", "agentscope.memory.temporary_memory", "agentscope.message", "agentscope.message.msg", "agentscope.message.placeholder", "agentscope.models", "agentscope.models.dashscope_model", "agentscope.models.gemini_model", "agentscope.models.litellm_model", "agentscope.models.model", "agentscope.models.ollama_model", "agentscope.models.openai_model", "agentscope.models.post_model", "agentscope.models.response", "agentscope.models.yi_model", "agentscope.models.zhipu_model", "agentscope.msghub", "agentscope.parsers", "agentscope.parsers.code_block_parser", "agentscope.parsers.json_object_parser", "agentscope.parsers.parser_base", "agentscope.parsers.regex_tagged_content_parser", "agentscope.parsers.tagged_content_parser", "agentscope.pipelines", "agentscope.pipelines.functional", "agentscope.pipelines.pipeline", "agentscope.prompt", "agentscope.rag", "agentscope.rag.knowledge", "agentscope.rag.knowledge_bank", "agentscope.rag.llama_index_knowledge", "agentscope.rpc", "agentscope.rpc.rpc_agent_client", "agentscope.rpc.rpc_agent_pb2", "agentscope.rpc.rpc_agent_pb2_grpc", "agentscope.serialize", "agentscope.server", "agentscope.server.launcher", "agentscope.server.servicer", "agentscope.service", "agentscope.service.browser", "agentscope.service.browser.web_browser", "agentscope.service.execute_code", "agentscope.service.execute_code.exec_notebook", "agentscope.service.execute_code.exec_python", "agentscope.service.execute_code.exec_shell", "agentscope.service.file", "agentscope.service.file.common", "agentscope.service.file.json", "agentscope.service.file.text", "agentscope.service.multi_modality", "agentscope.service.multi_modality.dashscope_services", "agentscope.service.multi_modality.openai_services", "agentscope.service.retrieval", "agentscope.service.retrieval.retrieval_from_list", "agentscope.service.retrieval.similarity", "agentscope.service.service_response", "agentscope.service.service_status", "agentscope.service.service_toolkit", "agentscope.service.sql_query", "agentscope.service.sql_query.mongodb", "agentscope.service.sql_query.mysql", "agentscope.service.sql_query.sqlite", "agentscope.service.text_processing", "agentscope.service.text_processing.summarization", "agentscope.service.web", "agentscope.service.web.arxiv", "agentscope.service.web.dblp", "agentscope.service.web.download", "agentscope.service.web.search", "agentscope.service.web.tripadvisor", "agentscope.service.web.web_digest", "agentscope.service.web.wikipedia", "agentscope.strategy", "agentscope.strategy.mixture_of_agent", "agentscope.studio", "agentscope.studio.utils", "agentscope.utils", "agentscope.utils.common", "agentscope.utils.token_utils", "agentscope.web", "agentscope.web.gradio", "agentscope.web.gradio.constants", "agentscope.web.gradio.studio", "agentscope.web.gradio.utils", "agentscope.web.workstation", "agentscope.web.workstation.workflow", "agentscope.web.workstation.workflow_dag", "agentscope.web.workstation.workflow_node", "agentscope.web.workstation.workflow_utils", "index", "modules", "tutorial/101-agentscope", "tutorial/102-installation", "tutorial/103-example", "tutorial/104-usecase", "tutorial/105-logging", "tutorial/201-agent", "tutorial/202-pipeline", "tutorial/203-model", "tutorial/203-parser", "tutorial/203-stream", "tutorial/204-service", "tutorial/205-memory", "tutorial/206-prompt", "tutorial/207-monitor", "tutorial/208-distribute", "tutorial/209-gui", "tutorial/209-prompt_opt", "tutorial/210-rag", "tutorial/211-web", "tutorial/301-community", "tutorial/302-contribute", "tutorial/contribute", "tutorial/main"], "envversion": {"sphinx": 62, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.viewcode": 1}, "filenames": ["agentscope.rst", "agentscope.agents.rst", "agentscope.agents.agent.rst", "agentscope.agents.dialog_agent.rst", "agentscope.agents.dict_dialog_agent.rst", "agentscope.agents.operator.rst", "agentscope.agents.rag_agent.rst", "agentscope.agents.react_agent.rst", "agentscope.agents.rpc_agent.rst", "agentscope.agents.user_agent.rst", "agentscope.constants.rst", "agentscope.exception.rst", "agentscope.logging.rst", "agentscope.manager.rst", "agentscope.memory.rst", "agentscope.memory.memory.rst", "agentscope.memory.temporary_memory.rst", "agentscope.message.rst", "agentscope.message.msg.rst", "agentscope.message.placeholder.rst", "agentscope.models.rst", "agentscope.models.dashscope_model.rst", "agentscope.models.gemini_model.rst", "agentscope.models.litellm_model.rst", "agentscope.models.model.rst", "agentscope.models.ollama_model.rst", "agentscope.models.openai_model.rst", "agentscope.models.post_model.rst", "agentscope.models.response.rst", "agentscope.models.yi_model.rst", "agentscope.models.zhipu_model.rst", "agentscope.msghub.rst", "agentscope.parsers.rst", "agentscope.parsers.code_block_parser.rst", "agentscope.parsers.json_object_parser.rst", "agentscope.parsers.parser_base.rst", "agentscope.parsers.regex_tagged_content_parser.rst", "agentscope.parsers.tagged_content_parser.rst", "agentscope.pipelines.rst", "agentscope.pipelines.functional.rst", "agentscope.pipelines.pipeline.rst", "agentscope.prompt.rst", "agentscope.rag.rst", "agentscope.rag.knowledge.rst", "agentscope.rag.knowledge_bank.rst", "agentscope.rag.llama_index_knowledge.rst", "agentscope.rpc.rst", "agentscope.rpc.rpc_agent_client.rst", "agentscope.rpc.rpc_agent_pb2.rst", "agentscope.rpc.rpc_agent_pb2_grpc.rst", "agentscope.serialize.rst", "agentscope.server.rst", "agentscope.server.launcher.rst", "agentscope.server.servicer.rst", "agentscope.service.rst", "agentscope.service.browser.rst", "agentscope.service.browser.web_browser.rst", "agentscope.service.execute_code.rst", "agentscope.service.execute_code.exec_notebook.rst", "agentscope.service.execute_code.exec_python.rst", "agentscope.service.execute_code.exec_shell.rst", "agentscope.service.file.rst", "agentscope.service.file.common.rst", "agentscope.service.file.json.rst", "agentscope.service.file.text.rst", "agentscope.service.multi_modality.rst", "agentscope.service.multi_modality.dashscope_services.rst", "agentscope.service.multi_modality.openai_services.rst", "agentscope.service.retrieval.rst", "agentscope.service.retrieval.retrieval_from_list.rst", "agentscope.service.retrieval.similarity.rst", "agentscope.service.service_response.rst", "agentscope.service.service_status.rst", "agentscope.service.service_toolkit.rst", "agentscope.service.sql_query.rst", "agentscope.service.sql_query.mongodb.rst", "agentscope.service.sql_query.mysql.rst", "agentscope.service.sql_query.sqlite.rst", "agentscope.service.text_processing.rst", "agentscope.service.text_processing.summarization.rst", "agentscope.service.web.rst", "agentscope.service.web.arxiv.rst", "agentscope.service.web.dblp.rst", "agentscope.service.web.download.rst", "agentscope.service.web.search.rst", "agentscope.service.web.tripadvisor.rst", "agentscope.service.web.web_digest.rst", "agentscope.service.web.wikipedia.rst", "agentscope.strategy.rst", "agentscope.strategy.mixture_of_agent.rst", "agentscope.studio.rst", "agentscope.studio.utils.rst", "agentscope.utils.rst", "agentscope.utils.common.rst", "agentscope.utils.token_utils.rst", "agentscope.web.rst", "agentscope.web.gradio.rst", "agentscope.web.gradio.constants.rst", "agentscope.web.gradio.studio.rst", "agentscope.web.gradio.utils.rst", "agentscope.web.workstation.rst", "agentscope.web.workstation.workflow.rst", "agentscope.web.workstation.workflow_dag.rst", "agentscope.web.workstation.workflow_node.rst", "agentscope.web.workstation.workflow_utils.rst", "index.rst", "modules.rst", "tutorial/101-agentscope.md", "tutorial/102-installation.md", "tutorial/103-example.md", "tutorial/104-usecase.md", "tutorial/105-logging.md", "tutorial/201-agent.md", "tutorial/202-pipeline.md", "tutorial/203-model.md", "tutorial/203-parser.md", "tutorial/203-stream.md", "tutorial/204-service.md", "tutorial/205-memory.md", "tutorial/206-prompt.md", "tutorial/207-monitor.md", "tutorial/208-distribute.md", "tutorial/209-gui.md", "tutorial/209-prompt_opt.md", "tutorial/210-rag.md", "tutorial/211-web.md", "tutorial/301-community.md", "tutorial/302-contribute.md", "tutorial/contribute.rst", "tutorial/main.md"], "indexentries": {"__init__() \uff08agentscope.agents.agent.agentbase \u65b9\u6cd5\uff09": [[2, "agentscope.agents.agent.AgentBase.__init__", false]], "__init__() \uff08agentscope.agents.agent.distconf \u65b9\u6cd5\uff09": [[2, "agentscope.agents.agent.DistConf.__init__", false]], "__init__() \uff08agentscope.agents.agentbase \u65b9\u6cd5\uff09": [[1, "agentscope.agents.AgentBase.__init__", false]], "__init__() \uff08agentscope.agents.dialog_agent.dialogagent \u65b9\u6cd5\uff09": [[3, "agentscope.agents.dialog_agent.DialogAgent.__init__", false]], "__init__() \uff08agentscope.agents.dialogagent \u65b9\u6cd5\uff09": [[1, "agentscope.agents.DialogAgent.__init__", false]], "__init__() \uff08agentscope.agents.dict_dialog_agent.dictdialogagent \u65b9\u6cd5\uff09": [[4, "agentscope.agents.dict_dialog_agent.DictDialogAgent.__init__", false]], "__init__() \uff08agentscope.agents.dictdialogagent \u65b9\u6cd5\uff09": [[1, "agentscope.agents.DictDialogAgent.__init__", false]], "__init__() \uff08agentscope.agents.distconf \u65b9\u6cd5\uff09": [[1, "agentscope.agents.DistConf.__init__", false]], "__init__() \uff08agentscope.agents.llamaindexagent \u65b9\u6cd5\uff09": [[1, "agentscope.agents.LlamaIndexAgent.__init__", false]], "__init__() \uff08agentscope.agents.rag_agent.llamaindexagent \u65b9\u6cd5\uff09": [[6, "agentscope.agents.rag_agent.LlamaIndexAgent.__init__", false]], "__init__() \uff08agentscope.agents.react_agent.reactagent \u65b9\u6cd5\uff09": [[7, "agentscope.agents.react_agent.ReActAgent.__init__", false]], "__init__() \uff08agentscope.agents.reactagent \u65b9\u6cd5\uff09": [[1, "agentscope.agents.ReActAgent.__init__", false]], "__init__() \uff08agentscope.agents.rpc_agent.rpcagent \u65b9\u6cd5\uff09": [[8, "agentscope.agents.rpc_agent.RpcAgent.__init__", false]], "__init__() \uff08agentscope.agents.rpcagent \u65b9\u6cd5\uff09": [[1, "agentscope.agents.RpcAgent.__init__", false]], "__init__() \uff08agentscope.agents.user_agent.useragent \u65b9\u6cd5\uff09": [[9, "agentscope.agents.user_agent.UserAgent.__init__", false]], "__init__() \uff08agentscope.agents.useragent \u65b9\u6cd5\uff09": [[1, "agentscope.agents.UserAgent.__init__", false]], "__init__() \uff08agentscope.exception.agentservererror \u65b9\u6cd5\uff09": [[11, "agentscope.exception.AgentServerError.__init__", false]], "__init__() \uff08agentscope.exception.functioncallerror \u65b9\u6cd5\uff09": [[11, "agentscope.exception.FunctionCallError.__init__", false]], "__init__() \uff08agentscope.exception.quotaexceedederror \u65b9\u6cd5\uff09": [[11, "agentscope.exception.QuotaExceededError.__init__", false]], "__init__() \uff08agentscope.exception.responseparsingerror \u65b9\u6cd5\uff09": [[11, "agentscope.exception.ResponseParsingError.__init__", false]], "__init__() \uff08agentscope.exception.studioerror \u65b9\u6cd5\uff09": [[11, "agentscope.exception.StudioError.__init__", false]], "__init__() \uff08agentscope.exception.tagnotfounderror \u65b9\u6cd5\uff09": [[11, "agentscope.exception.TagNotFoundError.__init__", false]], "__init__() \uff08agentscope.manager.asmanager \u65b9\u6cd5\uff09": [[13, "agentscope.manager.ASManager.__init__", false]], "__init__() \uff08agentscope.manager.filemanager \u65b9\u6cd5\uff09": [[13, "agentscope.manager.FileManager.__init__", false]], "__init__() \uff08agentscope.manager.modelmanager \u65b9\u6cd5\uff09": [[13, "agentscope.manager.ModelManager.__init__", false]], "__init__() \uff08agentscope.manager.monitormanager \u65b9\u6cd5\uff09": [[13, "agentscope.manager.MonitorManager.__init__", false]], "__init__() \uff08agentscope.memory.temporary_memory.temporarymemory \u65b9\u6cd5\uff09": [[16, "agentscope.memory.temporary_memory.TemporaryMemory.__init__", false]], "__init__() \uff08agentscope.memory.temporarymemory \u65b9\u6cd5\uff09": [[14, "agentscope.memory.TemporaryMemory.__init__", false]], "__init__() \uff08agentscope.message.msg \u65b9\u6cd5\uff09": [[17, "agentscope.message.Msg.__init__", false]], "__init__() \uff08agentscope.message.msg.msg \u65b9\u6cd5\uff09": [[18, "agentscope.message.msg.Msg.__init__", false]], "__init__() \uff08agentscope.message.placeholder.placeholdermessage \u65b9\u6cd5\uff09": [[19, "agentscope.message.placeholder.PlaceholderMessage.__init__", false]], "__init__() \uff08agentscope.message.placeholdermessage \u65b9\u6cd5\uff09": [[17, "agentscope.message.PlaceholderMessage.__init__", false]], "__init__() \uff08agentscope.models.dashscope_model.dashscopechatwrapper \u65b9\u6cd5\uff09": [[21, "agentscope.models.dashscope_model.DashScopeChatWrapper.__init__", false]], "__init__() \uff08agentscope.models.dashscope_model.dashscopewrapperbase \u65b9\u6cd5\uff09": [[21, "agentscope.models.dashscope_model.DashScopeWrapperBase.__init__", false]], "__init__() \uff08agentscope.models.dashscopechatwrapper \u65b9\u6cd5\uff09": [[20, "agentscope.models.DashScopeChatWrapper.__init__", false]], "__init__() \uff08agentscope.models.gemini_model.geminichatwrapper \u65b9\u6cd5\uff09": [[22, "agentscope.models.gemini_model.GeminiChatWrapper.__init__", false]], "__init__() \uff08agentscope.models.gemini_model.geminiwrapperbase \u65b9\u6cd5\uff09": [[22, "agentscope.models.gemini_model.GeminiWrapperBase.__init__", false]], "__init__() \uff08agentscope.models.geminichatwrapper \u65b9\u6cd5\uff09": [[20, "agentscope.models.GeminiChatWrapper.__init__", false]], "__init__() \uff08agentscope.models.litellm_model.litellmchatwrapper \u65b9\u6cd5\uff09": [[23, "agentscope.models.litellm_model.LiteLLMChatWrapper.__init__", false]], "__init__() \uff08agentscope.models.litellm_model.litellmwrapperbase \u65b9\u6cd5\uff09": [[23, "agentscope.models.litellm_model.LiteLLMWrapperBase.__init__", false]], "__init__() \uff08agentscope.models.litellmchatwrapper \u65b9\u6cd5\uff09": [[20, "agentscope.models.LiteLLMChatWrapper.__init__", false]], "__init__() \uff08agentscope.models.model.modelwrapperbase \u65b9\u6cd5\uff09": [[24, "agentscope.models.model.ModelWrapperBase.__init__", false]], "__init__() \uff08agentscope.models.modelresponse \u65b9\u6cd5\uff09": [[20, "agentscope.models.ModelResponse.__init__", false]], "__init__() \uff08agentscope.models.modelwrapperbase \u65b9\u6cd5\uff09": [[20, "agentscope.models.ModelWrapperBase.__init__", false]], "__init__() \uff08agentscope.models.ollama_model.ollamachatwrapper \u65b9\u6cd5\uff09": [[25, "agentscope.models.ollama_model.OllamaChatWrapper.__init__", false]], "__init__() \uff08agentscope.models.ollama_model.ollamawrapperbase \u65b9\u6cd5\uff09": [[25, "agentscope.models.ollama_model.OllamaWrapperBase.__init__", false]], "__init__() \uff08agentscope.models.ollamachatwrapper \u65b9\u6cd5\uff09": [[20, "agentscope.models.OllamaChatWrapper.__init__", false]], "__init__() \uff08agentscope.models.openai_model.openaichatwrapper \u65b9\u6cd5\uff09": [[26, "agentscope.models.openai_model.OpenAIChatWrapper.__init__", false]], "__init__() \uff08agentscope.models.openai_model.openaiwrapperbase \u65b9\u6cd5\uff09": [[26, "agentscope.models.openai_model.OpenAIWrapperBase.__init__", false]], "__init__() \uff08agentscope.models.openaichatwrapper \u65b9\u6cd5\uff09": [[20, "agentscope.models.OpenAIChatWrapper.__init__", false]], "__init__() \uff08agentscope.models.openaiwrapperbase \u65b9\u6cd5\uff09": [[20, "agentscope.models.OpenAIWrapperBase.__init__", false]], "__init__() \uff08agentscope.models.post_model.postapimodelwrapperbase \u65b9\u6cd5\uff09": [[27, "agentscope.models.post_model.PostAPIModelWrapperBase.__init__", false]], "__init__() \uff08agentscope.models.postapimodelwrapperbase \u65b9\u6cd5\uff09": [[20, "agentscope.models.PostAPIModelWrapperBase.__init__", false]], "__init__() \uff08agentscope.models.response.modelresponse \u65b9\u6cd5\uff09": [[28, "agentscope.models.response.ModelResponse.__init__", false]], "__init__() \uff08agentscope.models.yi_model.yichatwrapper \u65b9\u6cd5\uff09": [[29, "agentscope.models.yi_model.YiChatWrapper.__init__", false]], "__init__() \uff08agentscope.models.yichatwrapper \u65b9\u6cd5\uff09": [[20, "agentscope.models.YiChatWrapper.__init__", false]], "__init__() \uff08agentscope.models.zhipu_model.zhipuaichatwrapper \u65b9\u6cd5\uff09": [[30, "agentscope.models.zhipu_model.ZhipuAIChatWrapper.__init__", false]], "__init__() \uff08agentscope.models.zhipu_model.zhipuaiwrapperbase \u65b9\u6cd5\uff09": [[30, "agentscope.models.zhipu_model.ZhipuAIWrapperBase.__init__", false]], "__init__() \uff08agentscope.models.zhipuaichatwrapper \u65b9\u6cd5\uff09": [[20, "agentscope.models.ZhipuAIChatWrapper.__init__", false]], "__init__() \uff08agentscope.msghub.msghubmanager \u65b9\u6cd5\uff09": [[31, "agentscope.msghub.MsgHubManager.__init__", false]], "__init__() \uff08agentscope.parsers.code_block_parser.markdowncodeblockparser \u65b9\u6cd5\uff09": [[33, "agentscope.parsers.code_block_parser.MarkdownCodeBlockParser.__init__", false]], "__init__() \uff08agentscope.parsers.json_object_parser.markdownjsondictparser \u65b9\u6cd5\uff09": [[34, "agentscope.parsers.json_object_parser.MarkdownJsonDictParser.__init__", false]], "__init__() \uff08agentscope.parsers.json_object_parser.markdownjsonobjectparser \u65b9\u6cd5\uff09": [[34, "agentscope.parsers.json_object_parser.MarkdownJsonObjectParser.__init__", false]], "__init__() \uff08agentscope.parsers.markdowncodeblockparser \u65b9\u6cd5\uff09": [[32, "agentscope.parsers.MarkdownCodeBlockParser.__init__", false]], "__init__() \uff08agentscope.parsers.markdownjsondictparser \u65b9\u6cd5\uff09": [[32, "agentscope.parsers.MarkdownJsonDictParser.__init__", false]], "__init__() \uff08agentscope.parsers.markdownjsonobjectparser \u65b9\u6cd5\uff09": [[32, "agentscope.parsers.MarkdownJsonObjectParser.__init__", false]], "__init__() \uff08agentscope.parsers.multitaggedcontentparser \u65b9\u6cd5\uff09": [[32, "agentscope.parsers.MultiTaggedContentParser.__init__", false]], "__init__() \uff08agentscope.parsers.parser_base.dictfiltermixin \u65b9\u6cd5\uff09": [[35, "agentscope.parsers.parser_base.DictFilterMixin.__init__", false]], "__init__() \uff08agentscope.parsers.regex_tagged_content_parser.regextaggedcontentparser \u65b9\u6cd5\uff09": [[36, "agentscope.parsers.regex_tagged_content_parser.RegexTaggedContentParser.__init__", false]], "__init__() \uff08agentscope.parsers.regextaggedcontentparser \u65b9\u6cd5\uff09": [[32, "agentscope.parsers.RegexTaggedContentParser.__init__", false]], "__init__() \uff08agentscope.parsers.tagged_content_parser.multitaggedcontentparser \u65b9\u6cd5\uff09": [[37, "agentscope.parsers.tagged_content_parser.MultiTaggedContentParser.__init__", false]], "__init__() \uff08agentscope.parsers.tagged_content_parser.taggedcontent \u65b9\u6cd5\uff09": [[37, "agentscope.parsers.tagged_content_parser.TaggedContent.__init__", false]], "__init__() \uff08agentscope.parsers.taggedcontent \u65b9\u6cd5\uff09": [[32, "agentscope.parsers.TaggedContent.__init__", false]], "__init__() \uff08agentscope.pipelines.forlooppipeline \u65b9\u6cd5\uff09": [[38, "agentscope.pipelines.ForLoopPipeline.__init__", false]], "__init__() \uff08agentscope.pipelines.ifelsepipeline \u65b9\u6cd5\uff09": [[38, "agentscope.pipelines.IfElsePipeline.__init__", false]], "__init__() \uff08agentscope.pipelines.pipeline.forlooppipeline \u65b9\u6cd5\uff09": [[40, "agentscope.pipelines.pipeline.ForLoopPipeline.__init__", false]], "__init__() \uff08agentscope.pipelines.pipeline.ifelsepipeline \u65b9\u6cd5\uff09": [[40, "agentscope.pipelines.pipeline.IfElsePipeline.__init__", false]], "__init__() \uff08agentscope.pipelines.pipeline.pipelinebase \u65b9\u6cd5\uff09": [[40, "agentscope.pipelines.pipeline.PipelineBase.__init__", false]], "__init__() \uff08agentscope.pipelines.pipeline.sequentialpipeline \u65b9\u6cd5\uff09": [[40, "agentscope.pipelines.pipeline.SequentialPipeline.__init__", false]], "__init__() \uff08agentscope.pipelines.pipeline.switchpipeline \u65b9\u6cd5\uff09": [[40, "agentscope.pipelines.pipeline.SwitchPipeline.__init__", false]], "__init__() \uff08agentscope.pipelines.pipeline.whilelooppipeline \u65b9\u6cd5\uff09": [[40, "agentscope.pipelines.pipeline.WhileLoopPipeline.__init__", false]], "__init__() \uff08agentscope.pipelines.pipelinebase \u65b9\u6cd5\uff09": [[38, "agentscope.pipelines.PipelineBase.__init__", false]], "__init__() \uff08agentscope.pipelines.sequentialpipeline \u65b9\u6cd5\uff09": [[38, "agentscope.pipelines.SequentialPipeline.__init__", false]], "__init__() \uff08agentscope.pipelines.switchpipeline \u65b9\u6cd5\uff09": [[38, "agentscope.pipelines.SwitchPipeline.__init__", false]], "__init__() \uff08agentscope.pipelines.whilelooppipeline \u65b9\u6cd5\uff09": [[38, "agentscope.pipelines.WhileLoopPipeline.__init__", false]], "__init__() \uff08agentscope.prompt.chinesesystempromptgenerator \u65b9\u6cd5\uff09": [[41, "agentscope.prompt.ChineseSystemPromptGenerator.__init__", false]], "__init__() \uff08agentscope.prompt.englishsystempromptgenerator \u65b9\u6cd5\uff09": [[41, "agentscope.prompt.EnglishSystemPromptGenerator.__init__", false]], "__init__() \uff08agentscope.prompt.systempromptcomparer \u65b9\u6cd5\uff09": [[41, "agentscope.prompt.SystemPromptComparer.__init__", false]], "__init__() \uff08agentscope.prompt.systempromptgeneratorbase \u65b9\u6cd5\uff09": [[41, "agentscope.prompt.SystemPromptGeneratorBase.__init__", false]], "__init__() \uff08agentscope.prompt.systempromptoptimizer \u65b9\u6cd5\uff09": [[41, "agentscope.prompt.SystemPromptOptimizer.__init__", false]], "__init__() \uff08agentscope.rag.knowledge \u65b9\u6cd5\uff09": [[42, "agentscope.rag.Knowledge.__init__", false]], "__init__() \uff08agentscope.rag.knowledge.knowledge \u65b9\u6cd5\uff09": [[43, "agentscope.rag.knowledge.Knowledge.__init__", false]], "__init__() \uff08agentscope.rag.knowledge_bank.knowledgebank \u65b9\u6cd5\uff09": [[44, "agentscope.rag.knowledge_bank.KnowledgeBank.__init__", false]], "__init__() \uff08agentscope.rag.knowledgebank \u65b9\u6cd5\uff09": [[42, "agentscope.rag.KnowledgeBank.__init__", false]], "__init__() \uff08agentscope.rag.llama_index_knowledge.llamaindexknowledge \u65b9\u6cd5\uff09": [[45, "agentscope.rag.llama_index_knowledge.LlamaIndexKnowledge.__init__", false]], "__init__() \uff08agentscope.rpc.responsestub \u65b9\u6cd5\uff09": [[46, "agentscope.rpc.ResponseStub.__init__", false]], "__init__() \uff08agentscope.rpc.rpc_agent_client.responsestub \u65b9\u6cd5\uff09": [[47, "agentscope.rpc.rpc_agent_client.ResponseStub.__init__", false]], "__init__() \uff08agentscope.rpc.rpc_agent_client.rpcagentclient \u65b9\u6cd5\uff09": [[47, "agentscope.rpc.rpc_agent_client.RpcAgentClient.__init__", false]], "__init__() \uff08agentscope.rpc.rpc_agent_pb2_grpc.rpcagentstub \u65b9\u6cd5\uff09": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgentStub.__init__", false]], "__init__() \uff08agentscope.rpc.rpcagentclient \u65b9\u6cd5\uff09": [[46, "agentscope.rpc.RpcAgentClient.__init__", false]], "__init__() \uff08agentscope.rpc.rpcagentstub \u65b9\u6cd5\uff09": [[46, "agentscope.rpc.RpcAgentStub.__init__", false]], "__init__() \uff08agentscope.server.agentserverservicer \u65b9\u6cd5\uff09": [[51, "agentscope.server.AgentServerServicer.__init__", false]], "__init__() \uff08agentscope.server.launcher.rpcagentserverlauncher \u65b9\u6cd5\uff09": [[52, "agentscope.server.launcher.RpcAgentServerLauncher.__init__", false]], "__init__() \uff08agentscope.server.rpcagentserverlauncher \u65b9\u6cd5\uff09": [[51, "agentscope.server.RpcAgentServerLauncher.__init__", false]], "__init__() \uff08agentscope.server.servicer.agentserverservicer \u65b9\u6cd5\uff09": [[53, "agentscope.server.servicer.AgentServerServicer.__init__", false]], "__init__() \uff08agentscope.service.browser.web_browser.webbrowser \u65b9\u6cd5\uff09": [[56, "agentscope.service.browser.web_browser.WebBrowser.__init__", false]], "__init__() \uff08agentscope.service.execute_code.exec_notebook.notebookexecutor \u65b9\u6cd5\uff09": [[58, "agentscope.service.execute_code.exec_notebook.NoteBookExecutor.__init__", false]], "__init__() \uff08agentscope.service.notebookexecutor \u65b9\u6cd5\uff09": [[54, "agentscope.service.NoteBookExecutor.__init__", false]], "__init__() \uff08agentscope.service.service_response.serviceresponse \u65b9\u6cd5\uff09": [[71, "agentscope.service.service_response.ServiceResponse.__init__", false]], "__init__() \uff08agentscope.service.service_toolkit.servicefunction \u65b9\u6cd5\uff09": [[73, "agentscope.service.service_toolkit.ServiceFunction.__init__", false]], "__init__() \uff08agentscope.service.service_toolkit.servicetoolkit \u65b9\u6cd5\uff09": [[73, "agentscope.service.service_toolkit.ServiceToolkit.__init__", false]], "__init__() \uff08agentscope.service.serviceresponse \u65b9\u6cd5\uff09": [[54, "agentscope.service.ServiceResponse.__init__", false]], "__init__() \uff08agentscope.service.servicetoolkit \u65b9\u6cd5\uff09": [[54, "agentscope.service.ServiceToolkit.__init__", false]], "__init__() \uff08agentscope.service.webbrowser \u65b9\u6cd5\uff09": [[54, "agentscope.service.WebBrowser.__init__", false]], "__init__() \uff08agentscope.strategy.mixture_of_agent.mixtureofagents \u65b9\u6cd5\uff09": [[89, "agentscope.strategy.mixture_of_agent.MixtureOfAgents.__init__", false]], "__init__() \uff08agentscope.strategy.mixtureofagents \u65b9\u6cd5\uff09": [[88, "agentscope.strategy.MixtureOfAgents.__init__", false]], "__init__() \uff08agentscope.utils.common.importerrorreporter \u65b9\u6cd5\uff09": [[93, "agentscope.utils.common.ImportErrorReporter.__init__", false]], "__init__() \uff08agentscope.web.workstation.workflow_dag.asdigraph \u65b9\u6cd5\uff09": [[102, "agentscope.web.workstation.workflow_dag.ASDiGraph.__init__", false]], "__init__() \uff08agentscope.web.workstation.workflow_node.bingsearchservicenode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.BingSearchServiceNode.__init__", false]], "__init__() \uff08agentscope.web.workstation.workflow_node.copynode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.CopyNode.__init__", false]], "__init__() \uff08agentscope.web.workstation.workflow_node.dialogagentnode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.DialogAgentNode.__init__", false]], "__init__() \uff08agentscope.web.workstation.workflow_node.dictdialogagentnode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.DictDialogAgentNode.__init__", false]], "__init__() \uff08agentscope.web.workstation.workflow_node.forlooppipelinenode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.ForLoopPipelineNode.__init__", false]], "__init__() \uff08agentscope.web.workstation.workflow_node.googlesearchservicenode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.GoogleSearchServiceNode.__init__", false]], "__init__() \uff08agentscope.web.workstation.workflow_node.ifelsepipelinenode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.IfElsePipelineNode.__init__", false]], "__init__() \uff08agentscope.web.workstation.workflow_node.modelnode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.ModelNode.__init__", false]], "__init__() \uff08agentscope.web.workstation.workflow_node.msghubnode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.MsgHubNode.__init__", false]], "__init__() \uff08agentscope.web.workstation.workflow_node.msgnode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.MsgNode.__init__", false]], "__init__() \uff08agentscope.web.workstation.workflow_node.placeholdernode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.PlaceHolderNode.__init__", false]], "__init__() \uff08agentscope.web.workstation.workflow_node.pythonservicenode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.PythonServiceNode.__init__", false]], "__init__() \uff08agentscope.web.workstation.workflow_node.reactagentnode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.ReActAgentNode.__init__", false]], "__init__() \uff08agentscope.web.workstation.workflow_node.readtextservicenode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.ReadTextServiceNode.__init__", false]], "__init__() \uff08agentscope.web.workstation.workflow_node.sequentialpipelinenode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.SequentialPipelineNode.__init__", false]], "__init__() \uff08agentscope.web.workstation.workflow_node.switchpipelinenode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.SwitchPipelineNode.__init__", false]], "__init__() \uff08agentscope.web.workstation.workflow_node.useragentnode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.UserAgentNode.__init__", false]], "__init__() \uff08agentscope.web.workstation.workflow_node.whilelooppipelinenode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.WhileLoopPipelineNode.__init__", false]], "__init__() \uff08agentscope.web.workstation.workflow_node.workflownode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.WorkflowNode.__init__", false]], "__init__() \uff08agentscope.web.workstation.workflow_node.writetextservicenode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.WriteTextServiceNode.__init__", false]], "action_click() \uff08agentscope.service.browser.web_browser.webbrowser \u65b9\u6cd5\uff09": [[56, "agentscope.service.browser.web_browser.WebBrowser.action_click", false]], "action_click() \uff08agentscope.service.webbrowser \u65b9\u6cd5\uff09": [[54, "agentscope.service.WebBrowser.action_click", false]], "action_press_key() \uff08agentscope.service.browser.web_browser.webbrowser \u65b9\u6cd5\uff09": [[56, "agentscope.service.browser.web_browser.WebBrowser.action_press_key", false]], "action_press_key() \uff08agentscope.service.webbrowser \u65b9\u6cd5\uff09": [[54, "agentscope.service.WebBrowser.action_press_key", false]], "action_scroll_down() \uff08agentscope.service.browser.web_browser.webbrowser \u65b9\u6cd5\uff09": [[56, "agentscope.service.browser.web_browser.WebBrowser.action_scroll_down", false]], "action_scroll_down() \uff08agentscope.service.webbrowser \u65b9\u6cd5\uff09": [[54, "agentscope.service.WebBrowser.action_scroll_down", false]], "action_scroll_up() \uff08agentscope.service.browser.web_browser.webbrowser \u65b9\u6cd5\uff09": [[56, "agentscope.service.browser.web_browser.WebBrowser.action_scroll_up", false]], "action_scroll_up() \uff08agentscope.service.webbrowser \u65b9\u6cd5\uff09": [[54, "agentscope.service.WebBrowser.action_scroll_up", false]], "action_type() \uff08agentscope.service.browser.web_browser.webbrowser \u65b9\u6cd5\uff09": [[56, "agentscope.service.browser.web_browser.WebBrowser.action_type", false]], "action_type() \uff08agentscope.service.webbrowser \u65b9\u6cd5\uff09": [[54, "agentscope.service.WebBrowser.action_type", false]], "action_visit_url() \uff08agentscope.service.browser.web_browser.webbrowser \u65b9\u6cd5\uff09": [[56, "agentscope.service.browser.web_browser.WebBrowser.action_visit_url", false]], "action_visit_url() \uff08agentscope.service.webbrowser \u65b9\u6cd5\uff09": [[54, "agentscope.service.WebBrowser.action_visit_url", false]], "add() \uff08agentscope.memory.memory.memorybase \u65b9\u6cd5\uff09": [[15, "agentscope.memory.memory.MemoryBase.add", false]], "add() \uff08agentscope.memory.memorybase \u65b9\u6cd5\uff09": [[14, "agentscope.memory.MemoryBase.add", false]], "add() \uff08agentscope.memory.temporary_memory.temporarymemory \u65b9\u6cd5\uff09": [[16, "agentscope.memory.temporary_memory.TemporaryMemory.add", false]], "add() \uff08agentscope.memory.temporarymemory \u65b9\u6cd5\uff09": [[14, "agentscope.memory.TemporaryMemory.add", false]], "add() \uff08agentscope.msghub.msghubmanager \u65b9\u6cd5\uff09": [[31, "agentscope.msghub.MsgHubManager.add", false]], "add() \uff08agentscope.service.service_toolkit.servicetoolkit \u65b9\u6cd5\uff09": [[73, "agentscope.service.service_toolkit.ServiceToolkit.add", false]], "add() \uff08agentscope.service.servicetoolkit \u65b9\u6cd5\uff09": [[54, "agentscope.service.ServiceToolkit.add", false]], "add_as_node() \uff08agentscope.web.workstation.workflow_dag.asdigraph \u65b9\u6cd5\uff09": [[102, "agentscope.web.workstation.workflow_dag.ASDiGraph.add_as_node", false]], "add_data_as_knowledge() \uff08agentscope.rag.knowledge_bank.knowledgebank \u65b9\u6cd5\uff09": [[44, "agentscope.rag.knowledge_bank.KnowledgeBank.add_data_as_knowledge", false]], "add_data_as_knowledge() \uff08agentscope.rag.knowledgebank \u65b9\u6cd5\uff09": [[42, "agentscope.rag.KnowledgeBank.add_data_as_knowledge", false]], "add_rpcagentservicer_to_server()\uff08\u5728 agentscope.rpc \u6a21\u5757\u4e2d\uff09": [[46, "agentscope.rpc.add_RpcAgentServicer_to_server", false]], "add_rpcagentservicer_to_server()\uff08\u5728 agentscope.rpc.rpc_agent_pb2_grpc \u6a21\u5757\u4e2d\uff09": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.add_RpcAgentServicer_to_server", false]], "agent_exists() \uff08agentscope.server.agentserverservicer \u65b9\u6cd5\uff09": [[51, "agentscope.server.AgentServerServicer.agent_exists", false]], "agent_exists() \uff08agentscope.server.servicer.agentserverservicer \u65b9\u6cd5\uff09": [[53, "agentscope.server.servicer.AgentServerServicer.agent_exists", false]], "agent_id\uff08agentscope.agents.agent.agentbase \u5c5e\u6027\uff09": [[2, "agentscope.agents.agent.AgentBase.agent_id", false]], "agent_id\uff08agentscope.agents.agentbase \u5c5e\u6027\uff09": [[1, "agentscope.agents.AgentBase.agent_id", false]], "agentbase\uff08agentscope.agents \u4e2d\u7684\u7c7b\uff09": [[1, "agentscope.agents.AgentBase", false]], "agentbase\uff08agentscope.agents.agent \u4e2d\u7684\u7c7b\uff09": [[2, "agentscope.agents.agent.AgentBase", false]], "agentcallerror": [[11, "agentscope.exception.AgentCallError", false]], "agentcreationerror": [[11, "agentscope.exception.AgentCreationError", false]], "agentscope": [[0, "module-agentscope", false]], "agentscope.agents": [[1, "module-agentscope.agents", false]], "agentscope.agents.agent": [[2, "module-agentscope.agents.agent", false]], "agentscope.agents.dialog_agent": [[3, "module-agentscope.agents.dialog_agent", false]], "agentscope.agents.dict_dialog_agent": [[4, "module-agentscope.agents.dict_dialog_agent", false]], "agentscope.agents.operator": [[5, "module-agentscope.agents.operator", false]], "agentscope.agents.rag_agent": [[6, "module-agentscope.agents.rag_agent", false]], "agentscope.agents.react_agent": [[7, "module-agentscope.agents.react_agent", false]], "agentscope.agents.rpc_agent": [[8, "module-agentscope.agents.rpc_agent", false]], "agentscope.agents.user_agent": [[9, "module-agentscope.agents.user_agent", false]], "agentscope.constants": [[10, "module-agentscope.constants", false]], "agentscope.exception": [[11, "module-agentscope.exception", false]], "agentscope.logging": [[12, "module-agentscope.logging", false]], "agentscope.manager": [[13, "module-agentscope.manager", false]], "agentscope.memory": [[14, "module-agentscope.memory", false]], "agentscope.memory.memory": [[15, "module-agentscope.memory.memory", false]], "agentscope.memory.temporary_memory": [[16, "module-agentscope.memory.temporary_memory", false]], "agentscope.message": [[17, "module-agentscope.message", false]], "agentscope.message.msg": [[18, "module-agentscope.message.msg", false]], "agentscope.message.placeholder": [[19, "module-agentscope.message.placeholder", false]], "agentscope.models": [[20, "module-agentscope.models", false]], "agentscope.models.dashscope_model": [[21, "module-agentscope.models.dashscope_model", false]], "agentscope.models.gemini_model": [[22, "module-agentscope.models.gemini_model", false]], "agentscope.models.litellm_model": [[23, "module-agentscope.models.litellm_model", false]], "agentscope.models.model": [[24, "module-agentscope.models.model", false]], "agentscope.models.ollama_model": [[25, "module-agentscope.models.ollama_model", false]], "agentscope.models.openai_model": [[26, "module-agentscope.models.openai_model", false]], "agentscope.models.post_model": [[27, "module-agentscope.models.post_model", false]], "agentscope.models.response": [[28, "module-agentscope.models.response", false]], "agentscope.models.yi_model": [[29, "module-agentscope.models.yi_model", false]], "agentscope.models.zhipu_model": [[30, "module-agentscope.models.zhipu_model", false]], "agentscope.msghub": [[31, "module-agentscope.msghub", false]], "agentscope.parsers": [[32, "module-agentscope.parsers", false]], "agentscope.parsers.code_block_parser": [[33, "module-agentscope.parsers.code_block_parser", false]], "agentscope.parsers.json_object_parser": [[34, "module-agentscope.parsers.json_object_parser", false]], "agentscope.parsers.parser_base": [[35, "module-agentscope.parsers.parser_base", false]], "agentscope.parsers.regex_tagged_content_parser": [[36, "module-agentscope.parsers.regex_tagged_content_parser", false]], "agentscope.parsers.tagged_content_parser": [[37, "module-agentscope.parsers.tagged_content_parser", false]], "agentscope.pipelines": [[38, "module-agentscope.pipelines", false]], "agentscope.pipelines.functional": [[39, "module-agentscope.pipelines.functional", false]], "agentscope.pipelines.pipeline": [[40, "module-agentscope.pipelines.pipeline", false]], "agentscope.prompt": [[41, "module-agentscope.prompt", false]], "agentscope.rag": [[42, "module-agentscope.rag", false]], "agentscope.rag.knowledge": [[43, "module-agentscope.rag.knowledge", false]], "agentscope.rag.knowledge_bank": [[44, "module-agentscope.rag.knowledge_bank", false]], "agentscope.rag.llama_index_knowledge": [[45, "module-agentscope.rag.llama_index_knowledge", false]], "agentscope.rpc": [[46, "module-agentscope.rpc", false]], "agentscope.rpc.rpc_agent_client": [[47, "module-agentscope.rpc.rpc_agent_client", false]], "agentscope.rpc.rpc_agent_pb2": [[48, "module-agentscope.rpc.rpc_agent_pb2", false]], "agentscope.rpc.rpc_agent_pb2_grpc": [[49, "module-agentscope.rpc.rpc_agent_pb2_grpc", false]], "agentscope.serialize": [[50, "module-agentscope.serialize", false]], "agentscope.server": [[51, "module-agentscope.server", false]], "agentscope.server.launcher": [[52, "module-agentscope.server.launcher", false]], "agentscope.server.servicer": [[53, "module-agentscope.server.servicer", false]], "agentscope.service": [[54, "module-agentscope.service", false]], "agentscope.service.browser": [[55, "module-agentscope.service.browser", false]], "agentscope.service.browser.web_browser": [[56, "module-agentscope.service.browser.web_browser", false]], "agentscope.service.execute_code": [[57, "module-agentscope.service.execute_code", false]], "agentscope.service.execute_code.exec_notebook": [[58, "module-agentscope.service.execute_code.exec_notebook", false]], "agentscope.service.execute_code.exec_python": [[59, "module-agentscope.service.execute_code.exec_python", false]], "agentscope.service.execute_code.exec_shell": [[60, "module-agentscope.service.execute_code.exec_shell", false]], "agentscope.service.file": [[61, "module-agentscope.service.file", false]], "agentscope.service.file.common": [[62, "module-agentscope.service.file.common", false]], "agentscope.service.file.json": [[63, "module-agentscope.service.file.json", false]], "agentscope.service.file.text": [[64, "module-agentscope.service.file.text", false]], "agentscope.service.multi_modality": [[65, "module-agentscope.service.multi_modality", false]], "agentscope.service.multi_modality.dashscope_services": [[66, "module-agentscope.service.multi_modality.dashscope_services", false]], "agentscope.service.multi_modality.openai_services": [[67, "module-agentscope.service.multi_modality.openai_services", false]], "agentscope.service.retrieval": [[68, "module-agentscope.service.retrieval", false]], "agentscope.service.retrieval.retrieval_from_list": [[69, "module-agentscope.service.retrieval.retrieval_from_list", false]], "agentscope.service.retrieval.similarity": [[70, "module-agentscope.service.retrieval.similarity", false]], "agentscope.service.service_response": [[71, "module-agentscope.service.service_response", false]], "agentscope.service.service_status": [[72, "module-agentscope.service.service_status", false]], "agentscope.service.service_toolkit": [[73, "module-agentscope.service.service_toolkit", false]], "agentscope.service.sql_query": [[74, "module-agentscope.service.sql_query", false]], "agentscope.service.sql_query.mongodb": [[75, "module-agentscope.service.sql_query.mongodb", false]], "agentscope.service.sql_query.mysql": [[76, "module-agentscope.service.sql_query.mysql", false]], "agentscope.service.sql_query.sqlite": [[77, "module-agentscope.service.sql_query.sqlite", false]], "agentscope.service.text_processing": [[78, "module-agentscope.service.text_processing", false]], "agentscope.service.text_processing.summarization": [[79, "module-agentscope.service.text_processing.summarization", false]], "agentscope.service.web": [[80, "module-agentscope.service.web", false]], "agentscope.service.web.arxiv": [[81, "module-agentscope.service.web.arxiv", false]], "agentscope.service.web.dblp": [[82, "module-agentscope.service.web.dblp", false]], "agentscope.service.web.download": [[83, "module-agentscope.service.web.download", false]], "agentscope.service.web.search": [[84, "module-agentscope.service.web.search", false]], "agentscope.service.web.tripadvisor": [[85, "module-agentscope.service.web.tripadvisor", false]], "agentscope.service.web.web_digest": [[86, "module-agentscope.service.web.web_digest", false]], "agentscope.service.web.wikipedia": [[87, "module-agentscope.service.web.wikipedia", false]], "agentscope.strategy": [[88, "module-agentscope.strategy", false]], "agentscope.strategy.mixture_of_agent": [[89, "module-agentscope.strategy.mixture_of_agent", false]], "agentscope.studio": [[90, "module-agentscope.studio", false]], "agentscope.studio.utils": [[91, "module-agentscope.studio.utils", false]], "agentscope.utils": [[92, "module-agentscope.utils", false]], "agentscope.utils.common": [[93, "module-agentscope.utils.common", false]], "agentscope.utils.token_utils": [[94, "module-agentscope.utils.token_utils", false]], "agentscope.web": [[95, "module-agentscope.web", false]], "agentscope.web.gradio": [[96, "module-agentscope.web.gradio", false]], "agentscope.web.gradio.constants": [[97, "module-agentscope.web.gradio.constants", false]], "agentscope.web.gradio.studio": [[98, "module-agentscope.web.gradio.studio", false]], "agentscope.web.gradio.utils": [[99, "module-agentscope.web.gradio.utils", false]], "agentscope.web.workstation": [[100, "module-agentscope.web.workstation", false]], "agentscope.web.workstation.workflow": [[101, "module-agentscope.web.workstation.workflow", false]], "agentscope.web.workstation.workflow_dag": [[102, "module-agentscope.web.workstation.workflow_dag", false]], "agentscope.web.workstation.workflow_node": [[103, "module-agentscope.web.workstation.workflow_node", false]], "agentscope.web.workstation.workflow_utils": [[104, "module-agentscope.web.workstation.workflow_utils", false]], "agentservererror": [[11, "agentscope.exception.AgentServerError", false]], "agentservernotaliveerror": [[11, "agentscope.exception.AgentServerNotAliveError", false]], "agentserverservicer\uff08agentscope.server \u4e2d\u7684\u7c7b\uff09": [[51, "agentscope.server.AgentServerServicer", false]], "agentserverservicer\uff08agentscope.server.servicer \u4e2d\u7684\u7c7b\uff09": [[53, "agentscope.server.servicer.AgentServerServicer", false]], "agent\uff08agentscope.web.workstation.workflow_node.workflownodetype \u5c5e\u6027\uff09": [[103, "agentscope.web.workstation.workflow_node.WorkflowNodeType.AGENT", false]], "argumentnotfounderror": [[11, "agentscope.exception.ArgumentNotFoundError", false]], "argumenttypeerror": [[11, "agentscope.exception.ArgumentTypeError", false]], "aria_label\uff08agentscope.service.browser.web_browser.webelementinfo \u5c5e\u6027\uff09": [[56, "agentscope.service.browser.web_browser.WebElementInfo.aria_label", false]], "aria_label\uff08agentscope.service.webelementinfo \u5c5e\u6027\uff09": [[54, "agentscope.service.WebElementInfo.aria_label", false]], "arxiv_search()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.arxiv_search", false]], "arxiv_search()\uff08\u5728 agentscope.service.web.arxiv \u6a21\u5757\u4e2d\uff09": [[81, "agentscope.service.web.arxiv.arxiv_search", false]], "as_server()\uff08\u5728 agentscope.server \u6a21\u5757\u4e2d\uff09": [[51, "agentscope.server.as_server", false]], "as_server()\uff08\u5728 agentscope.server.launcher \u6a21\u5757\u4e2d\uff09": [[52, "agentscope.server.launcher.as_server", false]], "asdigraph\uff08agentscope.web.workstation.workflow_dag \u4e2d\u7684\u7c7b\uff09": [[102, "agentscope.web.workstation.workflow_dag.ASDiGraph", false]], "asmanager\uff08agentscope.manager \u4e2d\u7684\u7c7b\uff09": [[13, "agentscope.manager.ASManager", false]], "async_run_code_on_notebook() \uff08agentscope.service.execute_code.exec_notebook.notebookexecutor \u65b9\u6cd5\uff09": [[58, "agentscope.service.execute_code.exec_notebook.NoteBookExecutor.async_run_code_on_notebook", false]], "async_run_code_on_notebook() \uff08agentscope.service.notebookexecutor \u65b9\u6cd5\uff09": [[54, "agentscope.service.NoteBookExecutor.async_run_code_on_notebook", false]], "audio2text()\uff08\u5728 agentscope.web.gradio.utils \u6a21\u5757\u4e2d\uff09": [[99, "agentscope.web.gradio.utils.audio2text", false]], "bing_search()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.bing_search", false]], "bing_search()\uff08\u5728 agentscope.service.web.search \u6a21\u5757\u4e2d\uff09": [[84, "agentscope.service.web.search.bing_search", false]], "bingsearchservicenode\uff08agentscope.web.workstation.workflow_node \u4e2d\u7684\u7c7b\uff09": [[103, "agentscope.web.workstation.workflow_node.BingSearchServiceNode", false]], "broadcast() \uff08agentscope.msghub.msghubmanager \u65b9\u6cd5\uff09": [[31, "agentscope.msghub.MsgHubManager.broadcast", false]], "build_dag()\uff08\u5728 agentscope.web.workstation.workflow_dag \u6a21\u5757\u4e2d\uff09": [[102, "agentscope.web.workstation.workflow_dag.build_dag", false]], "cache_text_embedding() \uff08agentscope.manager.filemanager \u65b9\u6cd5\uff09": [[13, "agentscope.manager.FileManager.cache_text_embedding", false]], "call_agent_func() \uff08agentscope.rpc.rpc_agent_client.rpcagentclient \u65b9\u6cd5\uff09": [[47, "agentscope.rpc.rpc_agent_client.RpcAgentClient.call_agent_func", false]], "call_agent_func() \uff08agentscope.rpc.rpc_agent_pb2_grpc.rpcagentservicer \u65b9\u6cd5\uff09": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgentServicer.call_agent_func", false]], "call_agent_func() \uff08agentscope.rpc.rpcagentclient \u65b9\u6cd5\uff09": [[46, "agentscope.rpc.RpcAgentClient.call_agent_func", false]], "call_agent_func() \uff08agentscope.rpc.rpcagentservicer \u65b9\u6cd5\uff09": [[46, "agentscope.rpc.RpcAgentServicer.call_agent_func", false]], "call_agent_func() \uff08agentscope.server.agentserverservicer \u65b9\u6cd5\uff09": [[51, "agentscope.server.AgentServerServicer.call_agent_func", false]], "call_agent_func() \uff08agentscope.server.servicer.agentserverservicer \u65b9\u6cd5\uff09": [[53, "agentscope.server.servicer.AgentServerServicer.call_agent_func", false]], "call_agent_func()\uff08agentscope.rpc.rpc_agent_pb2_grpc.rpcagent \u9759\u6001\u65b9\u6cd5\uff09": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgent.call_agent_func", false]], "call_in_thread()\uff08\u5728 agentscope.rpc \u6a21\u5757\u4e2d\uff09": [[46, "agentscope.rpc.call_in_thread", false]], "call_in_thread()\uff08\u5728 agentscope.rpc.rpc_agent_client \u6a21\u5757\u4e2d\uff09": [[47, "agentscope.rpc.rpc_agent_client.call_in_thread", false]], "cells_length\uff08agentscope.service.execute_code.exec_notebook.notebookexecutor \u5c5e\u6027\uff09": [[58, "agentscope.service.execute_code.exec_notebook.NoteBookExecutor.cells_length", false]], "cells_length\uff08agentscope.service.notebookexecutor \u5c5e\u6027\uff09": [[54, "agentscope.service.NoteBookExecutor.cells_length", false]], "check_uuid()\uff08\u5728 agentscope.web.gradio.utils \u6a21\u5757\u4e2d\uff09": [[99, "agentscope.web.gradio.utils.check_uuid", false]], "chinesesystempromptgenerator\uff08agentscope.prompt \u4e2d\u7684\u7c7b\uff09": [[41, "agentscope.prompt.ChineseSystemPromptGenerator", false]], "clear() \uff08agentscope.memory.memory.memorybase \u65b9\u6cd5\uff09": [[15, "agentscope.memory.memory.MemoryBase.clear", false]], "clear() \uff08agentscope.memory.memorybase \u65b9\u6cd5\uff09": [[14, "agentscope.memory.MemoryBase.clear", false]], "clear() \uff08agentscope.memory.temporary_memory.temporarymemory \u65b9\u6cd5\uff09": [[16, "agentscope.memory.temporary_memory.TemporaryMemory.clear", false]], "clear() \uff08agentscope.memory.temporarymemory \u65b9\u6cd5\uff09": [[14, "agentscope.memory.TemporaryMemory.clear", false]], "clear_audience() \uff08agentscope.agents.agent.agentbase \u65b9\u6cd5\uff09": [[2, "agentscope.agents.agent.AgentBase.clear_audience", false]], "clear_audience() \uff08agentscope.agents.agentbase \u65b9\u6cd5\uff09": [[1, "agentscope.agents.AgentBase.clear_audience", false]], "clear_model_configs() \uff08agentscope.manager.modelmanager \u65b9\u6cd5\uff09": [[13, "agentscope.manager.ModelManager.clear_model_configs", false]], "clone_agent() \uff08agentscope.rpc.rpc_agent_client.rpcagentclient \u65b9\u6cd5\uff09": [[47, "agentscope.rpc.rpc_agent_client.RpcAgentClient.clone_agent", false]], "clone_agent() \uff08agentscope.rpc.rpc_agent_pb2_grpc.rpcagentservicer \u65b9\u6cd5\uff09": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgentServicer.clone_agent", false]], "clone_agent() \uff08agentscope.rpc.rpcagentclient \u65b9\u6cd5\uff09": [[46, "agentscope.rpc.RpcAgentClient.clone_agent", false]], "clone_agent() \uff08agentscope.rpc.rpcagentservicer \u65b9\u6cd5\uff09": [[46, "agentscope.rpc.RpcAgentServicer.clone_agent", false]], "clone_agent() \uff08agentscope.server.agentserverservicer \u65b9\u6cd5\uff09": [[51, "agentscope.server.AgentServerServicer.clone_agent", false]], "clone_agent() \uff08agentscope.server.servicer.agentserverservicer \u65b9\u6cd5\uff09": [[53, "agentscope.server.servicer.AgentServerServicer.clone_agent", false]], "clone_agent()\uff08agentscope.rpc.rpc_agent_pb2_grpc.rpcagent \u9759\u6001\u65b9\u6cd5\uff09": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgent.clone_agent", false]], "clone_instances() \uff08agentscope.agents.rpc_agent.rpcagent \u65b9\u6cd5\uff09": [[8, "agentscope.agents.rpc_agent.RpcAgent.clone_instances", false]], "clone_instances() \uff08agentscope.agents.rpcagent \u65b9\u6cd5\uff09": [[1, "agentscope.agents.RpcAgent.clone_instances", false]], "close() \uff08agentscope.service.browser.web_browser.webbrowser \u65b9\u6cd5\uff09": [[56, "agentscope.service.browser.web_browser.WebBrowser.close", false]], "close() \uff08agentscope.service.webbrowser \u65b9\u6cd5\uff09": [[54, "agentscope.service.WebBrowser.close", false]], "code_dir\uff08agentscope.manager.filemanager \u5c5e\u6027\uff09": [[13, "agentscope.manager.FileManager.code_dir", false]], "compare_in_dialog() \uff08agentscope.prompt.systempromptcomparer \u65b9\u6cd5\uff09": [[41, "agentscope.prompt.SystemPromptComparer.compare_in_dialog", false]], "compare_with_queries() \uff08agentscope.prompt.systempromptcomparer \u65b9\u6cd5\uff09": [[41, "agentscope.prompt.SystemPromptComparer.compare_with_queries", false]], "compile() \uff08agentscope.web.workstation.workflow_dag.asdigraph \u65b9\u6cd5\uff09": [[102, "agentscope.web.workstation.workflow_dag.ASDiGraph.compile", false]], "compile() \uff08agentscope.web.workstation.workflow_node.bingsearchservicenode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.BingSearchServiceNode.compile", false]], "compile() \uff08agentscope.web.workstation.workflow_node.copynode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.CopyNode.compile", false]], "compile() \uff08agentscope.web.workstation.workflow_node.dialogagentnode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.DialogAgentNode.compile", false]], "compile() \uff08agentscope.web.workstation.workflow_node.dictdialogagentnode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.DictDialogAgentNode.compile", false]], "compile() \uff08agentscope.web.workstation.workflow_node.forlooppipelinenode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.ForLoopPipelineNode.compile", false]], "compile() \uff08agentscope.web.workstation.workflow_node.googlesearchservicenode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.GoogleSearchServiceNode.compile", false]], "compile() \uff08agentscope.web.workstation.workflow_node.ifelsepipelinenode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.IfElsePipelineNode.compile", false]], "compile() \uff08agentscope.web.workstation.workflow_node.modelnode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.ModelNode.compile", false]], "compile() \uff08agentscope.web.workstation.workflow_node.msghubnode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.MsgHubNode.compile", false]], "compile() \uff08agentscope.web.workstation.workflow_node.msgnode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.MsgNode.compile", false]], "compile() \uff08agentscope.web.workstation.workflow_node.placeholdernode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.PlaceHolderNode.compile", false]], "compile() \uff08agentscope.web.workstation.workflow_node.pythonservicenode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.PythonServiceNode.compile", false]], "compile() \uff08agentscope.web.workstation.workflow_node.reactagentnode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.ReActAgentNode.compile", false]], "compile() \uff08agentscope.web.workstation.workflow_node.readtextservicenode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.ReadTextServiceNode.compile", false]], "compile() \uff08agentscope.web.workstation.workflow_node.sequentialpipelinenode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.SequentialPipelineNode.compile", false]], "compile() \uff08agentscope.web.workstation.workflow_node.switchpipelinenode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.SwitchPipelineNode.compile", false]], "compile() \uff08agentscope.web.workstation.workflow_node.useragentnode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.UserAgentNode.compile", false]], "compile() \uff08agentscope.web.workstation.workflow_node.whilelooppipelinenode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.WhileLoopPipelineNode.compile", false]], "compile() \uff08agentscope.web.workstation.workflow_node.workflownode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.WorkflowNode.compile", false]], "compile() \uff08agentscope.web.workstation.workflow_node.writetextservicenode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.WriteTextServiceNode.compile", false]], "compile_workflow()\uff08\u5728 agentscope.web.workstation.workflow \u6a21\u5757\u4e2d\uff09": [[101, "agentscope.web.workstation.workflow.compile_workflow", false]], "config_name\uff08agentscope.models.dashscope_model.dashscopechatwrapper \u5c5e\u6027\uff09": [[21, "agentscope.models.dashscope_model.DashScopeChatWrapper.config_name", false]], "config_name\uff08agentscope.models.dashscope_model.dashscopeimagesynthesiswrapper \u5c5e\u6027\uff09": [[21, "agentscope.models.dashscope_model.DashScopeImageSynthesisWrapper.config_name", false]], "config_name\uff08agentscope.models.dashscope_model.dashscopemultimodalwrapper \u5c5e\u6027\uff09": [[21, "agentscope.models.dashscope_model.DashScopeMultiModalWrapper.config_name", false]], "config_name\uff08agentscope.models.dashscope_model.dashscopetextembeddingwrapper \u5c5e\u6027\uff09": [[21, "agentscope.models.dashscope_model.DashScopeTextEmbeddingWrapper.config_name", false]], "config_name\uff08agentscope.models.gemini_model.geminichatwrapper \u5c5e\u6027\uff09": [[22, "agentscope.models.gemini_model.GeminiChatWrapper.config_name", false]], "config_name\uff08agentscope.models.gemini_model.geminiembeddingwrapper \u5c5e\u6027\uff09": [[22, "agentscope.models.gemini_model.GeminiEmbeddingWrapper.config_name", false]], "config_name\uff08agentscope.models.litellm_model.litellmchatwrapper \u5c5e\u6027\uff09": [[23, "agentscope.models.litellm_model.LiteLLMChatWrapper.config_name", false]], "config_name\uff08agentscope.models.model.modelwrapperbase \u5c5e\u6027\uff09": [[24, "agentscope.models.model.ModelWrapperBase.config_name", false]], "config_name\uff08agentscope.models.modelwrapperbase \u5c5e\u6027\uff09": [[20, "agentscope.models.ModelWrapperBase.config_name", false]], "config_name\uff08agentscope.models.ollama_model.ollamachatwrapper \u5c5e\u6027\uff09": [[25, "agentscope.models.ollama_model.OllamaChatWrapper.config_name", false]], "config_name\uff08agentscope.models.ollama_model.ollamaembeddingwrapper \u5c5e\u6027\uff09": [[25, "agentscope.models.ollama_model.OllamaEmbeddingWrapper.config_name", false]], "config_name\uff08agentscope.models.ollama_model.ollamagenerationwrapper \u5c5e\u6027\uff09": [[25, "agentscope.models.ollama_model.OllamaGenerationWrapper.config_name", false]], "config_name\uff08agentscope.models.openai_model.openaichatwrapper \u5c5e\u6027\uff09": [[26, "agentscope.models.openai_model.OpenAIChatWrapper.config_name", false]], "config_name\uff08agentscope.models.openai_model.openaidallewrapper \u5c5e\u6027\uff09": [[26, "agentscope.models.openai_model.OpenAIDALLEWrapper.config_name", false]], "config_name\uff08agentscope.models.openai_model.openaiembeddingwrapper \u5c5e\u6027\uff09": [[26, "agentscope.models.openai_model.OpenAIEmbeddingWrapper.config_name", false]], "config_name\uff08agentscope.models.post_model.postapichatwrapper \u5c5e\u6027\uff09": [[27, "agentscope.models.post_model.PostAPIChatWrapper.config_name", false]], "config_name\uff08agentscope.models.post_model.postapimodelwrapperbase \u5c5e\u6027\uff09": [[27, "agentscope.models.post_model.PostAPIModelWrapperBase.config_name", false]], "config_name\uff08agentscope.models.yi_model.yichatwrapper \u5c5e\u6027\uff09": [[29, "agentscope.models.yi_model.YiChatWrapper.config_name", false]], "config_name\uff08agentscope.models.zhipu_model.zhipuaichatwrapper \u5c5e\u6027\uff09": [[30, "agentscope.models.zhipu_model.ZhipuAIChatWrapper.config_name", false]], "config_name\uff08agentscope.models.zhipu_model.zhipuaiembeddingwrapper \u5c5e\u6027\uff09": [[30, "agentscope.models.zhipu_model.ZhipuAIEmbeddingWrapper.config_name", false]], "content_hint\uff08agentscope.parsers.code_block_parser.markdowncodeblockparser \u5c5e\u6027\uff09": [[33, "agentscope.parsers.code_block_parser.MarkdownCodeBlockParser.content_hint", false]], "content_hint\uff08agentscope.parsers.json_object_parser.markdownjsondictparser \u5c5e\u6027\uff09": [[34, "agentscope.parsers.json_object_parser.MarkdownJsonDictParser.content_hint", false]], "content_hint\uff08agentscope.parsers.json_object_parser.markdownjsonobjectparser \u5c5e\u6027\uff09": [[34, "agentscope.parsers.json_object_parser.MarkdownJsonObjectParser.content_hint", false]], "content_hint\uff08agentscope.parsers.markdowncodeblockparser \u5c5e\u6027\uff09": [[32, "agentscope.parsers.MarkdownCodeBlockParser.content_hint", false]], "content_hint\uff08agentscope.parsers.markdownjsondictparser \u5c5e\u6027\uff09": [[32, "agentscope.parsers.MarkdownJsonDictParser.content_hint", false]], "content_hint\uff08agentscope.parsers.markdownjsonobjectparser \u5c5e\u6027\uff09": [[32, "agentscope.parsers.MarkdownJsonObjectParser.content_hint", false]], "content_hint\uff08agentscope.parsers.tagged_content_parser.taggedcontent \u5c5e\u6027\uff09": [[37, "agentscope.parsers.tagged_content_parser.TaggedContent.content_hint", false]], "content_hint\uff08agentscope.parsers.taggedcontent \u5c5e\u6027\uff09": [[32, "agentscope.parsers.TaggedContent.content_hint", false]], "content\uff08agentscope.message.msg \u5c5e\u6027\uff09": [[17, "agentscope.message.Msg.content", false]], "content\uff08agentscope.message.msg.msg \u5c5e\u6027\uff09": [[18, "agentscope.message.msg.Msg.content", false]], "content\uff08agentscope.message.placeholder.placeholdermessage \u5c5e\u6027\uff09": [[19, "agentscope.message.placeholder.PlaceholderMessage.content", false]], "content\uff08agentscope.message.placeholdermessage \u5c5e\u6027\uff09": [[17, "agentscope.message.PlaceholderMessage.content", false]], "convert_url() \uff08agentscope.models.dashscope_model.dashscopemultimodalwrapper \u65b9\u6cd5\uff09": [[21, "agentscope.models.dashscope_model.DashScopeMultiModalWrapper.convert_url", false]], "convert_url() \uff08agentscope.models.dashscopemultimodalwrapper \u65b9\u6cd5\uff09": [[20, "agentscope.models.DashScopeMultiModalWrapper.convert_url", false]], "copynode\uff08agentscope.web.workstation.workflow_node \u4e2d\u7684\u7c7b\uff09": [[103, "agentscope.web.workstation.workflow_node.CopyNode", false]], "copy\uff08agentscope.web.workstation.workflow_node.workflownodetype \u5c5e\u6027\uff09": [[103, "agentscope.web.workstation.workflow_node.WorkflowNodeType.COPY", false]], "cos_sim()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.cos_sim", false]], "cos_sim()\uff08\u5728 agentscope.service.retrieval.similarity \u6a21\u5757\u4e2d\uff09": [[70, "agentscope.service.retrieval.similarity.cos_sim", false]], "count_openai_token()\uff08\u5728 agentscope.utils.token_utils \u6a21\u5757\u4e2d\uff09": [[94, "agentscope.utils.token_utils.count_openai_token", false]], "create_agent() \uff08agentscope.rpc.rpc_agent_client.rpcagentclient \u65b9\u6cd5\uff09": [[47, "agentscope.rpc.rpc_agent_client.RpcAgentClient.create_agent", false]], "create_agent() \uff08agentscope.rpc.rpc_agent_pb2_grpc.rpcagentservicer \u65b9\u6cd5\uff09": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgentServicer.create_agent", false]], "create_agent() \uff08agentscope.rpc.rpcagentclient \u65b9\u6cd5\uff09": [[46, "agentscope.rpc.RpcAgentClient.create_agent", false]], "create_agent() \uff08agentscope.rpc.rpcagentservicer \u65b9\u6cd5\uff09": [[46, "agentscope.rpc.RpcAgentServicer.create_agent", false]], "create_agent() \uff08agentscope.server.agentserverservicer \u65b9\u6cd5\uff09": [[51, "agentscope.server.AgentServerServicer.create_agent", false]], "create_agent() \uff08agentscope.server.servicer.agentserverservicer \u65b9\u6cd5\uff09": [[53, "agentscope.server.servicer.AgentServerServicer.create_agent", false]], "create_agent()\uff08agentscope.rpc.rpc_agent_pb2_grpc.rpcagent \u9759\u6001\u65b9\u6cd5\uff09": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgent.create_agent", false]], "create_directory()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.create_directory", false]], "create_directory()\uff08\u5728 agentscope.service.file.common \u6a21\u5757\u4e2d\uff09": [[62, "agentscope.service.file.common.create_directory", false]], "create_file()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.create_file", false]], "create_file()\uff08\u5728 agentscope.service.file.common \u6a21\u5757\u4e2d\uff09": [[62, "agentscope.service.file.common.create_file", false]], "create_tempdir()\uff08\u5728 agentscope.utils.common \u6a21\u5757\u4e2d\uff09": [[93, "agentscope.utils.common.create_tempdir", false]], "cycle_dots()\uff08\u5728 agentscope.web.gradio.utils \u6a21\u5757\u4e2d\uff09": [[99, "agentscope.web.gradio.utils.cycle_dots", false]], "dashscope_image_to_text()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.dashscope_image_to_text", false]], "dashscope_image_to_text()\uff08\u5728 agentscope.service.multi_modality.dashscope_services \u6a21\u5757\u4e2d\uff09": [[66, "agentscope.service.multi_modality.dashscope_services.dashscope_image_to_text", false]], "dashscope_text_to_audio()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.dashscope_text_to_audio", false]], "dashscope_text_to_audio()\uff08\u5728 agentscope.service.multi_modality.dashscope_services \u6a21\u5757\u4e2d\uff09": [[66, "agentscope.service.multi_modality.dashscope_services.dashscope_text_to_audio", false]], "dashscope_text_to_image()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.dashscope_text_to_image", false]], "dashscope_text_to_image()\uff08\u5728 agentscope.service.multi_modality.dashscope_services \u6a21\u5757\u4e2d\uff09": [[66, "agentscope.service.multi_modality.dashscope_services.dashscope_text_to_image", false]], "dashscopechatwrapper\uff08agentscope.models \u4e2d\u7684\u7c7b\uff09": [[20, "agentscope.models.DashScopeChatWrapper", false]], "dashscopechatwrapper\uff08agentscope.models.dashscope_model \u4e2d\u7684\u7c7b\uff09": [[21, "agentscope.models.dashscope_model.DashScopeChatWrapper", false]], "dashscopeimagesynthesiswrapper\uff08agentscope.models \u4e2d\u7684\u7c7b\uff09": [[20, "agentscope.models.DashScopeImageSynthesisWrapper", false]], "dashscopeimagesynthesiswrapper\uff08agentscope.models.dashscope_model \u4e2d\u7684\u7c7b\uff09": [[21, "agentscope.models.dashscope_model.DashScopeImageSynthesisWrapper", false]], "dashscopemultimodalwrapper\uff08agentscope.models \u4e2d\u7684\u7c7b\uff09": [[20, "agentscope.models.DashScopeMultiModalWrapper", false]], "dashscopemultimodalwrapper\uff08agentscope.models.dashscope_model \u4e2d\u7684\u7c7b\uff09": [[21, "agentscope.models.dashscope_model.DashScopeMultiModalWrapper", false]], "dashscopetextembeddingwrapper\uff08agentscope.models \u4e2d\u7684\u7c7b\uff09": [[20, "agentscope.models.DashScopeTextEmbeddingWrapper", false]], "dashscopetextembeddingwrapper\uff08agentscope.models.dashscope_model \u4e2d\u7684\u7c7b\uff09": [[21, "agentscope.models.dashscope_model.DashScopeTextEmbeddingWrapper", false]], "dashscopewrapperbase\uff08agentscope.models.dashscope_model \u4e2d\u7684\u7c7b\uff09": [[21, "agentscope.models.dashscope_model.DashScopeWrapperBase", false]], "dblp_search_authors()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.dblp_search_authors", false]], "dblp_search_authors()\uff08\u5728 agentscope.service.web.dblp \u6a21\u5757\u4e2d\uff09": [[82, "agentscope.service.web.dblp.dblp_search_authors", false]], "dblp_search_publications()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.dblp_search_publications", false]], "dblp_search_publications()\uff08\u5728 agentscope.service.web.dblp \u6a21\u5757\u4e2d\uff09": [[82, "agentscope.service.web.dblp.dblp_search_publications", false]], "dblp_search_venues()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.dblp_search_venues", false]], "dblp_search_venues()\uff08\u5728 agentscope.service.web.dblp \u6a21\u5757\u4e2d\uff09": [[82, "agentscope.service.web.dblp.dblp_search_venues", false]], "decode_jwt()\uff08\u5728 agentscope.studio.utils \u6a21\u5757\u4e2d\uff09": [[91, "agentscope.studio.utils.decode_jwt", false]], "delete() \uff08agentscope.memory.memory.memorybase \u65b9\u6cd5\uff09": [[15, "agentscope.memory.memory.MemoryBase.delete", false]], "delete() \uff08agentscope.memory.memorybase \u65b9\u6cd5\uff09": [[14, "agentscope.memory.MemoryBase.delete", false]], "delete() \uff08agentscope.memory.temporary_memory.temporarymemory \u65b9\u6cd5\uff09": [[16, "agentscope.memory.temporary_memory.TemporaryMemory.delete", false]], "delete() \uff08agentscope.memory.temporarymemory \u65b9\u6cd5\uff09": [[14, "agentscope.memory.TemporaryMemory.delete", false]], "delete() \uff08agentscope.msghub.msghubmanager \u65b9\u6cd5\uff09": [[31, "agentscope.msghub.MsgHubManager.delete", false]], "delete_agent() \uff08agentscope.rpc.rpc_agent_client.rpcagentclient \u65b9\u6cd5\uff09": [[47, "agentscope.rpc.rpc_agent_client.RpcAgentClient.delete_agent", false]], "delete_agent() \uff08agentscope.rpc.rpc_agent_pb2_grpc.rpcagentservicer \u65b9\u6cd5\uff09": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgentServicer.delete_agent", false]], "delete_agent() \uff08agentscope.rpc.rpcagentclient \u65b9\u6cd5\uff09": [[46, "agentscope.rpc.RpcAgentClient.delete_agent", false]], "delete_agent() \uff08agentscope.rpc.rpcagentservicer \u65b9\u6cd5\uff09": [[46, "agentscope.rpc.RpcAgentServicer.delete_agent", false]], "delete_agent() \uff08agentscope.server.agentserverservicer \u65b9\u6cd5\uff09": [[51, "agentscope.server.AgentServerServicer.delete_agent", false]], "delete_agent() \uff08agentscope.server.servicer.agentserverservicer \u65b9\u6cd5\uff09": [[53, "agentscope.server.servicer.AgentServerServicer.delete_agent", false]], "delete_agent()\uff08agentscope.rpc.rpc_agent_pb2_grpc.rpcagent \u9759\u6001\u65b9\u6cd5\uff09": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgent.delete_agent", false]], "delete_all_agent() \uff08agentscope.rpc.rpc_agent_client.rpcagentclient \u65b9\u6cd5\uff09": [[47, "agentscope.rpc.rpc_agent_client.RpcAgentClient.delete_all_agent", false]], "delete_all_agent() \uff08agentscope.rpc.rpcagentclient \u65b9\u6cd5\uff09": [[46, "agentscope.rpc.RpcAgentClient.delete_all_agent", false]], "delete_all_agents() \uff08agentscope.rpc.rpc_agent_pb2_grpc.rpcagentservicer \u65b9\u6cd5\uff09": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgentServicer.delete_all_agents", false]], "delete_all_agents() \uff08agentscope.rpc.rpcagentservicer \u65b9\u6cd5\uff09": [[46, "agentscope.rpc.RpcAgentServicer.delete_all_agents", false]], "delete_all_agents() \uff08agentscope.server.agentserverservicer \u65b9\u6cd5\uff09": [[51, "agentscope.server.AgentServerServicer.delete_all_agents", false]], "delete_all_agents() \uff08agentscope.server.servicer.agentserverservicer \u65b9\u6cd5\uff09": [[53, "agentscope.server.servicer.AgentServerServicer.delete_all_agents", false]], "delete_all_agents()\uff08agentscope.rpc.rpc_agent_pb2_grpc.rpcagent \u9759\u6001\u65b9\u6cd5\uff09": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgent.delete_all_agents", false]], "delete_directory()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.delete_directory", false]], "delete_directory()\uff08\u5728 agentscope.service.file.common \u6a21\u5757\u4e2d\uff09": [[62, "agentscope.service.file.common.delete_directory", false]], "delete_file()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.delete_file", false]], "delete_file()\uff08\u5728 agentscope.service.file.common \u6a21\u5757\u4e2d\uff09": [[62, "agentscope.service.file.common.delete_file", false]], "deprecated_model_type\uff08agentscope.models.dashscope_model.dashscopechatwrapper \u5c5e\u6027\uff09": [[21, "agentscope.models.dashscope_model.DashScopeChatWrapper.deprecated_model_type", false]], "deprecated_model_type\uff08agentscope.models.dashscopechatwrapper \u5c5e\u6027\uff09": [[20, "agentscope.models.DashScopeChatWrapper.deprecated_model_type", false]], "deprecated_model_type\uff08agentscope.models.openai_model.openaichatwrapper \u5c5e\u6027\uff09": [[26, "agentscope.models.openai_model.OpenAIChatWrapper.deprecated_model_type", false]], "deprecated_model_type\uff08agentscope.models.openaichatwrapper \u5c5e\u6027\uff09": [[20, "agentscope.models.OpenAIChatWrapper.deprecated_model_type", false]], "deprecated_model_type\uff08agentscope.models.post_model.postapidallewrapper \u5c5e\u6027\uff09": [[27, "agentscope.models.post_model.PostAPIDALLEWrapper.deprecated_model_type", false]], "deps_converter()\uff08\u5728 agentscope.web.workstation.workflow_utils \u6a21\u5757\u4e2d\uff09": [[104, "agentscope.web.workstation.workflow_utils.deps_converter", false]], "descriptor\uff08agentscope.rpc.rpcmsg \u5c5e\u6027\uff09": [[46, "agentscope.rpc.RpcMsg.DESCRIPTOR", false]], "deserialize()\uff08\u5728 agentscope.serialize \u6a21\u5757\u4e2d\uff09": [[50, "agentscope.serialize.deserialize", false]], "dialogagentnode\uff08agentscope.web.workstation.workflow_node \u4e2d\u7684\u7c7b\uff09": [[103, "agentscope.web.workstation.workflow_node.DialogAgentNode", false]], "dialogagent\uff08agentscope.agents \u4e2d\u7684\u7c7b\uff09": [[1, "agentscope.agents.DialogAgent", false]], "dialogagent\uff08agentscope.agents.dialog_agent \u4e2d\u7684\u7c7b\uff09": [[3, "agentscope.agents.dialog_agent.DialogAgent", false]], "dict_converter()\uff08\u5728 agentscope.web.workstation.workflow_utils \u6a21\u5757\u4e2d\uff09": [[104, "agentscope.web.workstation.workflow_utils.dict_converter", false]], "dictdialogagentnode\uff08agentscope.web.workstation.workflow_node \u4e2d\u7684\u7c7b\uff09": [[103, "agentscope.web.workstation.workflow_node.DictDialogAgentNode", false]], "dictdialogagent\uff08agentscope.agents \u4e2d\u7684\u7c7b\uff09": [[1, "agentscope.agents.DictDialogAgent", false]], "dictdialogagent\uff08agentscope.agents.dict_dialog_agent \u4e2d\u7684\u7c7b\uff09": [[4, "agentscope.agents.dict_dialog_agent.DictDialogAgent", false]], "dictfiltermixin\uff08agentscope.parsers.parser_base \u4e2d\u7684\u7c7b\uff09": [[35, "agentscope.parsers.parser_base.DictFilterMixin", false]], "digest_webpage()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.digest_webpage", false]], "digest_webpage()\uff08\u5728 agentscope.service.web.web_digest \u6a21\u5757\u4e2d\uff09": [[86, "agentscope.service.web.web_digest.digest_webpage", false]], "distconf\uff08agentscope.agents \u4e2d\u7684\u7c7b\uff09": [[1, "agentscope.agents.DistConf", false]], "distconf\uff08agentscope.agents.agent \u4e2d\u7684\u7c7b\uff09": [[2, "agentscope.agents.agent.DistConf", false]], "download_file() \uff08agentscope.rpc.rpc_agent_client.rpcagentclient \u65b9\u6cd5\uff09": [[47, "agentscope.rpc.rpc_agent_client.RpcAgentClient.download_file", false]], "download_file() \uff08agentscope.rpc.rpc_agent_pb2_grpc.rpcagentservicer \u65b9\u6cd5\uff09": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgentServicer.download_file", false]], "download_file() \uff08agentscope.rpc.rpcagentclient \u65b9\u6cd5\uff09": [[46, "agentscope.rpc.RpcAgentClient.download_file", false]], "download_file() \uff08agentscope.rpc.rpcagentservicer \u65b9\u6cd5\uff09": [[46, "agentscope.rpc.RpcAgentServicer.download_file", false]], "download_file() \uff08agentscope.server.agentserverservicer \u65b9\u6cd5\uff09": [[51, "agentscope.server.AgentServerServicer.download_file", false]], "download_file() \uff08agentscope.server.servicer.agentserverservicer \u65b9\u6cd5\uff09": [[53, "agentscope.server.servicer.AgentServerServicer.download_file", false]], "download_file()\uff08agentscope.rpc.rpc_agent_pb2_grpc.rpcagent \u9759\u6001\u65b9\u6cd5\uff09": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgent.download_file", false]], "download_from_url()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.download_from_url", false]], "download_from_url()\uff08\u5728 agentscope.service.web.download \u6a21\u5757\u4e2d\uff09": [[83, "agentscope.service.web.download.download_from_url", false]], "embedding_cache_dir\uff08agentscope.manager.filemanager \u5c5e\u6027\uff09": [[13, "agentscope.manager.FileManager.embedding_cache_dir", false]], "englishsystempromptgenerator\uff08agentscope.prompt \u4e2d\u7684\u7c7b\uff09": [[41, "agentscope.prompt.EnglishSystemPromptGenerator", false]], "equip() \uff08agentscope.rag.knowledge_bank.knowledgebank \u65b9\u6cd5\uff09": [[44, "agentscope.rag.knowledge_bank.KnowledgeBank.equip", false]], "equip() \uff08agentscope.rag.knowledgebank \u65b9\u6cd5\uff09": [[42, "agentscope.rag.KnowledgeBank.equip", false]], "error\uff08agentscope.service.service_status.serviceexecstatus \u5c5e\u6027\uff09": [[72, "agentscope.service.service_status.ServiceExecStatus.ERROR", false]], "error\uff08agentscope.service.serviceexecstatus \u5c5e\u6027\uff09": [[54, "agentscope.service.ServiceExecStatus.ERROR", false]], "exec_node() \uff08agentscope.web.workstation.workflow_dag.asdigraph \u65b9\u6cd5\uff09": [[102, "agentscope.web.workstation.workflow_dag.ASDiGraph.exec_node", false]], "execute_python_code()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.execute_python_code", false]], "execute_python_code()\uff08\u5728 agentscope.service.execute_code.exec_python \u6a21\u5757\u4e2d\uff09": [[59, "agentscope.service.execute_code.exec_python.execute_python_code", false]], "execute_shell_command()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.execute_shell_command", false]], "execute_shell_command()\uff08\u5728 agentscope.service.execute_code.exec_shell \u6a21\u5757\u4e2d\uff09": [[60, "agentscope.service.execute_code.exec_shell.execute_shell_command", false]], "export() \uff08agentscope.memory.memory.memorybase \u65b9\u6cd5\uff09": [[15, "agentscope.memory.memory.MemoryBase.export", false]], "export() \uff08agentscope.memory.memorybase \u65b9\u6cd5\uff09": [[14, "agentscope.memory.MemoryBase.export", false]], "export() \uff08agentscope.memory.temporary_memory.temporarymemory \u65b9\u6cd5\uff09": [[16, "agentscope.memory.temporary_memory.TemporaryMemory.export", false]], "export() \uff08agentscope.memory.temporarymemory \u65b9\u6cd5\uff09": [[14, "agentscope.memory.TemporaryMemory.export", false]], "fetch_cached_text_embedding() \uff08agentscope.manager.filemanager \u65b9\u6cd5\uff09": [[13, "agentscope.manager.FileManager.fetch_cached_text_embedding", false]], "file_dir\uff08agentscope.manager.filemanager \u5c5e\u6027\uff09": [[13, "agentscope.manager.FileManager.file_dir", false]], "filemanager\uff08agentscope.manager \u4e2d\u7684\u7c7b\uff09": [[13, "agentscope.manager.FileManager", false]], "finish()\uff08agentscope.agents.react_agent.reactagent \u9759\u6001\u65b9\u6cd5\uff09": [[7, "agentscope.agents.react_agent.ReActAgent.finish", false]], "finish()\uff08agentscope.agents.reactagent \u9759\u6001\u65b9\u6cd5\uff09": [[1, "agentscope.agents.ReActAgent.finish", false]], "flush() \uff08agentscope.manager.asmanager \u65b9\u6cd5\uff09": [[13, "agentscope.manager.ASManager.flush", false]], "flush() \uff08agentscope.manager.filemanager \u65b9\u6cd5\uff09": [[13, "agentscope.manager.FileManager.flush", false]], "flush() \uff08agentscope.manager.modelmanager \u65b9\u6cd5\uff09": [[13, "agentscope.manager.ModelManager.flush", false]], "flush() \uff08agentscope.manager.monitormanager \u65b9\u6cd5\uff09": [[13, "agentscope.manager.MonitorManager.flush", false]], "fn_choice()\uff08\u5728 agentscope.web.gradio.studio \u6a21\u5757\u4e2d\uff09": [[98, "agentscope.web.gradio.studio.fn_choice", false]], "forlooppipeline()\uff08\u5728 agentscope.pipelines \u6a21\u5757\u4e2d\uff09": [[38, "agentscope.pipelines.forlooppipeline", false]], "forlooppipeline()\uff08\u5728 agentscope.pipelines.functional \u6a21\u5757\u4e2d\uff09": [[39, "agentscope.pipelines.functional.forlooppipeline", false]], "forlooppipelinenode\uff08agentscope.web.workstation.workflow_node \u4e2d\u7684\u7c7b\uff09": [[103, "agentscope.web.workstation.workflow_node.ForLoopPipelineNode", false]], "forlooppipeline\uff08agentscope.pipelines \u4e2d\u7684\u7c7b\uff09": [[38, "agentscope.pipelines.ForLoopPipeline", false]], "forlooppipeline\uff08agentscope.pipelines.pipeline \u4e2d\u7684\u7c7b\uff09": [[40, "agentscope.pipelines.pipeline.ForLoopPipeline", false]], "format() \uff08agentscope.models.dashscope_model.dashscopechatwrapper \u65b9\u6cd5\uff09": [[21, "agentscope.models.dashscope_model.DashScopeChatWrapper.format", false]], "format() \uff08agentscope.models.dashscope_model.dashscopemultimodalwrapper \u65b9\u6cd5\uff09": [[21, "agentscope.models.dashscope_model.DashScopeMultiModalWrapper.format", false]], "format() \uff08agentscope.models.dashscope_model.dashscopewrapperbase \u65b9\u6cd5\uff09": [[21, "agentscope.models.dashscope_model.DashScopeWrapperBase.format", false]], "format() \uff08agentscope.models.dashscopechatwrapper \u65b9\u6cd5\uff09": [[20, "agentscope.models.DashScopeChatWrapper.format", false]], "format() \uff08agentscope.models.dashscopemultimodalwrapper \u65b9\u6cd5\uff09": [[20, "agentscope.models.DashScopeMultiModalWrapper.format", false]], "format() \uff08agentscope.models.litellm_model.litellmchatwrapper \u65b9\u6cd5\uff09": [[23, "agentscope.models.litellm_model.LiteLLMChatWrapper.format", false]], "format() \uff08agentscope.models.litellm_model.litellmwrapperbase \u65b9\u6cd5\uff09": [[23, "agentscope.models.litellm_model.LiteLLMWrapperBase.format", false]], "format() \uff08agentscope.models.litellmchatwrapper \u65b9\u6cd5\uff09": [[20, "agentscope.models.LiteLLMChatWrapper.format", false]], "format() \uff08agentscope.models.model.modelwrapperbase \u65b9\u6cd5\uff09": [[24, "agentscope.models.model.ModelWrapperBase.format", false]], "format() \uff08agentscope.models.modelwrapperbase \u65b9\u6cd5\uff09": [[20, "agentscope.models.ModelWrapperBase.format", false]], "format() \uff08agentscope.models.ollama_model.ollamachatwrapper \u65b9\u6cd5\uff09": [[25, "agentscope.models.ollama_model.OllamaChatWrapper.format", false]], "format() \uff08agentscope.models.ollama_model.ollamaembeddingwrapper \u65b9\u6cd5\uff09": [[25, "agentscope.models.ollama_model.OllamaEmbeddingWrapper.format", false]], "format() \uff08agentscope.models.ollama_model.ollamagenerationwrapper \u65b9\u6cd5\uff09": [[25, "agentscope.models.ollama_model.OllamaGenerationWrapper.format", false]], "format() \uff08agentscope.models.ollamachatwrapper \u65b9\u6cd5\uff09": [[20, "agentscope.models.OllamaChatWrapper.format", false]], "format() \uff08agentscope.models.ollamaembeddingwrapper \u65b9\u6cd5\uff09": [[20, "agentscope.models.OllamaEmbeddingWrapper.format", false]], "format() \uff08agentscope.models.ollamagenerationwrapper \u65b9\u6cd5\uff09": [[20, "agentscope.models.OllamaGenerationWrapper.format", false]], "format() \uff08agentscope.models.openai_model.openaichatwrapper \u65b9\u6cd5\uff09": [[26, "agentscope.models.openai_model.OpenAIChatWrapper.format", false]], "format() \uff08agentscope.models.openai_model.openaiwrapperbase \u65b9\u6cd5\uff09": [[26, "agentscope.models.openai_model.OpenAIWrapperBase.format", false]], "format() \uff08agentscope.models.openaichatwrapper \u65b9\u6cd5\uff09": [[20, "agentscope.models.OpenAIChatWrapper.format", false]], "format() \uff08agentscope.models.openaiwrapperbase \u65b9\u6cd5\uff09": [[20, "agentscope.models.OpenAIWrapperBase.format", false]], "format() \uff08agentscope.models.post_model.postapichatwrapper \u65b9\u6cd5\uff09": [[27, "agentscope.models.post_model.PostAPIChatWrapper.format", false]], "format() \uff08agentscope.models.post_model.postapidallewrapper \u65b9\u6cd5\uff09": [[27, "agentscope.models.post_model.PostAPIDALLEWrapper.format", false]], "format() \uff08agentscope.models.post_model.postapiembeddingwrapper \u65b9\u6cd5\uff09": [[27, "agentscope.models.post_model.PostAPIEmbeddingWrapper.format", false]], "format() \uff08agentscope.models.postapichatwrapper \u65b9\u6cd5\uff09": [[20, "agentscope.models.PostAPIChatWrapper.format", false]], "format() \uff08agentscope.models.yi_model.yichatwrapper \u65b9\u6cd5\uff09": [[29, "agentscope.models.yi_model.YiChatWrapper.format", false]], "format() \uff08agentscope.models.yichatwrapper \u65b9\u6cd5\uff09": [[20, "agentscope.models.YiChatWrapper.format", false]], "format() \uff08agentscope.models.zhipu_model.zhipuaichatwrapper \u65b9\u6cd5\uff09": [[30, "agentscope.models.zhipu_model.ZhipuAIChatWrapper.format", false]], "format() \uff08agentscope.models.zhipu_model.zhipuaiwrapperbase \u65b9\u6cd5\uff09": [[30, "agentscope.models.zhipu_model.ZhipuAIWrapperBase.format", false]], "format() \uff08agentscope.models.zhipuaichatwrapper \u65b9\u6cd5\uff09": [[20, "agentscope.models.ZhipuAIChatWrapper.format", false]], "format()\uff08agentscope.models.gemini_model.geminichatwrapper \u9759\u6001\u65b9\u6cd5\uff09": [[22, "agentscope.models.gemini_model.GeminiChatWrapper.format", false]], "format()\uff08agentscope.models.geminichatwrapper \u9759\u6001\u65b9\u6cd5\uff09": [[20, "agentscope.models.GeminiChatWrapper.format", false]], "format_for_common_chat_models()\uff08agentscope.models.model.modelwrapperbase \u9759\u6001\u65b9\u6cd5\uff09": [[24, "agentscope.models.model.ModelWrapperBase.format_for_common_chat_models", false]], "format_for_common_chat_models()\uff08agentscope.models.modelwrapperbase \u9759\u6001\u65b9\u6cd5\uff09": [[20, "agentscope.models.ModelWrapperBase.format_for_common_chat_models", false]], "format_instruction\uff08agentscope.parsers.code_block_parser.markdowncodeblockparser \u5c5e\u6027\uff09": [[33, "agentscope.parsers.code_block_parser.MarkdownCodeBlockParser.format_instruction", false]], "format_instruction\uff08agentscope.parsers.json_object_parser.markdownjsondictparser \u5c5e\u6027\uff09": [[34, "agentscope.parsers.json_object_parser.MarkdownJsonDictParser.format_instruction", false]], "format_instruction\uff08agentscope.parsers.json_object_parser.markdownjsonobjectparser \u5c5e\u6027\uff09": [[34, "agentscope.parsers.json_object_parser.MarkdownJsonObjectParser.format_instruction", false]], "format_instruction\uff08agentscope.parsers.markdowncodeblockparser \u5c5e\u6027\uff09": [[32, "agentscope.parsers.MarkdownCodeBlockParser.format_instruction", false]], "format_instruction\uff08agentscope.parsers.markdownjsondictparser \u5c5e\u6027\uff09": [[32, "agentscope.parsers.MarkdownJsonDictParser.format_instruction", false]], "format_instruction\uff08agentscope.parsers.markdownjsonobjectparser \u5c5e\u6027\uff09": [[32, "agentscope.parsers.MarkdownJsonObjectParser.format_instruction", false]], "format_instruction\uff08agentscope.parsers.multitaggedcontentparser \u5c5e\u6027\uff09": [[32, "agentscope.parsers.MultiTaggedContentParser.format_instruction", false]], "format_instruction\uff08agentscope.parsers.regex_tagged_content_parser.regextaggedcontentparser \u5c5e\u6027\uff09": [[36, "agentscope.parsers.regex_tagged_content_parser.RegexTaggedContentParser.format_instruction", false]], "format_instruction\uff08agentscope.parsers.regextaggedcontentparser \u5c5e\u6027\uff09": [[32, "agentscope.parsers.RegexTaggedContentParser.format_instruction", false]], "format_instruction\uff08agentscope.parsers.tagged_content_parser.multitaggedcontentparser \u5c5e\u6027\uff09": [[37, "agentscope.parsers.tagged_content_parser.MultiTaggedContentParser.format_instruction", false]], "formatted_str() \uff08agentscope.message.msg \u65b9\u6cd5\uff09": [[17, "agentscope.message.Msg.formatted_str", false]], "formatted_str() \uff08agentscope.message.msg.msg \u65b9\u6cd5\uff09": [[18, "agentscope.message.msg.Msg.formatted_str", false]], "from_dict()\uff08agentscope.message.msg \u7c7b\u65b9\u6cd5\uff09": [[17, "agentscope.message.Msg.from_dict", false]], "from_dict()\uff08agentscope.message.msg.msg \u7c7b\u65b9\u6cd5\uff09": [[18, "agentscope.message.msg.Msg.from_dict", false]], "from_dict()\uff08agentscope.message.placeholder.placeholdermessage \u7c7b\u65b9\u6cd5\uff09": [[19, "agentscope.message.placeholder.PlaceholderMessage.from_dict", false]], "from_dict()\uff08agentscope.message.placeholdermessage \u7c7b\u65b9\u6cd5\uff09": [[17, "agentscope.message.PlaceholderMessage.from_dict", false]], "functioncallerror": [[11, "agentscope.exception.FunctionCallError", false]], "functioncallformaterror": [[11, "agentscope.exception.FunctionCallFormatError", false]], "functionnotfounderror": [[11, "agentscope.exception.FunctionNotFoundError", false]], "geminichatwrapper\uff08agentscope.models \u4e2d\u7684\u7c7b\uff09": [[20, "agentscope.models.GeminiChatWrapper", false]], "geminichatwrapper\uff08agentscope.models.gemini_model \u4e2d\u7684\u7c7b\uff09": [[22, "agentscope.models.gemini_model.GeminiChatWrapper", false]], "geminiembeddingwrapper\uff08agentscope.models \u4e2d\u7684\u7c7b\uff09": [[20, "agentscope.models.GeminiEmbeddingWrapper", false]], "geminiembeddingwrapper\uff08agentscope.models.gemini_model \u4e2d\u7684\u7c7b\uff09": [[22, "agentscope.models.gemini_model.GeminiEmbeddingWrapper", false]], "geminiwrapperbase\uff08agentscope.models.gemini_model \u4e2d\u7684\u7c7b\uff09": [[22, "agentscope.models.gemini_model.GeminiWrapperBase", false]], "generate() \uff08agentscope.prompt.systempromptgeneratorbase \u65b9\u6cd5\uff09": [[41, "agentscope.prompt.SystemPromptGeneratorBase.generate", false]], "generate_agent_id()\uff08agentscope.agents.agent.agentbase \u7c7b\u65b9\u6cd5\uff09": [[2, "agentscope.agents.agent.AgentBase.generate_agent_id", false]], "generate_agent_id()\uff08agentscope.agents.agentbase \u7c7b\u65b9\u6cd5\uff09": [[1, "agentscope.agents.AgentBase.generate_agent_id", false]], "generate_image_from_name()\uff08\u5728 agentscope.web.gradio.utils \u6a21\u5757\u4e2d\uff09": [[99, "agentscope.web.gradio.utils.generate_image_from_name", false]], "generate_jwt()\uff08\u5728 agentscope.studio.utils \u6a21\u5757\u4e2d\uff09": [[91, "agentscope.studio.utils.generate_jwt", false]], "generate_notes() \uff08agentscope.prompt.systempromptoptimizer \u65b9\u6cd5\uff09": [[41, "agentscope.prompt.SystemPromptOptimizer.generate_notes", false]], "generate_server_id()\uff08agentscope.server.launcher.rpcagentserverlauncher \u7c7b\u65b9\u6cd5\uff09": [[52, "agentscope.server.launcher.RpcAgentServerLauncher.generate_server_id", false]], "generate_server_id()\uff08agentscope.server.rpcagentserverlauncher \u7c7b\u65b9\u6cd5\uff09": [[51, "agentscope.server.RpcAgentServerLauncher.generate_server_id", false]], "generation_method\uff08agentscope.models.gemini_model.geminichatwrapper \u5c5e\u6027\uff09": [[22, "agentscope.models.gemini_model.GeminiChatWrapper.generation_method", false]], "generation_method\uff08agentscope.models.geminichatwrapper \u5c5e\u6027\uff09": [[20, "agentscope.models.GeminiChatWrapper.generation_method", false]], "get()\uff08agentscope.service.service_toolkit.servicefactory \u7c7b\u65b9\u6cd5\uff09": [[73, "agentscope.service.service_toolkit.ServiceFactory.get", false]], "get()\uff08agentscope.service.service_toolkit.servicetoolkit \u7c7b\u65b9\u6cd5\uff09": [[73, "agentscope.service.service_toolkit.ServiceToolkit.get", false]], "get()\uff08agentscope.service.servicefactory \u7c7b\u65b9\u6cd5\uff09": [[54, "agentscope.service.ServiceFactory.get", false]], "get()\uff08agentscope.service.servicetoolkit \u7c7b\u65b9\u6cd5\uff09": [[54, "agentscope.service.ServiceToolkit.get", false]], "get_action_functions() \uff08agentscope.service.browser.web_browser.webbrowser \u65b9\u6cd5\uff09": [[56, "agentscope.service.browser.web_browser.WebBrowser.get_action_functions", false]], "get_action_functions() \uff08agentscope.service.webbrowser \u65b9\u6cd5\uff09": [[54, "agentscope.service.WebBrowser.get_action_functions", false]], "get_agent() \uff08agentscope.server.agentserverservicer \u65b9\u6cd5\uff09": [[51, "agentscope.server.AgentServerServicer.get_agent", false]], "get_agent() \uff08agentscope.server.servicer.agentserverservicer \u65b9\u6cd5\uff09": [[53, "agentscope.server.servicer.AgentServerServicer.get_agent", false]], "get_agent_class()\uff08agentscope.agents.agent.agentbase \u7c7b\u65b9\u6cd5\uff09": [[2, "agentscope.agents.agent.AgentBase.get_agent_class", false]], "get_agent_class()\uff08agentscope.agents.agentbase \u7c7b\u65b9\u6cd5\uff09": [[1, "agentscope.agents.AgentBase.get_agent_class", false]], "get_agent_list() \uff08agentscope.rpc.rpc_agent_client.rpcagentclient \u65b9\u6cd5\uff09": [[47, "agentscope.rpc.rpc_agent_client.RpcAgentClient.get_agent_list", false]], "get_agent_list() \uff08agentscope.rpc.rpc_agent_pb2_grpc.rpcagentservicer \u65b9\u6cd5\uff09": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgentServicer.get_agent_list", false]], "get_agent_list() \uff08agentscope.rpc.rpcagentclient \u65b9\u6cd5\uff09": [[46, "agentscope.rpc.RpcAgentClient.get_agent_list", false]], "get_agent_list() \uff08agentscope.rpc.rpcagentservicer \u65b9\u6cd5\uff09": [[46, "agentscope.rpc.RpcAgentServicer.get_agent_list", false]], "get_agent_list() \uff08agentscope.server.agentserverservicer \u65b9\u6cd5\uff09": [[51, "agentscope.server.AgentServerServicer.get_agent_list", false]], "get_agent_list() \uff08agentscope.server.servicer.agentserverservicer \u65b9\u6cd5\uff09": [[53, "agentscope.server.servicer.AgentServerServicer.get_agent_list", false]], "get_agent_list()\uff08agentscope.rpc.rpc_agent_pb2_grpc.rpcagent \u9759\u6001\u65b9\u6cd5\uff09": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgent.get_agent_list", false]], "get_agent_memory() \uff08agentscope.rpc.rpc_agent_client.rpcagentclient \u65b9\u6cd5\uff09": [[47, "agentscope.rpc.rpc_agent_client.RpcAgentClient.get_agent_memory", false]], "get_agent_memory() \uff08agentscope.rpc.rpc_agent_pb2_grpc.rpcagentservicer \u65b9\u6cd5\uff09": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgentServicer.get_agent_memory", false]], "get_agent_memory() \uff08agentscope.rpc.rpcagentclient \u65b9\u6cd5\uff09": [[46, "agentscope.rpc.RpcAgentClient.get_agent_memory", false]], "get_agent_memory() \uff08agentscope.rpc.rpcagentservicer \u65b9\u6cd5\uff09": [[46, "agentscope.rpc.RpcAgentServicer.get_agent_memory", false]], "get_agent_memory() \uff08agentscope.server.agentserverservicer \u65b9\u6cd5\uff09": [[51, "agentscope.server.AgentServerServicer.get_agent_memory", false]], "get_agent_memory() \uff08agentscope.server.servicer.agentserverservicer \u65b9\u6cd5\uff09": [[53, "agentscope.server.servicer.AgentServerServicer.get_agent_memory", false]], "get_agent_memory()\uff08agentscope.rpc.rpc_agent_pb2_grpc.rpcagent \u9759\u6001\u65b9\u6cd5\uff09": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgent.get_agent_memory", false]], "get_all_agents()\uff08\u5728 agentscope.web.workstation.workflow_node \u6a21\u5757\u4e2d\uff09": [[103, "agentscope.web.workstation.workflow_node.get_all_agents", false]], "get_chat()\uff08\u5728 agentscope.web.gradio.studio \u6a21\u5757\u4e2d\uff09": [[98, "agentscope.web.gradio.studio.get_chat", false]], "get_chat_msg()\uff08\u5728 agentscope.web.gradio.utils \u6a21\u5757\u4e2d\uff09": [[99, "agentscope.web.gradio.utils.get_chat_msg", false]], "get_config_by_name() \uff08agentscope.manager.modelmanager \u65b9\u6cd5\uff09": [[13, "agentscope.manager.ModelManager.get_config_by_name", false]], "get_current_directory()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.get_current_directory", false]], "get_current_directory()\uff08\u5728 agentscope.service.file.common \u6a21\u5757\u4e2d\uff09": [[62, "agentscope.service.file.common.get_current_directory", false]], "get_embeddings() \uff08agentscope.memory.temporary_memory.temporarymemory \u65b9\u6cd5\uff09": [[16, "agentscope.memory.temporary_memory.TemporaryMemory.get_embeddings", false]], "get_embeddings() \uff08agentscope.memory.temporarymemory \u65b9\u6cd5\uff09": [[14, "agentscope.memory.TemporaryMemory.get_embeddings", false]], "get_help()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.get_help", false]], "get_instance()\uff08agentscope.manager.asmanager \u7c7b\u65b9\u6cd5\uff09": [[13, "agentscope.manager.ASManager.get_instance", false]], "get_instance()\uff08agentscope.manager.filemanager \u7c7b\u65b9\u6cd5\uff09": [[13, "agentscope.manager.FileManager.get_instance", false]], "get_instance()\uff08agentscope.manager.modelmanager \u7c7b\u65b9\u6cd5\uff09": [[13, "agentscope.manager.ModelManager.get_instance", false]], "get_instance()\uff08agentscope.manager.monitormanager \u7c7b\u65b9\u6cd5\uff09": [[13, "agentscope.manager.MonitorManager.get_instance", false]], "get_knowledge() \uff08agentscope.rag.knowledge_bank.knowledgebank \u65b9\u6cd5\uff09": [[44, "agentscope.rag.knowledge_bank.KnowledgeBank.get_knowledge", false]], "get_knowledge() \uff08agentscope.rag.knowledgebank \u65b9\u6cd5\uff09": [[42, "agentscope.rag.KnowledgeBank.get_knowledge", false]], "get_memory() \uff08agentscope.memory.memory.memorybase \u65b9\u6cd5\uff09": [[15, "agentscope.memory.memory.MemoryBase.get_memory", false]], "get_memory() \uff08agentscope.memory.memorybase \u65b9\u6cd5\uff09": [[14, "agentscope.memory.MemoryBase.get_memory", false]], "get_memory() \uff08agentscope.memory.temporary_memory.temporarymemory \u65b9\u6cd5\uff09": [[16, "agentscope.memory.temporary_memory.TemporaryMemory.get_memory", false]], "get_memory() \uff08agentscope.memory.temporarymemory \u65b9\u6cd5\uff09": [[14, "agentscope.memory.TemporaryMemory.get_memory", false]], "get_model_by_config_name() \uff08agentscope.manager.modelmanager \u65b9\u6cd5\uff09": [[13, "agentscope.manager.ModelManager.get_model_by_config_name", false]], "get_openai_max_length()\uff08\u5728 agentscope.utils.token_utils \u6a21\u5757\u4e2d\uff09": [[94, "agentscope.utils.token_utils.get_openai_max_length", false]], "get_player_input()\uff08\u5728 agentscope.web.gradio.utils \u6a21\u5757\u4e2d\uff09": [[99, "agentscope.web.gradio.utils.get_player_input", false]], "get_reset_msg()\uff08\u5728 agentscope.web.gradio.utils \u6a21\u5757\u4e2d\uff09": [[99, "agentscope.web.gradio.utils.get_reset_msg", false]], "get_response() \uff08agentscope.rpc.responsestub \u65b9\u6cd5\uff09": [[46, "agentscope.rpc.ResponseStub.get_response", false]], "get_response() \uff08agentscope.rpc.rpc_agent_client.responsestub \u65b9\u6cd5\uff09": [[47, "agentscope.rpc.rpc_agent_client.ResponseStub.get_response", false]], "get_server_info() \uff08agentscope.rpc.rpc_agent_client.rpcagentclient \u65b9\u6cd5\uff09": [[47, "agentscope.rpc.rpc_agent_client.RpcAgentClient.get_server_info", false]], "get_server_info() \uff08agentscope.rpc.rpc_agent_pb2_grpc.rpcagentservicer \u65b9\u6cd5\uff09": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgentServicer.get_server_info", false]], "get_server_info() \uff08agentscope.rpc.rpcagentclient \u65b9\u6cd5\uff09": [[46, "agentscope.rpc.RpcAgentClient.get_server_info", false]], "get_server_info() \uff08agentscope.rpc.rpcagentservicer \u65b9\u6cd5\uff09": [[46, "agentscope.rpc.RpcAgentServicer.get_server_info", false]], "get_server_info() \uff08agentscope.server.agentserverservicer \u65b9\u6cd5\uff09": [[51, "agentscope.server.AgentServerServicer.get_server_info", false]], "get_server_info() \uff08agentscope.server.servicer.agentserverservicer \u65b9\u6cd5\uff09": [[53, "agentscope.server.servicer.AgentServerServicer.get_server_info", false]], "get_server_info()\uff08agentscope.rpc.rpc_agent_pb2_grpc.rpcagent \u9759\u6001\u65b9\u6cd5\uff09": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgent.get_server_info", false]], "get_task_id() \uff08agentscope.server.agentserverservicer \u65b9\u6cd5\uff09": [[51, "agentscope.server.AgentServerServicer.get_task_id", false]], "get_task_id() \uff08agentscope.server.servicer.agentserverservicer \u65b9\u6cd5\uff09": [[53, "agentscope.server.servicer.AgentServerServicer.get_task_id", false]], "get_wrapper()\uff08agentscope.models.model.modelwrapperbase \u7c7b\u65b9\u6cd5\uff09": [[24, "agentscope.models.model.ModelWrapperBase.get_wrapper", false]], "get_wrapper()\uff08agentscope.models.modelwrapperbase \u7c7b\u65b9\u6cd5\uff09": [[20, "agentscope.models.ModelWrapperBase.get_wrapper", false]], "google_search()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.google_search", false]], "google_search()\uff08\u5728 agentscope.service.web.search \u6a21\u5757\u4e2d\uff09": [[84, "agentscope.service.web.search.google_search", false]], "googlesearchservicenode\uff08agentscope.web.workstation.workflow_node \u4e2d\u7684\u7c7b\uff09": [[103, "agentscope.web.workstation.workflow_node.GoogleSearchServiceNode", false]], "height\uff08agentscope.service.browser.web_browser.webelementinfo \u5c5e\u6027\uff09": [[56, "agentscope.service.browser.web_browser.WebElementInfo.height", false]], "height\uff08agentscope.service.webelementinfo \u5c5e\u6027\uff09": [[54, "agentscope.service.WebElementInfo.height", false]], "host\uff08agentscope.exception.agentservererror \u5c5e\u6027\uff09": [[11, "agentscope.exception.AgentServerError.host", false]], "html\uff08agentscope.service.browser.web_browser.webelementinfo \u5c5e\u6027\uff09": [[56, "agentscope.service.browser.web_browser.WebElementInfo.html", false]], "html\uff08agentscope.service.webelementinfo \u5c5e\u6027\uff09": [[54, "agentscope.service.WebElementInfo.html", false]], "id\uff08agentscope.message.msg \u5c5e\u6027\uff09": [[17, "agentscope.message.Msg.id", false]], "id\uff08agentscope.message.msg.msg \u5c5e\u6027\uff09": [[18, "agentscope.message.msg.Msg.id", false]], "id\uff08agentscope.message.placeholder.placeholdermessage \u5c5e\u6027\uff09": [[19, "agentscope.message.placeholder.PlaceholderMessage.id", false]], "id\uff08agentscope.message.placeholdermessage \u5c5e\u6027\uff09": [[17, "agentscope.message.PlaceholderMessage.id", false]], "ifelsepipeline()\uff08\u5728 agentscope.pipelines \u6a21\u5757\u4e2d\uff09": [[38, "agentscope.pipelines.ifelsepipeline", false]], "ifelsepipeline()\uff08\u5728 agentscope.pipelines.functional \u6a21\u5757\u4e2d\uff09": [[39, "agentscope.pipelines.functional.ifelsepipeline", false]], "ifelsepipelinenode\uff08agentscope.web.workstation.workflow_node \u4e2d\u7684\u7c7b\uff09": [[103, "agentscope.web.workstation.workflow_node.IfElsePipelineNode", false]], "ifelsepipeline\uff08agentscope.pipelines \u4e2d\u7684\u7c7b\uff09": [[38, "agentscope.pipelines.IfElsePipeline", false]], "ifelsepipeline\uff08agentscope.pipelines.pipeline \u4e2d\u7684\u7c7b\uff09": [[40, "agentscope.pipelines.pipeline.IfElsePipeline", false]], "import_function_from_path()\uff08\u5728 agentscope.web.gradio.studio \u6a21\u5757\u4e2d\uff09": [[98, "agentscope.web.gradio.studio.import_function_from_path", false]], "importerrorreporter\uff08agentscope.utils.common \u4e2d\u7684\u7c7b\uff09": [[93, "agentscope.utils.common.ImportErrorReporter", false]], "init()\uff08\u5728 agentscope \u6a21\u5757\u4e2d\uff09": [[0, "agentscope.init", false]], "init()\uff08\u5728 agentscope.studio \u6a21\u5757\u4e2d\uff09": [[90, "agentscope.studio.init", false]], "init_uid_list()\uff08\u5728 agentscope.web.gradio.studio \u6a21\u5757\u4e2d\uff09": [[98, "agentscope.web.gradio.studio.init_uid_list", false]], "init_uid_queues()\uff08\u5728 agentscope.web.gradio.utils \u6a21\u5757\u4e2d\uff09": [[99, "agentscope.web.gradio.utils.init_uid_queues", false]], "initialize() \uff08agentscope.manager.asmanager \u65b9\u6cd5\uff09": [[13, "agentscope.manager.ASManager.initialize", false]], "initialize() \uff08agentscope.manager.filemanager \u65b9\u6cd5\uff09": [[13, "agentscope.manager.FileManager.initialize", false]], "initialize() \uff08agentscope.manager.modelmanager \u65b9\u6cd5\uff09": [[13, "agentscope.manager.ModelManager.initialize", false]], "initialize() \uff08agentscope.manager.monitormanager \u65b9\u6cd5\uff09": [[13, "agentscope.manager.MonitorManager.initialize", false]], "inner_text\uff08agentscope.service.browser.web_browser.webelementinfo \u5c5e\u6027\uff09": [[56, "agentscope.service.browser.web_browser.WebElementInfo.inner_text", false]], "inner_text\uff08agentscope.service.webelementinfo \u5c5e\u6027\uff09": [[54, "agentscope.service.WebElementInfo.inner_text", false]], "invoke_dir\uff08agentscope.manager.filemanager \u5c5e\u6027\uff09": [[13, "agentscope.manager.FileManager.invoke_dir", false]], "is_alive() \uff08agentscope.rpc.rpc_agent_client.rpcagentclient \u65b9\u6cd5\uff09": [[47, "agentscope.rpc.rpc_agent_client.RpcAgentClient.is_alive", false]], "is_alive() \uff08agentscope.rpc.rpc_agent_pb2_grpc.rpcagentservicer \u65b9\u6cd5\uff09": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgentServicer.is_alive", false]], "is_alive() \uff08agentscope.rpc.rpcagentclient \u65b9\u6cd5\uff09": [[46, "agentscope.rpc.RpcAgentClient.is_alive", false]], "is_alive() \uff08agentscope.rpc.rpcagentservicer \u65b9\u6cd5\uff09": [[46, "agentscope.rpc.RpcAgentServicer.is_alive", false]], "is_alive() \uff08agentscope.server.agentserverservicer \u65b9\u6cd5\uff09": [[51, "agentscope.server.AgentServerServicer.is_alive", false]], "is_alive() \uff08agentscope.server.servicer.agentserverservicer \u65b9\u6cd5\uff09": [[53, "agentscope.server.servicer.AgentServerServicer.is_alive", false]], "is_alive()\uff08agentscope.rpc.rpc_agent_pb2_grpc.rpcagent \u9759\u6001\u65b9\u6cd5\uff09": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgent.is_alive", false]], "is_callable_expression()\uff08\u5728 agentscope.web.workstation.workflow_utils \u6a21\u5757\u4e2d\uff09": [[104, "agentscope.web.workstation.workflow_utils.is_callable_expression", false]], "is_clickable\uff08agentscope.service.browser.web_browser.webelementinfo \u5c5e\u6027\uff09": [[56, "agentscope.service.browser.web_browser.WebElementInfo.is_clickable", false]], "is_clickable\uff08agentscope.service.webelementinfo \u5c5e\u6027\uff09": [[54, "agentscope.service.WebElementInfo.is_clickable", false]], "is_initialized()\uff08agentscope.manager.filemanager \u7c7b\u65b9\u6cd5\uff09": [[13, "agentscope.manager.FileManager.is_initialized", false]], "is_serializable()\uff08\u5728 agentscope.serialize \u6a21\u5757\u4e2d\uff09": [[50, "agentscope.serialize.is_serializable", false]], "is_stream_exhausted\uff08agentscope.models.modelresponse \u5c5e\u6027\uff09": [[20, "agentscope.models.ModelResponse.is_stream_exhausted", false]], "is_stream_exhausted\uff08agentscope.models.response.modelresponse \u5c5e\u6027\uff09": [[28, "agentscope.models.response.ModelResponse.is_stream_exhausted", false]], "is_valid_url()\uff08\u5728 agentscope.service.web.web_digest \u6a21\u5757\u4e2d\uff09": [[86, "agentscope.service.web.web_digest.is_valid_url", false]], "json_required_hint\uff08agentscope.parsers.multitaggedcontentparser \u5c5e\u6027\uff09": [[32, "agentscope.parsers.MultiTaggedContentParser.json_required_hint", false]], "json_required_hint\uff08agentscope.parsers.tagged_content_parser.multitaggedcontentparser \u5c5e\u6027\uff09": [[37, "agentscope.parsers.tagged_content_parser.MultiTaggedContentParser.json_required_hint", false]], "json_schemas\uff08agentscope.service.service_toolkit.servicetoolkit \u5c5e\u6027\uff09": [[73, "agentscope.service.service_toolkit.ServiceToolkit.json_schemas", false]], "json_schemas\uff08agentscope.service.servicetoolkit \u5c5e\u6027\uff09": [[54, "agentscope.service.ServiceToolkit.json_schemas", false]], "json_schema\uff08agentscope.service.service_toolkit.servicefunction \u5c5e\u6027\uff09": [[73, "agentscope.service.service_toolkit.ServiceFunction.json_schema", false]], "jsondictvalidationerror": [[11, "agentscope.exception.JsonDictValidationError", false]], "jsonparsingerror": [[11, "agentscope.exception.JsonParsingError", false]], "jsontypeerror": [[11, "agentscope.exception.JsonTypeError", false]], "json\uff08agentscope.constants.responseformat \u5c5e\u6027\uff09": [[10, "agentscope.constants.ResponseFormat.JSON", false]], "keep_alive\uff08agentscope.models.ollama_model.ollamachatwrapper \u5c5e\u6027\uff09": [[25, "agentscope.models.ollama_model.OllamaChatWrapper.keep_alive", false]], "keep_alive\uff08agentscope.models.ollama_model.ollamaembeddingwrapper \u5c5e\u6027\uff09": [[25, "agentscope.models.ollama_model.OllamaEmbeddingWrapper.keep_alive", false]], "keep_alive\uff08agentscope.models.ollama_model.ollamagenerationwrapper \u5c5e\u6027\uff09": [[25, "agentscope.models.ollama_model.OllamaGenerationWrapper.keep_alive", false]], "keep_alive\uff08agentscope.models.ollama_model.ollamawrapperbase \u5c5e\u6027\uff09": [[25, "agentscope.models.ollama_model.OllamaWrapperBase.keep_alive", false]], "knowledgebank\uff08agentscope.rag \u4e2d\u7684\u7c7b\uff09": [[42, "agentscope.rag.KnowledgeBank", false]], "knowledgebank\uff08agentscope.rag.knowledge_bank \u4e2d\u7684\u7c7b\uff09": [[44, "agentscope.rag.knowledge_bank.KnowledgeBank", false]], "knowledge\uff08agentscope.rag \u4e2d\u7684\u7c7b\uff09": [[42, "agentscope.rag.Knowledge", false]], "knowledge\uff08agentscope.rag.knowledge \u4e2d\u7684\u7c7b\uff09": [[43, "agentscope.rag.knowledge.Knowledge", false]], "kwarg_converter()\uff08\u5728 agentscope.web.workstation.workflow_utils \u6a21\u5757\u4e2d\uff09": [[104, "agentscope.web.workstation.workflow_utils.kwarg_converter", false]], "launch() \uff08agentscope.server.launcher.rpcagentserverlauncher \u65b9\u6cd5\uff09": [[52, "agentscope.server.launcher.RpcAgentServerLauncher.launch", false]], "launch() \uff08agentscope.server.rpcagentserverlauncher \u65b9\u6cd5\uff09": [[51, "agentscope.server.RpcAgentServerLauncher.launch", false]], "list_directory_content()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.list_directory_content", false]], "list_directory_content()\uff08\u5728 agentscope.service.file.common \u6a21\u5757\u4e2d\uff09": [[62, "agentscope.service.file.common.list_directory_content", false]], "list_models() \uff08agentscope.models.gemini_model.geminiwrapperbase \u65b9\u6cd5\uff09": [[22, "agentscope.models.gemini_model.GeminiWrapperBase.list_models", false]], "litellmchatwrapper\uff08agentscope.models \u4e2d\u7684\u7c7b\uff09": [[20, "agentscope.models.LiteLLMChatWrapper", false]], "litellmchatwrapper\uff08agentscope.models.litellm_model \u4e2d\u7684\u7c7b\uff09": [[23, "agentscope.models.litellm_model.LiteLLMChatWrapper", false]], "litellmwrapperbase\uff08agentscope.models.litellm_model \u4e2d\u7684\u7c7b\uff09": [[23, "agentscope.models.litellm_model.LiteLLMWrapperBase", false]], "llamaindexagent\uff08agentscope.agents \u4e2d\u7684\u7c7b\uff09": [[1, "agentscope.agents.LlamaIndexAgent", false]], "llamaindexagent\uff08agentscope.agents.rag_agent \u4e2d\u7684\u7c7b\uff09": [[6, "agentscope.agents.rag_agent.LlamaIndexAgent", false]], "llamaindexknowledge\uff08agentscope.rag.llama_index_knowledge \u4e2d\u7684\u7c7b\uff09": [[45, "agentscope.rag.llama_index_knowledge.LlamaIndexKnowledge", false]], "load() \uff08agentscope.memory.memory.memorybase \u65b9\u6cd5\uff09": [[15, "agentscope.memory.memory.MemoryBase.load", false]], "load() \uff08agentscope.memory.memorybase \u65b9\u6cd5\uff09": [[14, "agentscope.memory.MemoryBase.load", false]], "load() \uff08agentscope.memory.temporary_memory.temporarymemory \u65b9\u6cd5\uff09": [[16, "agentscope.memory.temporary_memory.TemporaryMemory.load", false]], "load() \uff08agentscope.memory.temporarymemory \u65b9\u6cd5\uff09": [[14, "agentscope.memory.TemporaryMemory.load", false]], "load_agents_from_dir()\uff08\u5728 agentscope.server.launcher \u6a21\u5757\u4e2d\uff09": [[52, "agentscope.server.launcher.load_agents_from_dir", false]], "load_agents_from_file()\uff08\u5728 agentscope.server.launcher \u6a21\u5757\u4e2d\uff09": [[52, "agentscope.server.launcher.load_agents_from_file", false]], "load_config()\uff08\u5728 agentscope.web.workstation.workflow \u6a21\u5757\u4e2d\uff09": [[101, "agentscope.web.workstation.workflow.load_config", false]], "load_dict() \uff08agentscope.manager.asmanager \u65b9\u6cd5\uff09": [[13, "agentscope.manager.ASManager.load_dict", false]], "load_dict() \uff08agentscope.manager.filemanager \u65b9\u6cd5\uff09": [[13, "agentscope.manager.FileManager.load_dict", false]], "load_dict() \uff08agentscope.manager.modelmanager \u65b9\u6cd5\uff09": [[13, "agentscope.manager.ModelManager.load_dict", false]], "load_dict() \uff08agentscope.manager.monitormanager \u65b9\u6cd5\uff09": [[13, "agentscope.manager.MonitorManager.load_dict", false]], "load_model_configs() \uff08agentscope.manager.modelmanager \u65b9\u6cd5\uff09": [[13, "agentscope.manager.ModelManager.load_model_configs", false]], "load_web()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.load_web", false]], "load_web()\uff08\u5728 agentscope.service.web.web_digest \u6a21\u5757\u4e2d\uff09": [[86, "agentscope.service.web.web_digest.load_web", false]], "log_gradio()\uff08\u5728 agentscope.logging \u6a21\u5757\u4e2d\uff09": [[12, "agentscope.logging.log_gradio", false]], "log_msg()\uff08\u5728 agentscope.logging \u6a21\u5757\u4e2d\uff09": [[12, "agentscope.logging.log_msg", false]], "log_stream_msg()\uff08\u5728 agentscope.logging \u6a21\u5757\u4e2d\uff09": [[12, "agentscope.logging.log_stream_msg", false]], "main()\uff08\u5728 agentscope.web.workstation.workflow \u6a21\u5757\u4e2d\uff09": [[101, "agentscope.web.workstation.workflow.main", false]], "markdowncodeblockparser\uff08agentscope.parsers \u4e2d\u7684\u7c7b\uff09": [[32, "agentscope.parsers.MarkdownCodeBlockParser", false]], "markdowncodeblockparser\uff08agentscope.parsers.code_block_parser \u4e2d\u7684\u7c7b\uff09": [[33, "agentscope.parsers.code_block_parser.MarkdownCodeBlockParser", false]], "markdownjsondictparser\uff08agentscope.parsers \u4e2d\u7684\u7c7b\uff09": [[32, "agentscope.parsers.MarkdownJsonDictParser", false]], "markdownjsondictparser\uff08agentscope.parsers.json_object_parser \u4e2d\u7684\u7c7b\uff09": [[34, "agentscope.parsers.json_object_parser.MarkdownJsonDictParser", false]], "markdownjsonobjectparser\uff08agentscope.parsers \u4e2d\u7684\u7c7b\uff09": [[32, "agentscope.parsers.MarkdownJsonObjectParser", false]], "markdownjsonobjectparser\uff08agentscope.parsers.json_object_parser \u4e2d\u7684\u7c7b\uff09": [[34, "agentscope.parsers.json_object_parser.MarkdownJsonObjectParser", false]], "memorybase\uff08agentscope.memory \u4e2d\u7684\u7c7b\uff09": [[14, "agentscope.memory.MemoryBase", false]], "memorybase\uff08agentscope.memory.memory \u4e2d\u7684\u7c7b\uff09": [[15, "agentscope.memory.memory.MemoryBase", false]], "message\uff08agentscope.exception.agentservererror \u5c5e\u6027\uff09": [[11, "agentscope.exception.AgentServerError.message", false]], "message\uff08agentscope.web.workstation.workflow_node.workflownodetype \u5c5e\u6027\uff09": [[103, "agentscope.web.workstation.workflow_node.WorkflowNodeType.MESSAGE", false]], "meta_data\uff08agentscope.service.browser.web_browser.webelementinfo \u5c5e\u6027\uff09": [[56, "agentscope.service.browser.web_browser.WebElementInfo.meta_data", false]], "meta_data\uff08agentscope.service.webelementinfo \u5c5e\u6027\uff09": [[54, "agentscope.service.WebElementInfo.meta_data", false]], "metadata\uff08agentscope.message.msg \u5c5e\u6027\uff09": [[17, "agentscope.message.Msg.metadata", false]], "metadata\uff08agentscope.message.msg.msg \u5c5e\u6027\uff09": [[18, "agentscope.message.msg.Msg.metadata", false]], "metadata\uff08agentscope.message.placeholder.placeholdermessage \u5c5e\u6027\uff09": [[19, "agentscope.message.placeholder.PlaceholderMessage.metadata", false]], "metadata\uff08agentscope.message.placeholdermessage \u5c5e\u6027\uff09": [[17, "agentscope.message.PlaceholderMessage.metadata", false]], "missing_begin_tag\uff08agentscope.exception.tagnotfounderror \u5c5e\u6027\uff09": [[11, "agentscope.exception.TagNotFoundError.missing_begin_tag", false]], "missing_end_tag\uff08agentscope.exception.tagnotfounderror \u5c5e\u6027\uff09": [[11, "agentscope.exception.TagNotFoundError.missing_end_tag", false]], "mixtureofagents\uff08agentscope.strategy \u4e2d\u7684\u7c7b\uff09": [[88, "agentscope.strategy.MixtureOfAgents", false]], "mixtureofagents\uff08agentscope.strategy.mixture_of_agent \u4e2d\u7684\u7c7b\uff09": [[89, "agentscope.strategy.mixture_of_agent.MixtureOfAgents", false]], "model_computed_fields\uff08agentscope.service.browser.web_browser.webelementinfo \u5c5e\u6027\uff09": [[56, "agentscope.service.browser.web_browser.WebElementInfo.model_computed_fields", false]], "model_computed_fields\uff08agentscope.service.webelementinfo \u5c5e\u6027\uff09": [[54, "agentscope.service.WebElementInfo.model_computed_fields", false]], "model_configs\uff08agentscope.manager.modelmanager \u5c5e\u6027\uff09": [[13, "agentscope.manager.ModelManager.model_configs", false]], "model_config\uff08agentscope.service.browser.web_browser.webelementinfo \u5c5e\u6027\uff09": [[56, "agentscope.service.browser.web_browser.WebElementInfo.model_config", false]], "model_config\uff08agentscope.service.webelementinfo \u5c5e\u6027\uff09": [[54, "agentscope.service.WebElementInfo.model_config", false]], "model_fields\uff08agentscope.service.browser.web_browser.webelementinfo \u5c5e\u6027\uff09": [[56, "agentscope.service.browser.web_browser.WebElementInfo.model_fields", false]], "model_fields\uff08agentscope.service.webelementinfo \u5c5e\u6027\uff09": [[54, "agentscope.service.WebElementInfo.model_fields", false]], "model_name\uff08agentscope.models.dashscope_model.dashscopechatwrapper \u5c5e\u6027\uff09": [[21, "agentscope.models.dashscope_model.DashScopeChatWrapper.model_name", false]], "model_name\uff08agentscope.models.dashscope_model.dashscopeimagesynthesiswrapper \u5c5e\u6027\uff09": [[21, "agentscope.models.dashscope_model.DashScopeImageSynthesisWrapper.model_name", false]], "model_name\uff08agentscope.models.dashscope_model.dashscopemultimodalwrapper \u5c5e\u6027\uff09": [[21, "agentscope.models.dashscope_model.DashScopeMultiModalWrapper.model_name", false]], "model_name\uff08agentscope.models.dashscope_model.dashscopetextembeddingwrapper \u5c5e\u6027\uff09": [[21, "agentscope.models.dashscope_model.DashScopeTextEmbeddingWrapper.model_name", false]], "model_name\uff08agentscope.models.gemini_model.geminichatwrapper \u5c5e\u6027\uff09": [[22, "agentscope.models.gemini_model.GeminiChatWrapper.model_name", false]], "model_name\uff08agentscope.models.gemini_model.geminiembeddingwrapper \u5c5e\u6027\uff09": [[22, "agentscope.models.gemini_model.GeminiEmbeddingWrapper.model_name", false]], "model_name\uff08agentscope.models.litellm_model.litellmchatwrapper \u5c5e\u6027\uff09": [[23, "agentscope.models.litellm_model.LiteLLMChatWrapper.model_name", false]], "model_name\uff08agentscope.models.model.modelwrapperbase \u5c5e\u6027\uff09": [[24, "agentscope.models.model.ModelWrapperBase.model_name", false]], "model_name\uff08agentscope.models.modelwrapperbase \u5c5e\u6027\uff09": [[20, "agentscope.models.ModelWrapperBase.model_name", false]], "model_name\uff08agentscope.models.ollama_model.ollamachatwrapper \u5c5e\u6027\uff09": [[25, "agentscope.models.ollama_model.OllamaChatWrapper.model_name", false]], "model_name\uff08agentscope.models.ollama_model.ollamaembeddingwrapper \u5c5e\u6027\uff09": [[25, "agentscope.models.ollama_model.OllamaEmbeddingWrapper.model_name", false]], "model_name\uff08agentscope.models.ollama_model.ollamagenerationwrapper \u5c5e\u6027\uff09": [[25, "agentscope.models.ollama_model.OllamaGenerationWrapper.model_name", false]], "model_name\uff08agentscope.models.ollama_model.ollamawrapperbase \u5c5e\u6027\uff09": [[25, "agentscope.models.ollama_model.OllamaWrapperBase.model_name", false]], "model_name\uff08agentscope.models.openai_model.openaichatwrapper \u5c5e\u6027\uff09": [[26, "agentscope.models.openai_model.OpenAIChatWrapper.model_name", false]], "model_name\uff08agentscope.models.openai_model.openaidallewrapper \u5c5e\u6027\uff09": [[26, "agentscope.models.openai_model.OpenAIDALLEWrapper.model_name", false]], "model_name\uff08agentscope.models.openai_model.openaiembeddingwrapper \u5c5e\u6027\uff09": [[26, "agentscope.models.openai_model.OpenAIEmbeddingWrapper.model_name", false]], "model_name\uff08agentscope.models.post_model.postapichatwrapper \u5c5e\u6027\uff09": [[27, "agentscope.models.post_model.PostAPIChatWrapper.model_name", false]], "model_name\uff08agentscope.models.post_model.postapimodelwrapperbase \u5c5e\u6027\uff09": [[27, "agentscope.models.post_model.PostAPIModelWrapperBase.model_name", false]], "model_name\uff08agentscope.models.yi_model.yichatwrapper \u5c5e\u6027\uff09": [[29, "agentscope.models.yi_model.YiChatWrapper.model_name", false]], "model_name\uff08agentscope.models.zhipu_model.zhipuaichatwrapper \u5c5e\u6027\uff09": [[30, "agentscope.models.zhipu_model.ZhipuAIChatWrapper.model_name", false]], "model_name\uff08agentscope.models.zhipu_model.zhipuaiembeddingwrapper \u5c5e\u6027\uff09": [[30, "agentscope.models.zhipu_model.ZhipuAIEmbeddingWrapper.model_name", false]], "model_type\uff08agentscope.models.dashscope_model.dashscopechatwrapper \u5c5e\u6027\uff09": [[21, "agentscope.models.dashscope_model.DashScopeChatWrapper.model_type", false]], "model_type\uff08agentscope.models.dashscope_model.dashscopeimagesynthesiswrapper \u5c5e\u6027\uff09": [[21, "agentscope.models.dashscope_model.DashScopeImageSynthesisWrapper.model_type", false]], "model_type\uff08agentscope.models.dashscope_model.dashscopemultimodalwrapper \u5c5e\u6027\uff09": [[21, "agentscope.models.dashscope_model.DashScopeMultiModalWrapper.model_type", false]], "model_type\uff08agentscope.models.dashscope_model.dashscopetextembeddingwrapper \u5c5e\u6027\uff09": [[21, "agentscope.models.dashscope_model.DashScopeTextEmbeddingWrapper.model_type", false]], "model_type\uff08agentscope.models.dashscopechatwrapper \u5c5e\u6027\uff09": [[20, "agentscope.models.DashScopeChatWrapper.model_type", false]], "model_type\uff08agentscope.models.dashscopeimagesynthesiswrapper \u5c5e\u6027\uff09": [[20, "agentscope.models.DashScopeImageSynthesisWrapper.model_type", false]], "model_type\uff08agentscope.models.dashscopemultimodalwrapper \u5c5e\u6027\uff09": [[20, "agentscope.models.DashScopeMultiModalWrapper.model_type", false]], "model_type\uff08agentscope.models.dashscopetextembeddingwrapper \u5c5e\u6027\uff09": [[20, "agentscope.models.DashScopeTextEmbeddingWrapper.model_type", false]], "model_type\uff08agentscope.models.gemini_model.geminichatwrapper \u5c5e\u6027\uff09": [[22, "agentscope.models.gemini_model.GeminiChatWrapper.model_type", false]], "model_type\uff08agentscope.models.gemini_model.geminiembeddingwrapper \u5c5e\u6027\uff09": [[22, "agentscope.models.gemini_model.GeminiEmbeddingWrapper.model_type", false]], "model_type\uff08agentscope.models.geminichatwrapper \u5c5e\u6027\uff09": [[20, "agentscope.models.GeminiChatWrapper.model_type", false]], "model_type\uff08agentscope.models.geminiembeddingwrapper \u5c5e\u6027\uff09": [[20, "agentscope.models.GeminiEmbeddingWrapper.model_type", false]], "model_type\uff08agentscope.models.litellm_model.litellmchatwrapper \u5c5e\u6027\uff09": [[23, "agentscope.models.litellm_model.LiteLLMChatWrapper.model_type", false]], "model_type\uff08agentscope.models.litellmchatwrapper \u5c5e\u6027\uff09": [[20, "agentscope.models.LiteLLMChatWrapper.model_type", false]], "model_type\uff08agentscope.models.model.modelwrapperbase \u5c5e\u6027\uff09": [[24, "agentscope.models.model.ModelWrapperBase.model_type", false]], "model_type\uff08agentscope.models.modelwrapperbase \u5c5e\u6027\uff09": [[20, "agentscope.models.ModelWrapperBase.model_type", false]], "model_type\uff08agentscope.models.ollama_model.ollamachatwrapper \u5c5e\u6027\uff09": [[25, "agentscope.models.ollama_model.OllamaChatWrapper.model_type", false]], "model_type\uff08agentscope.models.ollama_model.ollamaembeddingwrapper \u5c5e\u6027\uff09": [[25, "agentscope.models.ollama_model.OllamaEmbeddingWrapper.model_type", false]], "model_type\uff08agentscope.models.ollama_model.ollamagenerationwrapper \u5c5e\u6027\uff09": [[25, "agentscope.models.ollama_model.OllamaGenerationWrapper.model_type", false]], "model_type\uff08agentscope.models.ollama_model.ollamawrapperbase \u5c5e\u6027\uff09": [[25, "agentscope.models.ollama_model.OllamaWrapperBase.model_type", false]], "model_type\uff08agentscope.models.ollamachatwrapper \u5c5e\u6027\uff09": [[20, "agentscope.models.OllamaChatWrapper.model_type", false]], "model_type\uff08agentscope.models.ollamaembeddingwrapper \u5c5e\u6027\uff09": [[20, "agentscope.models.OllamaEmbeddingWrapper.model_type", false]], "model_type\uff08agentscope.models.ollamagenerationwrapper \u5c5e\u6027\uff09": [[20, "agentscope.models.OllamaGenerationWrapper.model_type", false]], "model_type\uff08agentscope.models.openai_model.openaichatwrapper \u5c5e\u6027\uff09": [[26, "agentscope.models.openai_model.OpenAIChatWrapper.model_type", false]], "model_type\uff08agentscope.models.openai_model.openaidallewrapper \u5c5e\u6027\uff09": [[26, "agentscope.models.openai_model.OpenAIDALLEWrapper.model_type", false]], "model_type\uff08agentscope.models.openai_model.openaiembeddingwrapper \u5c5e\u6027\uff09": [[26, "agentscope.models.openai_model.OpenAIEmbeddingWrapper.model_type", false]], "model_type\uff08agentscope.models.openaichatwrapper \u5c5e\u6027\uff09": [[20, "agentscope.models.OpenAIChatWrapper.model_type", false]], "model_type\uff08agentscope.models.openaidallewrapper \u5c5e\u6027\uff09": [[20, "agentscope.models.OpenAIDALLEWrapper.model_type", false]], "model_type\uff08agentscope.models.openaiembeddingwrapper \u5c5e\u6027\uff09": [[20, "agentscope.models.OpenAIEmbeddingWrapper.model_type", false]], "model_type\uff08agentscope.models.post_model.postapichatwrapper \u5c5e\u6027\uff09": [[27, "agentscope.models.post_model.PostAPIChatWrapper.model_type", false]], "model_type\uff08agentscope.models.post_model.postapidallewrapper \u5c5e\u6027\uff09": [[27, "agentscope.models.post_model.PostAPIDALLEWrapper.model_type", false]], "model_type\uff08agentscope.models.post_model.postapiembeddingwrapper \u5c5e\u6027\uff09": [[27, "agentscope.models.post_model.PostAPIEmbeddingWrapper.model_type", false]], "model_type\uff08agentscope.models.post_model.postapimodelwrapperbase \u5c5e\u6027\uff09": [[27, "agentscope.models.post_model.PostAPIModelWrapperBase.model_type", false]], "model_type\uff08agentscope.models.postapichatwrapper \u5c5e\u6027\uff09": [[20, "agentscope.models.PostAPIChatWrapper.model_type", false]], "model_type\uff08agentscope.models.postapimodelwrapperbase \u5c5e\u6027\uff09": [[20, "agentscope.models.PostAPIModelWrapperBase.model_type", false]], "model_type\uff08agentscope.models.yi_model.yichatwrapper \u5c5e\u6027\uff09": [[29, "agentscope.models.yi_model.YiChatWrapper.model_type", false]], "model_type\uff08agentscope.models.yichatwrapper \u5c5e\u6027\uff09": [[20, "agentscope.models.YiChatWrapper.model_type", false]], "model_type\uff08agentscope.models.zhipu_model.zhipuaichatwrapper \u5c5e\u6027\uff09": [[30, "agentscope.models.zhipu_model.ZhipuAIChatWrapper.model_type", false]], "model_type\uff08agentscope.models.zhipu_model.zhipuaiembeddingwrapper \u5c5e\u6027\uff09": [[30, "agentscope.models.zhipu_model.ZhipuAIEmbeddingWrapper.model_type", false]], "model_type\uff08agentscope.models.zhipuaichatwrapper \u5c5e\u6027\uff09": [[20, "agentscope.models.ZhipuAIChatWrapper.model_type", false]], "model_type\uff08agentscope.models.zhipuaiembeddingwrapper \u5c5e\u6027\uff09": [[20, "agentscope.models.ZhipuAIEmbeddingWrapper.model_type", false]], "modelmanager\uff08agentscope.manager \u4e2d\u7684\u7c7b\uff09": [[13, "agentscope.manager.ModelManager", false]], "modelnode\uff08agentscope.web.workstation.workflow_node \u4e2d\u7684\u7c7b\uff09": [[103, "agentscope.web.workstation.workflow_node.ModelNode", false]], "modelresponse\uff08agentscope.models \u4e2d\u7684\u7c7b\uff09": [[20, "agentscope.models.ModelResponse", false]], "modelresponse\uff08agentscope.models.response \u4e2d\u7684\u7c7b\uff09": [[28, "agentscope.models.response.ModelResponse", false]], "modelwrapperbase\uff08agentscope.models \u4e2d\u7684\u7c7b\uff09": [[20, "agentscope.models.ModelWrapperBase", false]], "modelwrapperbase\uff08agentscope.models.model \u4e2d\u7684\u7c7b\uff09": [[24, "agentscope.models.model.ModelWrapperBase", false]], "model\uff08agentscope.web.workstation.workflow_node.workflownodetype \u5c5e\u6027\uff09": [[103, "agentscope.web.workstation.workflow_node.WorkflowNodeType.MODEL", false]], "module": [[0, "module-agentscope", false], [1, "module-agentscope.agents", false], [2, "module-agentscope.agents.agent", false], [3, "module-agentscope.agents.dialog_agent", false], [4, "module-agentscope.agents.dict_dialog_agent", false], [5, "module-agentscope.agents.operator", false], [6, "module-agentscope.agents.rag_agent", false], [7, "module-agentscope.agents.react_agent", false], [8, "module-agentscope.agents.rpc_agent", false], [9, "module-agentscope.agents.user_agent", false], [10, "module-agentscope.constants", false], [11, "module-agentscope.exception", false], [12, "module-agentscope.logging", false], [13, "module-agentscope.manager", false], [14, "module-agentscope.memory", false], [15, "module-agentscope.memory.memory", false], [16, "module-agentscope.memory.temporary_memory", false], [17, "module-agentscope.message", false], [18, "module-agentscope.message.msg", false], [19, "module-agentscope.message.placeholder", false], [20, "module-agentscope.models", false], [21, "module-agentscope.models.dashscope_model", false], [22, "module-agentscope.models.gemini_model", false], [23, "module-agentscope.models.litellm_model", false], [24, "module-agentscope.models.model", false], [25, "module-agentscope.models.ollama_model", false], [26, "module-agentscope.models.openai_model", false], [27, "module-agentscope.models.post_model", false], [28, "module-agentscope.models.response", false], [29, "module-agentscope.models.yi_model", false], [30, "module-agentscope.models.zhipu_model", false], [31, "module-agentscope.msghub", false], [32, "module-agentscope.parsers", false], [33, "module-agentscope.parsers.code_block_parser", false], [34, "module-agentscope.parsers.json_object_parser", false], [35, "module-agentscope.parsers.parser_base", false], [36, "module-agentscope.parsers.regex_tagged_content_parser", false], [37, "module-agentscope.parsers.tagged_content_parser", false], [38, "module-agentscope.pipelines", false], [39, "module-agentscope.pipelines.functional", false], [40, "module-agentscope.pipelines.pipeline", false], [41, "module-agentscope.prompt", false], [42, "module-agentscope.rag", false], [43, "module-agentscope.rag.knowledge", false], [44, "module-agentscope.rag.knowledge_bank", false], [45, "module-agentscope.rag.llama_index_knowledge", false], [46, "module-agentscope.rpc", false], [47, "module-agentscope.rpc.rpc_agent_client", false], [48, "module-agentscope.rpc.rpc_agent_pb2", false], [49, "module-agentscope.rpc.rpc_agent_pb2_grpc", false], [50, "module-agentscope.serialize", false], [51, "module-agentscope.server", false], [52, "module-agentscope.server.launcher", false], [53, "module-agentscope.server.servicer", false], [54, "module-agentscope.service", false], [55, "module-agentscope.service.browser", false], [56, "module-agentscope.service.browser.web_browser", false], [57, "module-agentscope.service.execute_code", false], [58, "module-agentscope.service.execute_code.exec_notebook", false], [59, "module-agentscope.service.execute_code.exec_python", false], [60, "module-agentscope.service.execute_code.exec_shell", false], [61, "module-agentscope.service.file", false], [62, "module-agentscope.service.file.common", false], [63, "module-agentscope.service.file.json", false], [64, "module-agentscope.service.file.text", false], [65, "module-agentscope.service.multi_modality", false], [66, "module-agentscope.service.multi_modality.dashscope_services", false], [67, "module-agentscope.service.multi_modality.openai_services", false], [68, "module-agentscope.service.retrieval", false], [69, "module-agentscope.service.retrieval.retrieval_from_list", false], [70, "module-agentscope.service.retrieval.similarity", false], [71, "module-agentscope.service.service_response", false], [72, "module-agentscope.service.service_status", false], [73, "module-agentscope.service.service_toolkit", false], [74, "module-agentscope.service.sql_query", false], [75, "module-agentscope.service.sql_query.mongodb", false], [76, "module-agentscope.service.sql_query.mysql", false], [77, "module-agentscope.service.sql_query.sqlite", false], [78, "module-agentscope.service.text_processing", false], [79, "module-agentscope.service.text_processing.summarization", false], [80, "module-agentscope.service.web", false], [81, "module-agentscope.service.web.arxiv", false], [82, "module-agentscope.service.web.dblp", false], [83, "module-agentscope.service.web.download", false], [84, "module-agentscope.service.web.search", false], [85, "module-agentscope.service.web.tripadvisor", false], [86, "module-agentscope.service.web.web_digest", false], [87, "module-agentscope.service.web.wikipedia", false], [88, "module-agentscope.strategy", false], [89, "module-agentscope.strategy.mixture_of_agent", false], [90, "module-agentscope.studio", false], [91, "module-agentscope.studio.utils", false], [92, "module-agentscope.utils", false], [93, "module-agentscope.utils.common", false], [94, "module-agentscope.utils.token_utils", false], [95, "module-agentscope.web", false], [96, "module-agentscope.web.gradio", false], [97, "module-agentscope.web.gradio.constants", false], [98, "module-agentscope.web.gradio.studio", false], [99, "module-agentscope.web.gradio.utils", false], [100, "module-agentscope.web.workstation", false], [101, "module-agentscope.web.workstation.workflow", false], [102, "module-agentscope.web.workstation.workflow_dag", false], [103, "module-agentscope.web.workstation.workflow_node", false], [104, "module-agentscope.web.workstation.workflow_utils", false]], "monitormanager\uff08agentscope.manager \u4e2d\u7684\u7c7b\uff09": [[13, "agentscope.manager.MonitorManager", false]], "move_directory()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.move_directory", false]], "move_directory()\uff08\u5728 agentscope.service.file.common \u6a21\u5757\u4e2d\uff09": [[62, "agentscope.service.file.common.move_directory", false]], "move_file()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.move_file", false]], "move_file()\uff08\u5728 agentscope.service.file.common \u6a21\u5757\u4e2d\uff09": [[62, "agentscope.service.file.common.move_file", false]], "msghub()\uff08\u5728 agentscope \u6a21\u5757\u4e2d\uff09": [[0, "agentscope.msghub", false]], "msghub()\uff08\u5728 agentscope.msghub \u6a21\u5757\u4e2d\uff09": [[31, "agentscope.msghub.msghub", false]], "msghubmanager\uff08agentscope.msghub \u4e2d\u7684\u7c7b\uff09": [[31, "agentscope.msghub.MsgHubManager", false]], "msghubnode\uff08agentscope.web.workstation.workflow_node \u4e2d\u7684\u7c7b\uff09": [[103, "agentscope.web.workstation.workflow_node.MsgHubNode", false]], "msgnode\uff08agentscope.web.workstation.workflow_node \u4e2d\u7684\u7c7b\uff09": [[103, "agentscope.web.workstation.workflow_node.MsgNode", false]], "msg\uff08agentscope.message \u4e2d\u7684\u7c7b\uff09": [[17, "agentscope.message.Msg", false]], "msg\uff08agentscope.message.msg \u4e2d\u7684\u7c7b\uff09": [[18, "agentscope.message.msg.Msg", false]], "multitaggedcontentparser\uff08agentscope.parsers \u4e2d\u7684\u7c7b\uff09": [[32, "agentscope.parsers.MultiTaggedContentParser", false]], "multitaggedcontentparser\uff08agentscope.parsers.tagged_content_parser \u4e2d\u7684\u7c7b\uff09": [[37, "agentscope.parsers.tagged_content_parser.MultiTaggedContentParser", false]], "name\uff08agentscope.message.msg \u5c5e\u6027\uff09": [[17, "agentscope.message.Msg.name", false]], "name\uff08agentscope.message.msg.msg \u5c5e\u6027\uff09": [[18, "agentscope.message.msg.Msg.name", false]], "name\uff08agentscope.message.placeholder.placeholdermessage \u5c5e\u6027\uff09": [[19, "agentscope.message.placeholder.PlaceholderMessage.name", false]], "name\uff08agentscope.message.placeholdermessage \u5c5e\u6027\uff09": [[17, "agentscope.message.PlaceholderMessage.name", false]], "name\uff08agentscope.parsers.code_block_parser.markdowncodeblockparser \u5c5e\u6027\uff09": [[33, "agentscope.parsers.code_block_parser.MarkdownCodeBlockParser.name", false]], "name\uff08agentscope.parsers.json_object_parser.markdownjsondictparser \u5c5e\u6027\uff09": [[34, "agentscope.parsers.json_object_parser.MarkdownJsonDictParser.name", false]], "name\uff08agentscope.parsers.json_object_parser.markdownjsonobjectparser \u5c5e\u6027\uff09": [[34, "agentscope.parsers.json_object_parser.MarkdownJsonObjectParser.name", false]], "name\uff08agentscope.parsers.markdowncodeblockparser \u5c5e\u6027\uff09": [[32, "agentscope.parsers.MarkdownCodeBlockParser.name", false]], "name\uff08agentscope.parsers.markdownjsondictparser \u5c5e\u6027\uff09": [[32, "agentscope.parsers.MarkdownJsonDictParser.name", false]], "name\uff08agentscope.parsers.markdownjsonobjectparser \u5c5e\u6027\uff09": [[32, "agentscope.parsers.MarkdownJsonObjectParser.name", false]], "name\uff08agentscope.parsers.tagged_content_parser.taggedcontent \u5c5e\u6027\uff09": [[37, "agentscope.parsers.tagged_content_parser.TaggedContent.name", false]], "name\uff08agentscope.parsers.taggedcontent \u5c5e\u6027\uff09": [[32, "agentscope.parsers.TaggedContent.name", false]], "name\uff08agentscope.service.service_toolkit.servicefunction \u5c5e\u6027\uff09": [[73, "agentscope.service.service_toolkit.ServiceFunction.name", false]], "node_name\uff08agentscope.service.browser.web_browser.webelementinfo \u5c5e\u6027\uff09": [[56, "agentscope.service.browser.web_browser.WebElementInfo.node_name", false]], "node_name\uff08agentscope.service.webelementinfo \u5c5e\u6027\uff09": [[54, "agentscope.service.WebElementInfo.node_name", false]], "node_type\uff08agentscope.web.workstation.workflow_node.bingsearchservicenode \u5c5e\u6027\uff09": [[103, "agentscope.web.workstation.workflow_node.BingSearchServiceNode.node_type", false]], "node_type\uff08agentscope.web.workstation.workflow_node.copynode \u5c5e\u6027\uff09": [[103, "agentscope.web.workstation.workflow_node.CopyNode.node_type", false]], "node_type\uff08agentscope.web.workstation.workflow_node.dialogagentnode \u5c5e\u6027\uff09": [[103, "agentscope.web.workstation.workflow_node.DialogAgentNode.node_type", false]], "node_type\uff08agentscope.web.workstation.workflow_node.dictdialogagentnode \u5c5e\u6027\uff09": [[103, "agentscope.web.workstation.workflow_node.DictDialogAgentNode.node_type", false]], "node_type\uff08agentscope.web.workstation.workflow_node.forlooppipelinenode \u5c5e\u6027\uff09": [[103, "agentscope.web.workstation.workflow_node.ForLoopPipelineNode.node_type", false]], "node_type\uff08agentscope.web.workstation.workflow_node.googlesearchservicenode \u5c5e\u6027\uff09": [[103, "agentscope.web.workstation.workflow_node.GoogleSearchServiceNode.node_type", false]], "node_type\uff08agentscope.web.workstation.workflow_node.ifelsepipelinenode \u5c5e\u6027\uff09": [[103, "agentscope.web.workstation.workflow_node.IfElsePipelineNode.node_type", false]], "node_type\uff08agentscope.web.workstation.workflow_node.modelnode \u5c5e\u6027\uff09": [[103, "agentscope.web.workstation.workflow_node.ModelNode.node_type", false]], "node_type\uff08agentscope.web.workstation.workflow_node.msghubnode \u5c5e\u6027\uff09": [[103, "agentscope.web.workstation.workflow_node.MsgHubNode.node_type", false]], "node_type\uff08agentscope.web.workstation.workflow_node.msgnode \u5c5e\u6027\uff09": [[103, "agentscope.web.workstation.workflow_node.MsgNode.node_type", false]], "node_type\uff08agentscope.web.workstation.workflow_node.placeholdernode \u5c5e\u6027\uff09": [[103, "agentscope.web.workstation.workflow_node.PlaceHolderNode.node_type", false]], "node_type\uff08agentscope.web.workstation.workflow_node.pythonservicenode \u5c5e\u6027\uff09": [[103, "agentscope.web.workstation.workflow_node.PythonServiceNode.node_type", false]], "node_type\uff08agentscope.web.workstation.workflow_node.reactagentnode \u5c5e\u6027\uff09": [[103, "agentscope.web.workstation.workflow_node.ReActAgentNode.node_type", false]], "node_type\uff08agentscope.web.workstation.workflow_node.readtextservicenode \u5c5e\u6027\uff09": [[103, "agentscope.web.workstation.workflow_node.ReadTextServiceNode.node_type", false]], "node_type\uff08agentscope.web.workstation.workflow_node.sequentialpipelinenode \u5c5e\u6027\uff09": [[103, "agentscope.web.workstation.workflow_node.SequentialPipelineNode.node_type", false]], "node_type\uff08agentscope.web.workstation.workflow_node.switchpipelinenode \u5c5e\u6027\uff09": [[103, "agentscope.web.workstation.workflow_node.SwitchPipelineNode.node_type", false]], "node_type\uff08agentscope.web.workstation.workflow_node.useragentnode \u5c5e\u6027\uff09": [[103, "agentscope.web.workstation.workflow_node.UserAgentNode.node_type", false]], "node_type\uff08agentscope.web.workstation.workflow_node.whilelooppipelinenode \u5c5e\u6027\uff09": [[103, "agentscope.web.workstation.workflow_node.WhileLoopPipelineNode.node_type", false]], "node_type\uff08agentscope.web.workstation.workflow_node.workflownode \u5c5e\u6027\uff09": [[103, "agentscope.web.workstation.workflow_node.WorkflowNode.node_type", false]], "node_type\uff08agentscope.web.workstation.workflow_node.writetextservicenode \u5c5e\u6027\uff09": [[103, "agentscope.web.workstation.workflow_node.WriteTextServiceNode.node_type", false]], "node_value\uff08agentscope.service.browser.web_browser.webelementinfo \u5c5e\u6027\uff09": [[56, "agentscope.service.browser.web_browser.WebElementInfo.node_value", false]], "node_value\uff08agentscope.service.webelementinfo \u5c5e\u6027\uff09": [[54, "agentscope.service.WebElementInfo.node_value", false]], "nodes_not_in_graph\uff08agentscope.web.workstation.workflow_dag.asdigraph \u5c5e\u6027\uff09": [[102, "agentscope.web.workstation.workflow_dag.ASDiGraph.nodes_not_in_graph", false]], "none\uff08agentscope.constants.responseformat \u5c5e\u6027\uff09": [[10, "agentscope.constants.ResponseFormat.NONE", false]], "notebookexecutor\uff08agentscope.service \u4e2d\u7684\u7c7b\uff09": [[54, "agentscope.service.NoteBookExecutor", false]], "notebookexecutor\uff08agentscope.service.execute_code.exec_notebook \u4e2d\u7684\u7c7b\uff09": [[58, "agentscope.service.execute_code.exec_notebook.NoteBookExecutor", false]], "num_tokens_from_content()\uff08\u5728 agentscope.utils.token_utils \u6a21\u5757\u4e2d\uff09": [[94, "agentscope.utils.token_utils.num_tokens_from_content", false]], "observe() \uff08agentscope.agents.agent.agentbase \u65b9\u6cd5\uff09": [[2, "agentscope.agents.agent.AgentBase.observe", false]], "observe() \uff08agentscope.agents.agentbase \u65b9\u6cd5\uff09": [[1, "agentscope.agents.AgentBase.observe", false]], "observe() \uff08agentscope.agents.rpc_agent.rpcagent \u65b9\u6cd5\uff09": [[8, "agentscope.agents.rpc_agent.RpcAgent.observe", false]], "observe() \uff08agentscope.agents.rpcagent \u65b9\u6cd5\uff09": [[1, "agentscope.agents.RpcAgent.observe", false]], "ollamachatwrapper\uff08agentscope.models \u4e2d\u7684\u7c7b\uff09": [[20, "agentscope.models.OllamaChatWrapper", false]], "ollamachatwrapper\uff08agentscope.models.ollama_model \u4e2d\u7684\u7c7b\uff09": [[25, "agentscope.models.ollama_model.OllamaChatWrapper", false]], "ollamaembeddingwrapper\uff08agentscope.models \u4e2d\u7684\u7c7b\uff09": [[20, "agentscope.models.OllamaEmbeddingWrapper", false]], "ollamaembeddingwrapper\uff08agentscope.models.ollama_model \u4e2d\u7684\u7c7b\uff09": [[25, "agentscope.models.ollama_model.OllamaEmbeddingWrapper", false]], "ollamagenerationwrapper\uff08agentscope.models \u4e2d\u7684\u7c7b\uff09": [[20, "agentscope.models.OllamaGenerationWrapper", false]], "ollamagenerationwrapper\uff08agentscope.models.ollama_model \u4e2d\u7684\u7c7b\uff09": [[25, "agentscope.models.ollama_model.OllamaGenerationWrapper", false]], "ollamawrapperbase\uff08agentscope.models.ollama_model \u4e2d\u7684\u7c7b\uff09": [[25, "agentscope.models.ollama_model.OllamaWrapperBase", false]], "openai_audio_to_text()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.openai_audio_to_text", false]], "openai_audio_to_text()\uff08\u5728 agentscope.service.multi_modality.openai_services \u6a21\u5757\u4e2d\uff09": [[67, "agentscope.service.multi_modality.openai_services.openai_audio_to_text", false]], "openai_create_image_variation()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.openai_create_image_variation", false]], "openai_create_image_variation()\uff08\u5728 agentscope.service.multi_modality.openai_services \u6a21\u5757\u4e2d\uff09": [[67, "agentscope.service.multi_modality.openai_services.openai_create_image_variation", false]], "openai_edit_image()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.openai_edit_image", false]], "openai_edit_image()\uff08\u5728 agentscope.service.multi_modality.openai_services \u6a21\u5757\u4e2d\uff09": [[67, "agentscope.service.multi_modality.openai_services.openai_edit_image", false]], "openai_image_to_text()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.openai_image_to_text", false]], "openai_image_to_text()\uff08\u5728 agentscope.service.multi_modality.openai_services \u6a21\u5757\u4e2d\uff09": [[67, "agentscope.service.multi_modality.openai_services.openai_image_to_text", false]], "openai_text_to_audio()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.openai_text_to_audio", false]], "openai_text_to_audio()\uff08\u5728 agentscope.service.multi_modality.openai_services \u6a21\u5757\u4e2d\uff09": [[67, "agentscope.service.multi_modality.openai_services.openai_text_to_audio", false]], "openai_text_to_image()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.openai_text_to_image", false]], "openai_text_to_image()\uff08\u5728 agentscope.service.multi_modality.openai_services \u6a21\u5757\u4e2d\uff09": [[67, "agentscope.service.multi_modality.openai_services.openai_text_to_image", false]], "openaichatwrapper\uff08agentscope.models \u4e2d\u7684\u7c7b\uff09": [[20, "agentscope.models.OpenAIChatWrapper", false]], "openaichatwrapper\uff08agentscope.models.openai_model \u4e2d\u7684\u7c7b\uff09": [[26, "agentscope.models.openai_model.OpenAIChatWrapper", false]], "openaidallewrapper\uff08agentscope.models \u4e2d\u7684\u7c7b\uff09": [[20, "agentscope.models.OpenAIDALLEWrapper", false]], "openaidallewrapper\uff08agentscope.models.openai_model \u4e2d\u7684\u7c7b\uff09": [[26, "agentscope.models.openai_model.OpenAIDALLEWrapper", false]], "openaiembeddingwrapper\uff08agentscope.models \u4e2d\u7684\u7c7b\uff09": [[20, "agentscope.models.OpenAIEmbeddingWrapper", false]], "openaiembeddingwrapper\uff08agentscope.models.openai_model \u4e2d\u7684\u7c7b\uff09": [[26, "agentscope.models.openai_model.OpenAIEmbeddingWrapper", false]], "openaiwrapperbase\uff08agentscope.models \u4e2d\u7684\u7c7b\uff09": [[20, "agentscope.models.OpenAIWrapperBase", false]], "openaiwrapperbase\uff08agentscope.models.openai_model \u4e2d\u7684\u7c7b\uff09": [[26, "agentscope.models.openai_model.OpenAIWrapperBase", false]], "operator\uff08agentscope.agents \u4e2d\u7684\u7c7b\uff09": [[1, "agentscope.agents.Operator", false]], "operator\uff08agentscope.agents.operator \u4e2d\u7684\u7c7b\uff09": [[5, "agentscope.agents.operator.Operator", false]], "options\uff08agentscope.models.ollama_model.ollamachatwrapper \u5c5e\u6027\uff09": [[25, "agentscope.models.ollama_model.OllamaChatWrapper.options", false]], "options\uff08agentscope.models.ollama_model.ollamaembeddingwrapper \u5c5e\u6027\uff09": [[25, "agentscope.models.ollama_model.OllamaEmbeddingWrapper.options", false]], "options\uff08agentscope.models.ollama_model.ollamagenerationwrapper \u5c5e\u6027\uff09": [[25, "agentscope.models.ollama_model.OllamaGenerationWrapper.options", false]], "options\uff08agentscope.models.ollama_model.ollamawrapperbase \u5c5e\u6027\uff09": [[25, "agentscope.models.ollama_model.OllamaWrapperBase.options", false]], "origin_x\uff08agentscope.service.browser.web_browser.webelementinfo \u5c5e\u6027\uff09": [[56, "agentscope.service.browser.web_browser.WebElementInfo.origin_x", false]], "origin_x\uff08agentscope.service.webelementinfo \u5c5e\u6027\uff09": [[54, "agentscope.service.WebElementInfo.origin_x", false]], "origin_y\uff08agentscope.service.browser.web_browser.webelementinfo \u5c5e\u6027\uff09": [[56, "agentscope.service.browser.web_browser.WebElementInfo.origin_y", false]], "origin_y\uff08agentscope.service.webelementinfo \u5c5e\u6027\uff09": [[54, "agentscope.service.WebElementInfo.origin_y", false]], "original_func\uff08agentscope.service.service_toolkit.servicefunction \u5c5e\u6027\uff09": [[73, "agentscope.service.service_toolkit.ServiceFunction.original_func", false]], "page_html\uff08agentscope.service.browser.web_browser.webbrowser \u5c5e\u6027\uff09": [[56, "agentscope.service.browser.web_browser.WebBrowser.page_html", false]], "page_html\uff08agentscope.service.webbrowser \u5c5e\u6027\uff09": [[54, "agentscope.service.WebBrowser.page_html", false]], "page_markdown\uff08agentscope.service.browser.web_browser.webbrowser \u5c5e\u6027\uff09": [[56, "agentscope.service.browser.web_browser.WebBrowser.page_markdown", false]], "page_markdown\uff08agentscope.service.webbrowser \u5c5e\u6027\uff09": [[54, "agentscope.service.WebBrowser.page_markdown", false]], "page_screenshot\uff08agentscope.service.browser.web_browser.webbrowser \u5c5e\u6027\uff09": [[56, "agentscope.service.browser.web_browser.WebBrowser.page_screenshot", false]], "page_screenshot\uff08agentscope.service.webbrowser \u5c5e\u6027\uff09": [[54, "agentscope.service.WebBrowser.page_screenshot", false]], "page_title\uff08agentscope.service.browser.web_browser.webbrowser \u5c5e\u6027\uff09": [[56, "agentscope.service.browser.web_browser.WebBrowser.page_title", false]], "page_title\uff08agentscope.service.webbrowser \u5c5e\u6027\uff09": [[54, "agentscope.service.WebBrowser.page_title", false]], "parse() \uff08agentscope.parsers.code_block_parser.markdowncodeblockparser \u65b9\u6cd5\uff09": [[33, "agentscope.parsers.code_block_parser.MarkdownCodeBlockParser.parse", false]], "parse() \uff08agentscope.parsers.json_object_parser.markdownjsondictparser \u65b9\u6cd5\uff09": [[34, "agentscope.parsers.json_object_parser.MarkdownJsonDictParser.parse", false]], "parse() \uff08agentscope.parsers.json_object_parser.markdownjsonobjectparser \u65b9\u6cd5\uff09": [[34, "agentscope.parsers.json_object_parser.MarkdownJsonObjectParser.parse", false]], "parse() \uff08agentscope.parsers.markdowncodeblockparser \u65b9\u6cd5\uff09": [[32, "agentscope.parsers.MarkdownCodeBlockParser.parse", false]], "parse() \uff08agentscope.parsers.markdownjsondictparser \u65b9\u6cd5\uff09": [[32, "agentscope.parsers.MarkdownJsonDictParser.parse", false]], "parse() \uff08agentscope.parsers.markdownjsonobjectparser \u65b9\u6cd5\uff09": [[32, "agentscope.parsers.MarkdownJsonObjectParser.parse", false]], "parse() \uff08agentscope.parsers.multitaggedcontentparser \u65b9\u6cd5\uff09": [[32, "agentscope.parsers.MultiTaggedContentParser.parse", false]], "parse() \uff08agentscope.parsers.parser_base.parserbase \u65b9\u6cd5\uff09": [[35, "agentscope.parsers.parser_base.ParserBase.parse", false]], "parse() \uff08agentscope.parsers.parserbase \u65b9\u6cd5\uff09": [[32, "agentscope.parsers.ParserBase.parse", false]], "parse() \uff08agentscope.parsers.regex_tagged_content_parser.regextaggedcontentparser \u65b9\u6cd5\uff09": [[36, "agentscope.parsers.regex_tagged_content_parser.RegexTaggedContentParser.parse", false]], "parse() \uff08agentscope.parsers.regextaggedcontentparser \u65b9\u6cd5\uff09": [[32, "agentscope.parsers.RegexTaggedContentParser.parse", false]], "parse() \uff08agentscope.parsers.tagged_content_parser.multitaggedcontentparser \u65b9\u6cd5\uff09": [[37, "agentscope.parsers.tagged_content_parser.MultiTaggedContentParser.parse", false]], "parse_and_call_func() \uff08agentscope.service.service_toolkit.servicetoolkit \u65b9\u6cd5\uff09": [[73, "agentscope.service.service_toolkit.ServiceToolkit.parse_and_call_func", false]], "parse_and_call_func() \uff08agentscope.service.servicetoolkit \u65b9\u6cd5\uff09": [[54, "agentscope.service.ServiceToolkit.parse_and_call_func", false]], "parse_html_to_text()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.parse_html_to_text", false]], "parse_html_to_text()\uff08\u5728 agentscope.service.web.web_digest \u6a21\u5757\u4e2d\uff09": [[86, "agentscope.service.web.web_digest.parse_html_to_text", false]], "parse_json\uff08agentscope.parsers.tagged_content_parser.taggedcontent \u5c5e\u6027\uff09": [[37, "agentscope.parsers.tagged_content_parser.TaggedContent.parse_json", false]], "parse_json\uff08agentscope.parsers.taggedcontent \u5c5e\u6027\uff09": [[32, "agentscope.parsers.TaggedContent.parse_json", false]], "parserbase\uff08agentscope.parsers \u4e2d\u7684\u7c7b\uff09": [[32, "agentscope.parsers.ParserBase", false]], "parserbase\uff08agentscope.parsers.parser_base \u4e2d\u7684\u7c7b\uff09": [[35, "agentscope.parsers.parser_base.ParserBase", false]], "path_db\uff08agentscope.manager.monitormanager \u5c5e\u6027\uff09": [[13, "agentscope.manager.MonitorManager.path_db", false]], "pipelinebase\uff08agentscope.pipelines \u4e2d\u7684\u7c7b\uff09": [[38, "agentscope.pipelines.PipelineBase", false]], "pipelinebase\uff08agentscope.pipelines.pipeline \u4e2d\u7684\u7c7b\uff09": [[40, "agentscope.pipelines.pipeline.PipelineBase", false]], "pipeline\uff08agentscope.web.workstation.workflow_node.workflownodetype \u5c5e\u6027\uff09": [[103, "agentscope.web.workstation.workflow_node.WorkflowNodeType.PIPELINE", false]], "placeholder()\uff08\u5728 agentscope.pipelines.functional \u6a21\u5757\u4e2d\uff09": [[39, "agentscope.pipelines.functional.placeholder", false]], "placeholdermessage\uff08agentscope.message \u4e2d\u7684\u7c7b\uff09": [[17, "agentscope.message.PlaceholderMessage", false]], "placeholdermessage\uff08agentscope.message.placeholder \u4e2d\u7684\u7c7b\uff09": [[19, "agentscope.message.placeholder.PlaceholderMessage", false]], "placeholdernode\uff08agentscope.web.workstation.workflow_node \u4e2d\u7684\u7c7b\uff09": [[103, "agentscope.web.workstation.workflow_node.PlaceHolderNode", false]], "port\uff08agentscope.exception.agentservererror \u5c5e\u6027\uff09": [[11, "agentscope.exception.AgentServerError.port", false]], "post_processing() \uff08agentscope.rag.knowledge \u65b9\u6cd5\uff09": [[42, "agentscope.rag.Knowledge.post_processing", false]], "post_processing() \uff08agentscope.rag.knowledge.knowledge \u65b9\u6cd5\uff09": [[43, "agentscope.rag.knowledge.Knowledge.post_processing", false]], "postapichatwrapper\uff08agentscope.models \u4e2d\u7684\u7c7b\uff09": [[20, "agentscope.models.PostAPIChatWrapper", false]], "postapichatwrapper\uff08agentscope.models.post_model \u4e2d\u7684\u7c7b\uff09": [[27, "agentscope.models.post_model.PostAPIChatWrapper", false]], "postapidallewrapper\uff08agentscope.models.post_model \u4e2d\u7684\u7c7b\uff09": [[27, "agentscope.models.post_model.PostAPIDALLEWrapper", false]], "postapiembeddingwrapper\uff08agentscope.models.post_model \u4e2d\u7684\u7c7b\uff09": [[27, "agentscope.models.post_model.PostAPIEmbeddingWrapper", false]], "postapimodelwrapperbase\uff08agentscope.models \u4e2d\u7684\u7c7b\uff09": [[20, "agentscope.models.PostAPIModelWrapperBase", false]], "postapimodelwrapperbase\uff08agentscope.models.post_model \u4e2d\u7684\u7c7b\uff09": [[27, "agentscope.models.post_model.PostAPIModelWrapperBase", false]], "print_llm_usage() \uff08agentscope.manager.monitormanager \u65b9\u6cd5\uff09": [[13, "agentscope.manager.MonitorManager.print_llm_usage", false]], "print_llm_usage()\uff08\u5728 agentscope \u6a21\u5757\u4e2d\uff09": [[0, "agentscope.print_llm_usage", false]], "processed_func\uff08agentscope.service.service_toolkit.servicefunction \u5c5e\u6027\uff09": [[73, "agentscope.service.service_toolkit.ServiceFunction.processed_func", false]], "pythonservicenode\uff08agentscope.web.workstation.workflow_node \u4e2d\u7684\u7c7b\uff09": [[103, "agentscope.web.workstation.workflow_node.PythonServiceNode", false]], "query_mongodb()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.query_mongodb", false]], "query_mongodb()\uff08\u5728 agentscope.service.sql_query.mongodb \u6a21\u5757\u4e2d\uff09": [[75, "agentscope.service.sql_query.mongodb.query_mongodb", false]], "query_mysql()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.query_mysql", false]], "query_mysql()\uff08\u5728 agentscope.service.sql_query.mysql \u6a21\u5757\u4e2d\uff09": [[76, "agentscope.service.sql_query.mysql.query_mysql", false]], "query_sqlite()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.query_sqlite", false]], "query_sqlite()\uff08\u5728 agentscope.service.sql_query.sqlite \u6a21\u5757\u4e2d\uff09": [[77, "agentscope.service.sql_query.sqlite.query_sqlite", false]], "quotaexceedederror": [[11, "agentscope.exception.QuotaExceededError", false]], "raw_response\uff08agentscope.exception.responseparsingerror \u5c5e\u6027\uff09": [[11, "agentscope.exception.ResponseParsingError.raw_response", false]], "reactagentnode\uff08agentscope.web.workstation.workflow_node \u4e2d\u7684\u7c7b\uff09": [[103, "agentscope.web.workstation.workflow_node.ReActAgentNode", false]], "reactagent\uff08agentscope.agents \u4e2d\u7684\u7c7b\uff09": [[1, "agentscope.agents.ReActAgent", false]], "reactagent\uff08agentscope.agents.react_agent \u4e2d\u7684\u7c7b\uff09": [[7, "agentscope.agents.react_agent.ReActAgent", false]], "read_json_file()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.read_json_file", false]], "read_json_file()\uff08\u5728 agentscope.service.file.json \u6a21\u5757\u4e2d\uff09": [[63, "agentscope.service.file.json.read_json_file", false]], "read_text_file()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.read_text_file", false]], "read_text_file()\uff08\u5728 agentscope.service.file.text \u6a21\u5757\u4e2d\uff09": [[64, "agentscope.service.file.text.read_text_file", false]], "readtextservicenode\uff08agentscope.web.workstation.workflow_node \u4e2d\u7684\u7c7b\uff09": [[103, "agentscope.web.workstation.workflow_node.ReadTextServiceNode", false]], "refresh_index() \uff08agentscope.rag.llama_index_knowledge.llamaindexknowledge \u65b9\u6cd5\uff09": [[45, "agentscope.rag.llama_index_knowledge.LlamaIndexKnowledge.refresh_index", false]], "regextaggedcontentparser\uff08agentscope.parsers \u4e2d\u7684\u7c7b\uff09": [[32, "agentscope.parsers.RegexTaggedContentParser", false]], "regextaggedcontentparser\uff08agentscope.parsers.regex_tagged_content_parser \u4e2d\u7684\u7c7b\uff09": [[36, "agentscope.parsers.regex_tagged_content_parser.RegexTaggedContentParser", false]], "register_agent_class()\uff08agentscope.agents.agent.agentbase \u7c7b\u65b9\u6cd5\uff09": [[2, "agentscope.agents.agent.AgentBase.register_agent_class", false]], "register_agent_class()\uff08agentscope.agents.agentbase \u7c7b\u65b9\u6cd5\uff09": [[1, "agentscope.agents.AgentBase.register_agent_class", false]], "remove_duplicates_from_end()\uff08\u5728 agentscope.web.workstation.workflow_dag \u6a21\u5757\u4e2d\uff09": [[102, "agentscope.web.workstation.workflow_dag.remove_duplicates_from_end", false]], "remove_interactive_marks() \uff08agentscope.service.browser.web_browser.webbrowser \u65b9\u6cd5\uff09": [[56, "agentscope.service.browser.web_browser.WebBrowser.remove_interactive_marks", false]], "remove_interactive_marks() \uff08agentscope.service.webbrowser \u65b9\u6cd5\uff09": [[54, "agentscope.service.WebBrowser.remove_interactive_marks", false]], "reply() \uff08agentscope.agents.agent.agentbase \u65b9\u6cd5\uff09": [[2, "agentscope.agents.agent.AgentBase.reply", false]], "reply() \uff08agentscope.agents.agentbase \u65b9\u6cd5\uff09": [[1, "agentscope.agents.AgentBase.reply", false]], "reply() \uff08agentscope.agents.dialog_agent.dialogagent \u65b9\u6cd5\uff09": [[3, "agentscope.agents.dialog_agent.DialogAgent.reply", false]], "reply() \uff08agentscope.agents.dialogagent \u65b9\u6cd5\uff09": [[1, "agentscope.agents.DialogAgent.reply", false]], "reply() \uff08agentscope.agents.dict_dialog_agent.dictdialogagent \u65b9\u6cd5\uff09": [[4, "agentscope.agents.dict_dialog_agent.DictDialogAgent.reply", false]], "reply() \uff08agentscope.agents.dictdialogagent \u65b9\u6cd5\uff09": [[1, "agentscope.agents.DictDialogAgent.reply", false]], "reply() \uff08agentscope.agents.llamaindexagent \u65b9\u6cd5\uff09": [[1, "agentscope.agents.LlamaIndexAgent.reply", false]], "reply() \uff08agentscope.agents.rag_agent.llamaindexagent \u65b9\u6cd5\uff09": [[6, "agentscope.agents.rag_agent.LlamaIndexAgent.reply", false]], "reply() \uff08agentscope.agents.react_agent.reactagent \u65b9\u6cd5\uff09": [[7, "agentscope.agents.react_agent.ReActAgent.reply", false]], "reply() \uff08agentscope.agents.reactagent \u65b9\u6cd5\uff09": [[1, "agentscope.agents.ReActAgent.reply", false]], "reply() \uff08agentscope.agents.rpc_agent.rpcagent \u65b9\u6cd5\uff09": [[8, "agentscope.agents.rpc_agent.RpcAgent.reply", false]], "reply() \uff08agentscope.agents.rpcagent \u65b9\u6cd5\uff09": [[1, "agentscope.agents.RpcAgent.reply", false]], "reply() \uff08agentscope.agents.user_agent.useragent \u65b9\u6cd5\uff09": [[9, "agentscope.agents.user_agent.UserAgent.reply", false]], "reply() \uff08agentscope.agents.useragent \u65b9\u6cd5\uff09": [[1, "agentscope.agents.UserAgent.reply", false]], "require_args\uff08agentscope.service.service_toolkit.servicefunction \u5c5e\u6027\uff09": [[73, "agentscope.service.service_toolkit.ServiceFunction.require_args", false]], "required_keys\uff08agentscope.parsers.json_object_parser.markdownjsondictparser \u5c5e\u6027\uff09": [[34, "agentscope.parsers.json_object_parser.MarkdownJsonDictParser.required_keys", false]], "required_keys\uff08agentscope.parsers.markdownjsondictparser \u5c5e\u6027\uff09": [[32, "agentscope.parsers.MarkdownJsonDictParser.required_keys", false]], "requiredfieldnotfounderror": [[11, "agentscope.exception.RequiredFieldNotFoundError", false]], "reset_audience() \uff08agentscope.agents.agent.agentbase \u65b9\u6cd5\uff09": [[2, "agentscope.agents.agent.AgentBase.reset_audience", false]], "reset_audience() \uff08agentscope.agents.agentbase \u65b9\u6cd5\uff09": [[1, "agentscope.agents.AgentBase.reset_audience", false]], "reset_glb_var()\uff08\u5728 agentscope.web.gradio.studio \u6a21\u5757\u4e2d\uff09": [[98, "agentscope.web.gradio.studio.reset_glb_var", false]], "reset_notebook() \uff08agentscope.service.execute_code.exec_notebook.notebookexecutor \u65b9\u6cd5\uff09": [[58, "agentscope.service.execute_code.exec_notebook.NoteBookExecutor.reset_notebook", false]], "reset_notebook() \uff08agentscope.service.notebookexecutor \u65b9\u6cd5\uff09": [[54, "agentscope.service.NoteBookExecutor.reset_notebook", false]], "resetexception": [[99, "agentscope.web.gradio.utils.ResetException", false]], "responseformat\uff08agentscope.constants \u4e2d\u7684\u7c7b\uff09": [[10, "agentscope.constants.ResponseFormat", false]], "responseparsingerror": [[11, "agentscope.exception.ResponseParsingError", false]], "responsestub\uff08agentscope.rpc \u4e2d\u7684\u7c7b\uff09": [[46, "agentscope.rpc.ResponseStub", false]], "responsestub\uff08agentscope.rpc.rpc_agent_client \u4e2d\u7684\u7c7b\uff09": [[47, "agentscope.rpc.rpc_agent_client.ResponseStub", false]], "retrieve() \uff08agentscope.rag.knowledge \u65b9\u6cd5\uff09": [[42, "agentscope.rag.Knowledge.retrieve", false]], "retrieve() \uff08agentscope.rag.knowledge.knowledge \u65b9\u6cd5\uff09": [[43, "agentscope.rag.knowledge.Knowledge.retrieve", false]], "retrieve() \uff08agentscope.rag.llama_index_knowledge.llamaindexknowledge \u65b9\u6cd5\uff09": [[45, "agentscope.rag.llama_index_knowledge.LlamaIndexKnowledge.retrieve", false]], "retrieve_by_embedding() \uff08agentscope.memory.temporary_memory.temporarymemory \u65b9\u6cd5\uff09": [[16, "agentscope.memory.temporary_memory.TemporaryMemory.retrieve_by_embedding", false]], "retrieve_by_embedding() \uff08agentscope.memory.temporarymemory \u65b9\u6cd5\uff09": [[14, "agentscope.memory.TemporaryMemory.retrieve_by_embedding", false]], "retrieve_from_list()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.retrieve_from_list", false]], "retrieve_from_list()\uff08\u5728 agentscope.service.retrieval.retrieval_from_list \u6a21\u5757\u4e2d\uff09": [[69, "agentscope.service.retrieval.retrieval_from_list.retrieve_from_list", false]], "rm_audience() \uff08agentscope.agents.agent.agentbase \u65b9\u6cd5\uff09": [[2, "agentscope.agents.agent.AgentBase.rm_audience", false]], "rm_audience() \uff08agentscope.agents.agentbase \u65b9\u6cd5\uff09": [[1, "agentscope.agents.AgentBase.rm_audience", false]], "rm_database() \uff08agentscope.manager.monitormanager \u65b9\u6cd5\uff09": [[13, "agentscope.manager.MonitorManager.rm_database", false]], "role\uff08agentscope.message.msg \u5c5e\u6027\uff09": [[17, "agentscope.message.Msg.role", false]], "role\uff08agentscope.message.msg.msg \u5c5e\u6027\uff09": [[18, "agentscope.message.msg.Msg.role", false]], "role\uff08agentscope.message.placeholder.placeholdermessage \u5c5e\u6027\uff09": [[19, "agentscope.message.placeholder.PlaceholderMessage.role", false]], "role\uff08agentscope.message.placeholdermessage \u5c5e\u6027\uff09": [[17, "agentscope.message.PlaceholderMessage.role", false]], "rpcagentclient\uff08agentscope.rpc \u4e2d\u7684\u7c7b\uff09": [[46, "agentscope.rpc.RpcAgentClient", false]], "rpcagentclient\uff08agentscope.rpc.rpc_agent_client \u4e2d\u7684\u7c7b\uff09": [[47, "agentscope.rpc.rpc_agent_client.RpcAgentClient", false]], "rpcagentserverlauncher\uff08agentscope.server \u4e2d\u7684\u7c7b\uff09": [[51, "agentscope.server.RpcAgentServerLauncher", false]], "rpcagentserverlauncher\uff08agentscope.server.launcher \u4e2d\u7684\u7c7b\uff09": [[52, "agentscope.server.launcher.RpcAgentServerLauncher", false]], "rpcagentservicer\uff08agentscope.rpc \u4e2d\u7684\u7c7b\uff09": [[46, "agentscope.rpc.RpcAgentServicer", false]], "rpcagentservicer\uff08agentscope.rpc.rpc_agent_pb2_grpc \u4e2d\u7684\u7c7b\uff09": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgentServicer", false]], "rpcagentstub\uff08agentscope.rpc \u4e2d\u7684\u7c7b\uff09": [[46, "agentscope.rpc.RpcAgentStub", false]], "rpcagentstub\uff08agentscope.rpc.rpc_agent_pb2_grpc \u4e2d\u7684\u7c7b\uff09": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgentStub", false]], "rpcagent\uff08agentscope.agents \u4e2d\u7684\u7c7b\uff09": [[1, "agentscope.agents.RpcAgent", false]], "rpcagent\uff08agentscope.agents.rpc_agent \u4e2d\u7684\u7c7b\uff09": [[8, "agentscope.agents.rpc_agent.RpcAgent", false]], "rpcagent\uff08agentscope.rpc.rpc_agent_pb2_grpc \u4e2d\u7684\u7c7b\uff09": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgent", false]], "rpcmsg\uff08agentscope.rpc \u4e2d\u7684\u7c7b\uff09": [[46, "agentscope.rpc.RpcMsg", false]], "run() \uff08agentscope.web.workstation.workflow_dag.asdigraph \u65b9\u6cd5\uff09": [[102, "agentscope.web.workstation.workflow_dag.ASDiGraph.run", false]], "run_app()\uff08\u5728 agentscope.web.gradio.studio \u6a21\u5757\u4e2d\uff09": [[98, "agentscope.web.gradio.studio.run_app", false]], "run_code_on_notebook() \uff08agentscope.service.execute_code.exec_notebook.notebookexecutor \u65b9\u6cd5\uff09": [[58, "agentscope.service.execute_code.exec_notebook.NoteBookExecutor.run_code_on_notebook", false]], "run_code_on_notebook() \uff08agentscope.service.notebookexecutor \u65b9\u6cd5\uff09": [[54, "agentscope.service.NoteBookExecutor.run_code_on_notebook", false]], "sanitize_node_data()\uff08\u5728 agentscope.web.workstation.workflow_dag \u6a21\u5757\u4e2d\uff09": [[102, "agentscope.web.workstation.workflow_dag.sanitize_node_data", false]], "save_api_invocation() \uff08agentscope.manager.filemanager \u65b9\u6cd5\uff09": [[13, "agentscope.manager.FileManager.save_api_invocation", false]], "save_file() \uff08agentscope.manager.filemanager \u65b9\u6cd5\uff09": [[13, "agentscope.manager.FileManager.save_file", false]], "save_image() \uff08agentscope.manager.filemanager \u65b9\u6cd5\uff09": [[13, "agentscope.manager.FileManager.save_image", false]], "save_python_code() \uff08agentscope.manager.filemanager \u65b9\u6cd5\uff09": [[13, "agentscope.manager.FileManager.save_python_code", false]], "save_runtime_information() \uff08agentscope.manager.filemanager \u65b9\u6cd5\uff09": [[13, "agentscope.manager.FileManager.save_runtime_information", false]], "send_audio()\uff08\u5728 agentscope.web.gradio.studio \u6a21\u5757\u4e2d\uff09": [[98, "agentscope.web.gradio.studio.send_audio", false]], "send_image()\uff08\u5728 agentscope.web.gradio.studio \u6a21\u5757\u4e2d\uff09": [[98, "agentscope.web.gradio.studio.send_image", false]], "send_message()\uff08\u5728 agentscope.web.gradio.studio \u6a21\u5757\u4e2d\uff09": [[98, "agentscope.web.gradio.studio.send_message", false]], "send_msg()\uff08\u5728 agentscope.web.gradio.utils \u6a21\u5757\u4e2d\uff09": [[99, "agentscope.web.gradio.utils.send_msg", false]], "send_player_input()\uff08\u5728 agentscope.web.gradio.utils \u6a21\u5757\u4e2d\uff09": [[99, "agentscope.web.gradio.utils.send_player_input", false]], "send_reset_msg()\uff08\u5728 agentscope.web.gradio.utils \u6a21\u5757\u4e2d\uff09": [[99, "agentscope.web.gradio.utils.send_reset_msg", false]], "sequentialpipeline()\uff08\u5728 agentscope.pipelines \u6a21\u5757\u4e2d\uff09": [[38, "agentscope.pipelines.sequentialpipeline", false]], "sequentialpipeline()\uff08\u5728 agentscope.pipelines.functional \u6a21\u5757\u4e2d\uff09": [[39, "agentscope.pipelines.functional.sequentialpipeline", false]], "sequentialpipelinenode\uff08agentscope.web.workstation.workflow_node \u4e2d\u7684\u7c7b\uff09": [[103, "agentscope.web.workstation.workflow_node.SequentialPipelineNode", false]], "sequentialpipeline\uff08agentscope.pipelines \u4e2d\u7684\u7c7b\uff09": [[38, "agentscope.pipelines.SequentialPipeline", false]], "sequentialpipeline\uff08agentscope.pipelines.pipeline \u4e2d\u7684\u7c7b\uff09": [[40, "agentscope.pipelines.pipeline.SequentialPipeline", false]], "serialize()\uff08\u5728 agentscope.serialize \u6a21\u5757\u4e2d\uff09": [[50, "agentscope.serialize.serialize", false]], "service_funcs\uff08agentscope.service.service_toolkit.servicetoolkit \u5c5e\u6027\uff09": [[73, "agentscope.service.service_toolkit.ServiceToolkit.service_funcs", false]], "service_funcs\uff08agentscope.service.servicetoolkit \u5c5e\u6027\uff09": [[54, "agentscope.service.ServiceToolkit.service_funcs", false]], "serviceexecstatus\uff08agentscope.service \u4e2d\u7684\u7c7b\uff09": [[54, "agentscope.service.ServiceExecStatus", false]], "serviceexecstatus\uff08agentscope.service.service_status \u4e2d\u7684\u7c7b\uff09": [[72, "agentscope.service.service_status.ServiceExecStatus", false]], "servicefactory\uff08agentscope.service \u4e2d\u7684\u7c7b\uff09": [[54, "agentscope.service.ServiceFactory", false]], "servicefactory\uff08agentscope.service.service_toolkit \u4e2d\u7684\u7c7b\uff09": [[73, "agentscope.service.service_toolkit.ServiceFactory", false]], "servicefunction\uff08agentscope.service.service_toolkit \u4e2d\u7684\u7c7b\uff09": [[73, "agentscope.service.service_toolkit.ServiceFunction", false]], "serviceresponse\uff08agentscope.service \u4e2d\u7684\u7c7b\uff09": [[54, "agentscope.service.ServiceResponse", false]], "serviceresponse\uff08agentscope.service.service_response \u4e2d\u7684\u7c7b\uff09": [[71, "agentscope.service.service_response.ServiceResponse", false]], "servicetoolkit\uff08agentscope.service \u4e2d\u7684\u7c7b\uff09": [[54, "agentscope.service.ServiceToolkit", false]], "servicetoolkit\uff08agentscope.service.service_toolkit \u4e2d\u7684\u7c7b\uff09": [[73, "agentscope.service.service_toolkit.ServiceToolkit", false]], "service\uff08agentscope.web.workstation.workflow_node.workflownodetype \u5c5e\u6027\uff09": [[103, "agentscope.web.workstation.workflow_node.WorkflowNodeType.SERVICE", false]], "set_interactive_marks() \uff08agentscope.service.browser.web_browser.webbrowser \u65b9\u6cd5\uff09": [[56, "agentscope.service.browser.web_browser.WebBrowser.set_interactive_marks", false]], "set_interactive_marks() \uff08agentscope.service.webbrowser \u65b9\u6cd5\uff09": [[54, "agentscope.service.WebBrowser.set_interactive_marks", false]], "set_model_configs() \uff08agentscope.rpc.rpc_agent_client.rpcagentclient \u65b9\u6cd5\uff09": [[47, "agentscope.rpc.rpc_agent_client.RpcAgentClient.set_model_configs", false]], "set_model_configs() \uff08agentscope.rpc.rpc_agent_pb2_grpc.rpcagentservicer \u65b9\u6cd5\uff09": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgentServicer.set_model_configs", false]], "set_model_configs() \uff08agentscope.rpc.rpcagentclient \u65b9\u6cd5\uff09": [[46, "agentscope.rpc.RpcAgentClient.set_model_configs", false]], "set_model_configs() \uff08agentscope.rpc.rpcagentservicer \u65b9\u6cd5\uff09": [[46, "agentscope.rpc.RpcAgentServicer.set_model_configs", false]], "set_model_configs() \uff08agentscope.server.agentserverservicer \u65b9\u6cd5\uff09": [[51, "agentscope.server.AgentServerServicer.set_model_configs", false]], "set_model_configs() \uff08agentscope.server.servicer.agentserverservicer \u65b9\u6cd5\uff09": [[53, "agentscope.server.servicer.AgentServerServicer.set_model_configs", false]], "set_model_configs()\uff08agentscope.rpc.rpc_agent_pb2_grpc.rpcagent \u9759\u6001\u65b9\u6cd5\uff09": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgent.set_model_configs", false]], "set_parser() \uff08agentscope.agents.dict_dialog_agent.dictdialogagent \u65b9\u6cd5\uff09": [[4, "agentscope.agents.dict_dialog_agent.DictDialogAgent.set_parser", false]], "set_parser() \uff08agentscope.agents.dictdialogagent \u65b9\u6cd5\uff09": [[1, "agentscope.agents.DictDialogAgent.set_parser", false]], "set_response() \uff08agentscope.rpc.responsestub \u65b9\u6cd5\uff09": [[46, "agentscope.rpc.ResponseStub.set_response", false]], "set_response() \uff08agentscope.rpc.rpc_agent_client.responsestub \u65b9\u6cd5\uff09": [[47, "agentscope.rpc.rpc_agent_client.ResponseStub.set_response", false]], "setup_logger()\uff08\u5728 agentscope.logging \u6a21\u5757\u4e2d\uff09": [[12, "agentscope.logging.setup_logger", false]], "show_image_tokens() \uff08agentscope.manager.monitormanager \u65b9\u6cd5\uff09": [[13, "agentscope.manager.MonitorManager.show_image_tokens", false]], "show_text_and_embedding_tokens() \uff08agentscope.manager.monitormanager \u65b9\u6cd5\uff09": [[13, "agentscope.manager.MonitorManager.show_text_and_embedding_tokens", false]], "shrinkpolicy\uff08agentscope.constants \u4e2d\u7684\u7c7b\uff09": [[10, "agentscope.constants.ShrinkPolicy", false]], "shutdown() \uff08agentscope.server.launcher.rpcagentserverlauncher \u65b9\u6cd5\uff09": [[52, "agentscope.server.launcher.RpcAgentServerLauncher.shutdown", false]], "shutdown() \uff08agentscope.server.rpcagentserverlauncher \u65b9\u6cd5\uff09": [[51, "agentscope.server.RpcAgentServerLauncher.shutdown", false]], "size() \uff08agentscope.memory.memory.memorybase \u65b9\u6cd5\uff09": [[15, "agentscope.memory.memory.MemoryBase.size", false]], "size() \uff08agentscope.memory.memorybase \u65b9\u6cd5\uff09": [[14, "agentscope.memory.MemoryBase.size", false]], "size() \uff08agentscope.memory.temporary_memory.temporarymemory \u65b9\u6cd5\uff09": [[16, "agentscope.memory.temporary_memory.TemporaryMemory.size", false]], "size() \uff08agentscope.memory.temporarymemory \u65b9\u6cd5\uff09": [[14, "agentscope.memory.TemporaryMemory.size", false]], "speak() \uff08agentscope.agents.agent.agentbase \u65b9\u6cd5\uff09": [[2, "agentscope.agents.agent.AgentBase.speak", false]], "speak() \uff08agentscope.agents.agentbase \u65b9\u6cd5\uff09": [[1, "agentscope.agents.AgentBase.speak", false]], "speak() \uff08agentscope.agents.user_agent.useragent \u65b9\u6cd5\uff09": [[9, "agentscope.agents.user_agent.UserAgent.speak", false]], "speak() \uff08agentscope.agents.useragent \u65b9\u6cd5\uff09": [[1, "agentscope.agents.UserAgent.speak", false]], "start_workflow()\uff08\u5728 agentscope.web.workstation.workflow \u6a21\u5757\u4e2d\uff09": [[101, "agentscope.web.workstation.workflow.start_workflow", false]], "state_dict() \uff08agentscope.manager.asmanager \u65b9\u6cd5\uff09": [[13, "agentscope.manager.ASManager.state_dict", false]], "state_dict() \uff08agentscope.manager.filemanager \u65b9\u6cd5\uff09": [[13, "agentscope.manager.FileManager.state_dict", false]], "state_dict() \uff08agentscope.manager.modelmanager \u65b9\u6cd5\uff09": [[13, "agentscope.manager.ModelManager.state_dict", false]], "state_dict() \uff08agentscope.manager.monitormanager \u65b9\u6cd5\uff09": [[13, "agentscope.manager.MonitorManager.state_dict", false]], "state_dict()\uff08\u5728 agentscope \u6a21\u5757\u4e2d\uff09": [[0, "agentscope.state_dict", false]], "static_format()\uff08agentscope.models.openai_model.openaichatwrapper \u9759\u6001\u65b9\u6cd5\uff09": [[26, "agentscope.models.openai_model.OpenAIChatWrapper.static_format", false]], "static_format()\uff08agentscope.models.openaichatwrapper \u9759\u6001\u65b9\u6cd5\uff09": [[20, "agentscope.models.OpenAIChatWrapper.static_format", false]], "stop() \uff08agentscope.agents.rpc_agent.rpcagent \u65b9\u6cd5\uff09": [[8, "agentscope.agents.rpc_agent.RpcAgent.stop", false]], "stop() \uff08agentscope.agents.rpcagent \u65b9\u6cd5\uff09": [[1, "agentscope.agents.RpcAgent.stop", false]], "stop() \uff08agentscope.rpc.rpc_agent_client.rpcagentclient \u65b9\u6cd5\uff09": [[47, "agentscope.rpc.rpc_agent_client.RpcAgentClient.stop", false]], "stop() \uff08agentscope.rpc.rpc_agent_pb2_grpc.rpcagentservicer \u65b9\u6cd5\uff09": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgentServicer.stop", false]], "stop() \uff08agentscope.rpc.rpcagentclient \u65b9\u6cd5\uff09": [[46, "agentscope.rpc.RpcAgentClient.stop", false]], "stop() \uff08agentscope.rpc.rpcagentservicer \u65b9\u6cd5\uff09": [[46, "agentscope.rpc.RpcAgentServicer.stop", false]], "stop() \uff08agentscope.server.agentserverservicer \u65b9\u6cd5\uff09": [[51, "agentscope.server.AgentServerServicer.stop", false]], "stop() \uff08agentscope.server.servicer.agentserverservicer \u65b9\u6cd5\uff09": [[53, "agentscope.server.servicer.AgentServerServicer.stop", false]], "stop()\uff08agentscope.rpc.rpc_agent_pb2_grpc.rpcagent \u9759\u6001\u65b9\u6cd5\uff09": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgent.stop", false]], "stream\uff08agentscope.models.modelresponse \u5c5e\u6027\uff09": [[20, "agentscope.models.ModelResponse.stream", false]], "stream\uff08agentscope.models.response.modelresponse \u5c5e\u6027\uff09": [[28, "agentscope.models.response.ModelResponse.stream", false]], "studioerror": [[11, "agentscope.exception.StudioError", false]], "studioregistererror": [[11, "agentscope.exception.StudioRegisterError", false]], "substrings_in_vision_models_names\uff08agentscope.models.openai_model.openaichatwrapper \u5c5e\u6027\uff09": [[26, "agentscope.models.openai_model.OpenAIChatWrapper.substrings_in_vision_models_names", false]], "substrings_in_vision_models_names\uff08agentscope.models.openaichatwrapper \u5c5e\u6027\uff09": [[20, "agentscope.models.OpenAIChatWrapper.substrings_in_vision_models_names", false]], "success\uff08agentscope.service.service_status.serviceexecstatus \u5c5e\u6027\uff09": [[72, "agentscope.service.service_status.ServiceExecStatus.SUCCESS", false]], "success\uff08agentscope.service.serviceexecstatus \u5c5e\u6027\uff09": [[54, "agentscope.service.ServiceExecStatus.SUCCESS", false]], "summarization()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.summarization", false]], "summarization()\uff08\u5728 agentscope.service.text_processing.summarization \u6a21\u5757\u4e2d\uff09": [[79, "agentscope.service.text_processing.summarization.summarization", false]], "summarize\uff08agentscope.constants.shrinkpolicy \u5c5e\u6027\uff09": [[10, "agentscope.constants.ShrinkPolicy.SUMMARIZE", false]], "switchpipeline()\uff08\u5728 agentscope.pipelines \u6a21\u5757\u4e2d\uff09": [[38, "agentscope.pipelines.switchpipeline", false]], "switchpipeline()\uff08\u5728 agentscope.pipelines.functional \u6a21\u5757\u4e2d\uff09": [[39, "agentscope.pipelines.functional.switchpipeline", false]], "switchpipelinenode\uff08agentscope.web.workstation.workflow_node \u4e2d\u7684\u7c7b\uff09": [[103, "agentscope.web.workstation.workflow_node.SwitchPipelineNode", false]], "switchpipeline\uff08agentscope.pipelines \u4e2d\u7684\u7c7b\uff09": [[38, "agentscope.pipelines.SwitchPipeline", false]], "switchpipeline\uff08agentscope.pipelines.pipeline \u4e2d\u7684\u7c7b\uff09": [[40, "agentscope.pipelines.pipeline.SwitchPipeline", false]], "sys_python_guard()\uff08\u5728 agentscope.service.execute_code.exec_python \u6a21\u5757\u4e2d\uff09": [[59, "agentscope.service.execute_code.exec_python.sys_python_guard", false]], "systempromptcomparer\uff08agentscope.prompt \u4e2d\u7684\u7c7b\uff09": [[41, "agentscope.prompt.SystemPromptComparer", false]], "systempromptgeneratorbase\uff08agentscope.prompt \u4e2d\u7684\u7c7b\uff09": [[41, "agentscope.prompt.SystemPromptGeneratorBase", false]], "systempromptoptimizer\uff08agentscope.prompt \u4e2d\u7684\u7c7b\uff09": [[41, "agentscope.prompt.SystemPromptOptimizer", false]], "tag_begin\uff08agentscope.parsers.code_block_parser.markdowncodeblockparser \u5c5e\u6027\uff09": [[33, "agentscope.parsers.code_block_parser.MarkdownCodeBlockParser.tag_begin", false]], "tag_begin\uff08agentscope.parsers.json_object_parser.markdownjsondictparser \u5c5e\u6027\uff09": [[34, "agentscope.parsers.json_object_parser.MarkdownJsonDictParser.tag_begin", false]], "tag_begin\uff08agentscope.parsers.json_object_parser.markdownjsonobjectparser \u5c5e\u6027\uff09": [[34, "agentscope.parsers.json_object_parser.MarkdownJsonObjectParser.tag_begin", false]], "tag_begin\uff08agentscope.parsers.markdowncodeblockparser \u5c5e\u6027\uff09": [[32, "agentscope.parsers.MarkdownCodeBlockParser.tag_begin", false]], "tag_begin\uff08agentscope.parsers.markdownjsondictparser \u5c5e\u6027\uff09": [[32, "agentscope.parsers.MarkdownJsonDictParser.tag_begin", false]], "tag_begin\uff08agentscope.parsers.markdownjsonobjectparser \u5c5e\u6027\uff09": [[32, "agentscope.parsers.MarkdownJsonObjectParser.tag_begin", false]], "tag_begin\uff08agentscope.parsers.tagged_content_parser.taggedcontent \u5c5e\u6027\uff09": [[37, "agentscope.parsers.tagged_content_parser.TaggedContent.tag_begin", false]], "tag_begin\uff08agentscope.parsers.taggedcontent \u5c5e\u6027\uff09": [[32, "agentscope.parsers.TaggedContent.tag_begin", false]], "tag_end\uff08agentscope.parsers.code_block_parser.markdowncodeblockparser \u5c5e\u6027\uff09": [[33, "agentscope.parsers.code_block_parser.MarkdownCodeBlockParser.tag_end", false]], "tag_end\uff08agentscope.parsers.json_object_parser.markdownjsondictparser \u5c5e\u6027\uff09": [[34, "agentscope.parsers.json_object_parser.MarkdownJsonDictParser.tag_end", false]], "tag_end\uff08agentscope.parsers.json_object_parser.markdownjsonobjectparser \u5c5e\u6027\uff09": [[34, "agentscope.parsers.json_object_parser.MarkdownJsonObjectParser.tag_end", false]], "tag_end\uff08agentscope.parsers.markdowncodeblockparser \u5c5e\u6027\uff09": [[32, "agentscope.parsers.MarkdownCodeBlockParser.tag_end", false]], "tag_end\uff08agentscope.parsers.markdownjsondictparser \u5c5e\u6027\uff09": [[32, "agentscope.parsers.MarkdownJsonDictParser.tag_end", false]], "tag_end\uff08agentscope.parsers.markdownjsonobjectparser \u5c5e\u6027\uff09": [[32, "agentscope.parsers.MarkdownJsonObjectParser.tag_end", false]], "tag_end\uff08agentscope.parsers.tagged_content_parser.taggedcontent \u5c5e\u6027\uff09": [[37, "agentscope.parsers.tagged_content_parser.TaggedContent.tag_end", false]], "tag_end\uff08agentscope.parsers.taggedcontent \u5c5e\u6027\uff09": [[32, "agentscope.parsers.TaggedContent.tag_end", false]], "tag_name\uff08agentscope.service.browser.web_browser.webelementinfo \u5c5e\u6027\uff09": [[56, "agentscope.service.browser.web_browser.WebElementInfo.tag_name", false]], "tag_name\uff08agentscope.service.webelementinfo \u5c5e\u6027\uff09": [[54, "agentscope.service.WebElementInfo.tag_name", false]], "taggedcontent\uff08agentscope.parsers \u4e2d\u7684\u7c7b\uff09": [[32, "agentscope.parsers.TaggedContent", false]], "taggedcontent\uff08agentscope.parsers.tagged_content_parser \u4e2d\u7684\u7c7b\uff09": [[37, "agentscope.parsers.tagged_content_parser.TaggedContent", false]], "tagnotfounderror": [[11, "agentscope.exception.TagNotFoundError", false]], "temporarymemory\uff08agentscope.memory \u4e2d\u7684\u7c7b\uff09": [[14, "agentscope.memory.TemporaryMemory", false]], "temporarymemory\uff08agentscope.memory.temporary_memory \u4e2d\u7684\u7c7b\uff09": [[16, "agentscope.memory.temporary_memory.TemporaryMemory", false]], "text\uff08agentscope.models.modelresponse \u5c5e\u6027\uff09": [[20, "agentscope.models.ModelResponse.text", false]], "text\uff08agentscope.models.response.modelresponse \u5c5e\u6027\uff09": [[28, "agentscope.models.response.ModelResponse.text", false]], "timer()\uff08\u5728 agentscope.utils.common \u6a21\u5757\u4e2d\uff09": [[93, "agentscope.utils.common.timer", false]], "timestamp\uff08agentscope.message.msg \u5c5e\u6027\uff09": [[17, "agentscope.message.Msg.timestamp", false]], "timestamp\uff08agentscope.message.msg.msg \u5c5e\u6027\uff09": [[18, "agentscope.message.msg.Msg.timestamp", false]], "timestamp\uff08agentscope.message.placeholder.placeholdermessage \u5c5e\u6027\uff09": [[19, "agentscope.message.placeholder.PlaceholderMessage.timestamp", false]], "timestamp\uff08agentscope.message.placeholdermessage \u5c5e\u6027\uff09": [[17, "agentscope.message.PlaceholderMessage.timestamp", false]], "to_content() \uff08agentscope.parsers.parser_base.dictfiltermixin \u65b9\u6cd5\uff09": [[35, "agentscope.parsers.parser_base.DictFilterMixin.to_content", false]], "to_dict() \uff08agentscope.message.msg \u65b9\u6cd5\uff09": [[17, "agentscope.message.Msg.to_dict", false]], "to_dict() \uff08agentscope.message.msg.msg \u65b9\u6cd5\uff09": [[18, "agentscope.message.msg.Msg.to_dict", false]], "to_dict() \uff08agentscope.message.placeholder.placeholdermessage \u65b9\u6cd5\uff09": [[19, "agentscope.message.placeholder.PlaceholderMessage.to_dict", false]], "to_dict() \uff08agentscope.message.placeholdermessage \u65b9\u6cd5\uff09": [[17, "agentscope.message.PlaceholderMessage.to_dict", false]], "to_dist() \uff08agentscope.agents.agent.agentbase \u65b9\u6cd5\uff09": [[2, "agentscope.agents.agent.AgentBase.to_dist", false]], "to_dist() \uff08agentscope.agents.agentbase \u65b9\u6cd5\uff09": [[1, "agentscope.agents.AgentBase.to_dist", false]], "to_memory() \uff08agentscope.parsers.parser_base.dictfiltermixin \u65b9\u6cd5\uff09": [[35, "agentscope.parsers.parser_base.DictFilterMixin.to_memory", false]], "to_metadata() \uff08agentscope.parsers.parser_base.dictfiltermixin \u65b9\u6cd5\uff09": [[35, "agentscope.parsers.parser_base.DictFilterMixin.to_metadata", false]], "to_openai_dict()\uff08\u5728 agentscope.utils.common \u6a21\u5757\u4e2d\uff09": [[93, "agentscope.utils.common.to_openai_dict", false]], "tools_calling_format\uff08agentscope.service.service_toolkit.servicetoolkit \u5c5e\u6027\uff09": [[73, "agentscope.service.service_toolkit.ServiceToolkit.tools_calling_format", false]], "tools_calling_format\uff08agentscope.service.servicetoolkit \u5c5e\u6027\uff09": [[54, "agentscope.service.ServiceToolkit.tools_calling_format", false]], "tools_instruction\uff08agentscope.service.service_toolkit.servicetoolkit \u5c5e\u6027\uff09": [[73, "agentscope.service.service_toolkit.ServiceToolkit.tools_instruction", false]], "tools_instruction\uff08agentscope.service.servicetoolkit \u5c5e\u6027\uff09": [[54, "agentscope.service.ServiceToolkit.tools_instruction", false]], "tripadvisor_search()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.tripadvisor_search", false]], "tripadvisor_search()\uff08\u5728 agentscope.service.web.tripadvisor \u6a21\u5757\u4e2d\uff09": [[85, "agentscope.service.web.tripadvisor.tripadvisor_search", false]], "tripadvisor_search_location_details()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.tripadvisor_search_location_details", false]], "tripadvisor_search_location_details()\uff08\u5728 agentscope.service.web.tripadvisor \u6a21\u5757\u4e2d\uff09": [[85, "agentscope.service.web.tripadvisor.tripadvisor_search_location_details", false]], "tripadvisor_search_location_photos()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.tripadvisor_search_location_photos", false]], "tripadvisor_search_location_photos()\uff08\u5728 agentscope.service.web.tripadvisor \u6a21\u5757\u4e2d\uff09": [[85, "agentscope.service.web.tripadvisor.tripadvisor_search_location_photos", false]], "truncate\uff08agentscope.constants.shrinkpolicy \u5c5e\u6027\uff09": [[10, "agentscope.constants.ShrinkPolicy.TRUNCATE", false]], "type\uff08agentscope.service.browser.web_browser.webelementinfo \u5c5e\u6027\uff09": [[56, "agentscope.service.browser.web_browser.WebElementInfo.type", false]], "type\uff08agentscope.service.webelementinfo \u5c5e\u6027\uff09": [[54, "agentscope.service.WebElementInfo.type", false]], "update_image_tokens() \uff08agentscope.manager.monitormanager \u65b9\u6cd5\uff09": [[13, "agentscope.manager.MonitorManager.update_image_tokens", false]], "update_placeholder() \uff08agentscope.rpc.rpc_agent_client.rpcagentclient \u65b9\u6cd5\uff09": [[47, "agentscope.rpc.rpc_agent_client.RpcAgentClient.update_placeholder", false]], "update_placeholder() \uff08agentscope.rpc.rpc_agent_pb2_grpc.rpcagentservicer \u65b9\u6cd5\uff09": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgentServicer.update_placeholder", false]], "update_placeholder() \uff08agentscope.rpc.rpcagentclient \u65b9\u6cd5\uff09": [[46, "agentscope.rpc.RpcAgentClient.update_placeholder", false]], "update_placeholder() \uff08agentscope.rpc.rpcagentservicer \u65b9\u6cd5\uff09": [[46, "agentscope.rpc.RpcAgentServicer.update_placeholder", false]], "update_placeholder() \uff08agentscope.server.agentserverservicer \u65b9\u6cd5\uff09": [[51, "agentscope.server.AgentServerServicer.update_placeholder", false]], "update_placeholder() \uff08agentscope.server.servicer.agentserverservicer \u65b9\u6cd5\uff09": [[53, "agentscope.server.servicer.AgentServerServicer.update_placeholder", false]], "update_placeholder()\uff08agentscope.rpc.rpc_agent_pb2_grpc.rpcagent \u9759\u6001\u65b9\u6cd5\uff09": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgent.update_placeholder", false]], "update_text_and_embedding_tokens() \uff08agentscope.manager.monitormanager \u65b9\u6cd5\uff09": [[13, "agentscope.manager.MonitorManager.update_text_and_embedding_tokens", false]], "update_value() \uff08agentscope.message.placeholder.placeholdermessage \u65b9\u6cd5\uff09": [[19, "agentscope.message.placeholder.PlaceholderMessage.update_value", false]], "update_value() \uff08agentscope.message.placeholdermessage \u65b9\u6cd5\uff09": [[17, "agentscope.message.PlaceholderMessage.update_value", false]], "url\uff08agentscope.message.msg \u5c5e\u6027\uff09": [[17, "agentscope.message.Msg.url", false]], "url\uff08agentscope.message.msg.msg \u5c5e\u6027\uff09": [[18, "agentscope.message.msg.Msg.url", false]], "url\uff08agentscope.message.placeholder.placeholdermessage \u5c5e\u6027\uff09": [[19, "agentscope.message.placeholder.PlaceholderMessage.url", false]], "url\uff08agentscope.message.placeholdermessage \u5c5e\u6027\uff09": [[17, "agentscope.message.PlaceholderMessage.url", false]], "url\uff08agentscope.service.browser.web_browser.webbrowser \u5c5e\u6027\uff09": [[56, "agentscope.service.browser.web_browser.WebBrowser.url", false]], "url\uff08agentscope.service.webbrowser \u5c5e\u6027\uff09": [[54, "agentscope.service.WebBrowser.url", false]], "user_input()\uff08\u5728 agentscope.web.gradio.utils \u6a21\u5757\u4e2d\uff09": [[99, "agentscope.web.gradio.utils.user_input", false]], "useragentnode\uff08agentscope.web.workstation.workflow_node \u4e2d\u7684\u7c7b\uff09": [[103, "agentscope.web.workstation.workflow_node.UserAgentNode", false]], "useragent\uff08agentscope.agents \u4e2d\u7684\u7c7b\uff09": [[1, "agentscope.agents.UserAgent", false]], "useragent\uff08agentscope.agents.user_agent \u4e2d\u7684\u7c7b\uff09": [[9, "agentscope.agents.user_agent.UserAgent", false]], "wait_until_terminate() \uff08agentscope.server.launcher.rpcagentserverlauncher \u65b9\u6cd5\uff09": [[52, "agentscope.server.launcher.RpcAgentServerLauncher.wait_until_terminate", false]], "wait_until_terminate() \uff08agentscope.server.rpcagentserverlauncher \u65b9\u6cd5\uff09": [[51, "agentscope.server.RpcAgentServerLauncher.wait_until_terminate", false]], "webbrowser\uff08agentscope.service \u4e2d\u7684\u7c7b\uff09": [[54, "agentscope.service.WebBrowser", false]], "webbrowser\uff08agentscope.service.browser.web_browser \u4e2d\u7684\u7c7b\uff09": [[56, "agentscope.service.browser.web_browser.WebBrowser", false]], "webelementinfo\uff08agentscope.service \u4e2d\u7684\u7c7b\uff09": [[54, "agentscope.service.WebElementInfo", false]], "webelementinfo\uff08agentscope.service.browser.web_browser \u4e2d\u7684\u7c7b\uff09": [[56, "agentscope.service.browser.web_browser.WebElementInfo", false]], "whilelooppipeline()\uff08\u5728 agentscope.pipelines \u6a21\u5757\u4e2d\uff09": [[38, "agentscope.pipelines.whilelooppipeline", false]], "whilelooppipeline()\uff08\u5728 agentscope.pipelines.functional \u6a21\u5757\u4e2d\uff09": [[39, "agentscope.pipelines.functional.whilelooppipeline", false]], "whilelooppipelinenode\uff08agentscope.web.workstation.workflow_node \u4e2d\u7684\u7c7b\uff09": [[103, "agentscope.web.workstation.workflow_node.WhileLoopPipelineNode", false]], "whilelooppipeline\uff08agentscope.pipelines \u4e2d\u7684\u7c7b\uff09": [[38, "agentscope.pipelines.WhileLoopPipeline", false]], "whilelooppipeline\uff08agentscope.pipelines.pipeline \u4e2d\u7684\u7c7b\uff09": [[40, "agentscope.pipelines.pipeline.WhileLoopPipeline", false]], "width\uff08agentscope.service.browser.web_browser.webelementinfo \u5c5e\u6027\uff09": [[56, "agentscope.service.browser.web_browser.WebElementInfo.width", false]], "width\uff08agentscope.service.webelementinfo \u5c5e\u6027\uff09": [[54, "agentscope.service.WebElementInfo.width", false]], "wikipedia_search()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.wikipedia_search", false]], "wikipedia_search()\uff08\u5728 agentscope.service.web.wikipedia \u6a21\u5757\u4e2d\uff09": [[87, "agentscope.service.web.wikipedia.wikipedia_search", false]], "wikipedia_search_categories()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.wikipedia_search_categories", false]], "wikipedia_search_categories()\uff08\u5728 agentscope.service.web.wikipedia \u6a21\u5757\u4e2d\uff09": [[87, "agentscope.service.web.wikipedia.wikipedia_search_categories", false]], "workflownodetype\uff08agentscope.web.workstation.workflow_node \u4e2d\u7684\u7c7b\uff09": [[103, "agentscope.web.workstation.workflow_node.WorkflowNodeType", false]], "workflownode\uff08agentscope.web.workstation.workflow_node \u4e2d\u7684\u7c7b\uff09": [[103, "agentscope.web.workstation.workflow_node.WorkflowNode", false]], "write_json_file()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.write_json_file", false]], "write_json_file()\uff08\u5728 agentscope.service.file.json \u6a21\u5757\u4e2d\uff09": [[63, "agentscope.service.file.json.write_json_file", false]], "write_text_file()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.write_text_file", false]], "write_text_file()\uff08\u5728 agentscope.service.file.text \u6a21\u5757\u4e2d\uff09": [[64, "agentscope.service.file.text.write_text_file", false]], "writetextservicenode\uff08agentscope.web.workstation.workflow_node \u4e2d\u7684\u7c7b\uff09": [[103, "agentscope.web.workstation.workflow_node.WriteTextServiceNode", false]], "yichatwrapper\uff08agentscope.models \u4e2d\u7684\u7c7b\uff09": [[20, "agentscope.models.YiChatWrapper", false]], "yichatwrapper\uff08agentscope.models.yi_model \u4e2d\u7684\u7c7b\uff09": [[29, "agentscope.models.yi_model.YiChatWrapper", false]], "zhipuaichatwrapper\uff08agentscope.models \u4e2d\u7684\u7c7b\uff09": [[20, "agentscope.models.ZhipuAIChatWrapper", false]], "zhipuaichatwrapper\uff08agentscope.models.zhipu_model \u4e2d\u7684\u7c7b\uff09": [[30, "agentscope.models.zhipu_model.ZhipuAIChatWrapper", false]], "zhipuaiembeddingwrapper\uff08agentscope.models \u4e2d\u7684\u7c7b\uff09": [[20, "agentscope.models.ZhipuAIEmbeddingWrapper", false]], "zhipuaiembeddingwrapper\uff08agentscope.models.zhipu_model \u4e2d\u7684\u7c7b\uff09": [[30, "agentscope.models.zhipu_model.ZhipuAIEmbeddingWrapper", false]], "zhipuaiwrapperbase\uff08agentscope.models.zhipu_model \u4e2d\u7684\u7c7b\uff09": [[30, "agentscope.models.zhipu_model.ZhipuAIWrapperBase", false]]}, "objects": {"": [[0, 0, 0, "-", "agentscope"]], "agentscope": [[1, 0, 0, "-", "agents"], [10, 0, 0, "-", "constants"], [11, 0, 0, "-", "exception"], [0, 6, 1, "", "init"], [12, 0, 0, "-", "logging"], [13, 0, 0, "-", "manager"], [14, 0, 0, "-", "memory"], [17, 0, 0, "-", "message"], [20, 0, 0, "-", "models"], [31, 0, 0, "-", "msghub"], [32, 0, 0, "-", "parsers"], [38, 0, 0, "-", "pipelines"], [0, 6, 1, "", "print_llm_usage"], [41, 0, 0, "-", "prompt"], [42, 0, 0, "-", "rag"], [46, 0, 0, "-", "rpc"], [50, 0, 0, "-", "serialize"], [51, 0, 0, "-", "server"], [54, 0, 0, "-", "service"], [0, 6, 1, "", "state_dict"], [88, 0, 0, "-", "strategy"], [90, 0, 0, "-", "studio"], [92, 0, 0, "-", "utils"], [95, 0, 0, "-", "web"]], "agentscope.agents": [[1, 1, 1, "", "AgentBase"], [1, 1, 1, "", "DialogAgent"], [1, 1, 1, "", "DictDialogAgent"], [1, 1, 1, "", "DistConf"], [1, 1, 1, "", "LlamaIndexAgent"], [1, 1, 1, "", "Operator"], [1, 1, 1, "", "ReActAgent"], [1, 1, 1, "", "RpcAgent"], [1, 1, 1, "", "UserAgent"], [2, 0, 0, "-", "agent"], [3, 0, 0, "-", "dialog_agent"], [4, 0, 0, "-", "dict_dialog_agent"], [5, 0, 0, "-", "operator"], [6, 0, 0, "-", "rag_agent"], [7, 0, 0, "-", "react_agent"], [8, 0, 0, "-", "rpc_agent"], [9, 0, 0, "-", "user_agent"]], "agentscope.agents.AgentBase": [[1, 2, 1, "", "__init__"], [1, 3, 1, "", "agent_id"], [1, 2, 1, "", "clear_audience"], [1, 2, 1, "", "generate_agent_id"], [1, 2, 1, "", "get_agent_class"], [1, 2, 1, "", "observe"], [1, 2, 1, "", "register_agent_class"], [1, 2, 1, "", "reply"], [1, 2, 1, "", "reset_audience"], [1, 2, 1, "", "rm_audience"], [1, 2, 1, "", "speak"], [1, 2, 1, "", "to_dist"]], "agentscope.agents.DialogAgent": [[1, 2, 1, "", "__init__"], [1, 2, 1, "", "reply"]], "agentscope.agents.DictDialogAgent": [[1, 2, 1, "", "__init__"], [1, 2, 1, "", "reply"], [1, 2, 1, "", "set_parser"]], "agentscope.agents.DistConf": [[1, 2, 1, "", "__init__"]], "agentscope.agents.LlamaIndexAgent": [[1, 2, 1, "", "__init__"], [1, 2, 1, "", "reply"]], "agentscope.agents.ReActAgent": [[1, 2, 1, "", "__init__"], [1, 2, 1, "", "finish"], [1, 2, 1, "", "reply"]], "agentscope.agents.RpcAgent": [[1, 2, 1, "", "__init__"], [1, 2, 1, "", "clone_instances"], [1, 2, 1, "", "observe"], [1, 2, 1, "", "reply"], [1, 2, 1, "", "stop"]], "agentscope.agents.UserAgent": [[1, 2, 1, "", "__init__"], [1, 2, 1, "", "reply"], [1, 2, 1, "", "speak"]], "agentscope.agents.agent": [[2, 1, 1, "", "AgentBase"], [2, 1, 1, "", "DistConf"]], "agentscope.agents.agent.AgentBase": [[2, 2, 1, "", "__init__"], [2, 3, 1, "", "agent_id"], [2, 2, 1, "", "clear_audience"], [2, 2, 1, "", "generate_agent_id"], [2, 2, 1, "", "get_agent_class"], [2, 2, 1, "", "observe"], [2, 2, 1, "", "register_agent_class"], [2, 2, 1, "", "reply"], [2, 2, 1, "", "reset_audience"], [2, 2, 1, "", "rm_audience"], [2, 2, 1, "", "speak"], [2, 2, 1, "", "to_dist"]], "agentscope.agents.agent.DistConf": [[2, 2, 1, "", "__init__"]], "agentscope.agents.dialog_agent": [[3, 1, 1, "", "DialogAgent"]], "agentscope.agents.dialog_agent.DialogAgent": [[3, 2, 1, "", "__init__"], [3, 2, 1, "", "reply"]], "agentscope.agents.dict_dialog_agent": [[4, 1, 1, "", "DictDialogAgent"]], "agentscope.agents.dict_dialog_agent.DictDialogAgent": [[4, 2, 1, "", "__init__"], [4, 2, 1, "", "reply"], [4, 2, 1, "", "set_parser"]], "agentscope.agents.operator": [[5, 1, 1, "", "Operator"]], "agentscope.agents.rag_agent": [[6, 1, 1, "", "LlamaIndexAgent"]], "agentscope.agents.rag_agent.LlamaIndexAgent": [[6, 2, 1, "", "__init__"], [6, 2, 1, "", "reply"]], "agentscope.agents.react_agent": [[7, 1, 1, "", "ReActAgent"]], "agentscope.agents.react_agent.ReActAgent": [[7, 2, 1, "", "__init__"], [7, 2, 1, "", "finish"], [7, 2, 1, "", "reply"]], "agentscope.agents.rpc_agent": [[8, 1, 1, "", "RpcAgent"]], "agentscope.agents.rpc_agent.RpcAgent": [[8, 2, 1, "", "__init__"], [8, 2, 1, "", "clone_instances"], [8, 2, 1, "", "observe"], [8, 2, 1, "", "reply"], [8, 2, 1, "", "stop"]], "agentscope.agents.user_agent": [[9, 1, 1, "", "UserAgent"]], "agentscope.agents.user_agent.UserAgent": [[9, 2, 1, "", "__init__"], [9, 2, 1, "", "reply"], [9, 2, 1, "", "speak"]], "agentscope.constants": [[10, 1, 1, "", "ResponseFormat"], [10, 1, 1, "", "ShrinkPolicy"]], "agentscope.constants.ResponseFormat": [[10, 4, 1, "", "JSON"], [10, 4, 1, "", "NONE"]], "agentscope.constants.ShrinkPolicy": [[10, 4, 1, "", "SUMMARIZE"], [10, 4, 1, "", "TRUNCATE"]], "agentscope.exception": [[11, 5, 1, "", "AgentCallError"], [11, 5, 1, "", "AgentCreationError"], [11, 5, 1, "", "AgentServerError"], [11, 5, 1, "", "AgentServerNotAliveError"], [11, 5, 1, "", "ArgumentNotFoundError"], [11, 5, 1, "", "ArgumentTypeError"], [11, 5, 1, "", "FunctionCallError"], [11, 5, 1, "", "FunctionCallFormatError"], [11, 5, 1, "", "FunctionNotFoundError"], [11, 5, 1, "", "JsonDictValidationError"], [11, 5, 1, "", "JsonParsingError"], [11, 5, 1, "", "JsonTypeError"], [11, 5, 1, "", "QuotaExceededError"], [11, 5, 1, "", "RequiredFieldNotFoundError"], [11, 5, 1, "", "ResponseParsingError"], [11, 5, 1, "", "StudioError"], [11, 5, 1, "", "StudioRegisterError"], [11, 5, 1, "", "TagNotFoundError"]], "agentscope.exception.AgentServerError": [[11, 2, 1, "", "__init__"], [11, 4, 1, "", "host"], [11, 4, 1, "", "message"], [11, 4, 1, "", "port"]], "agentscope.exception.FunctionCallError": [[11, 2, 1, "", "__init__"]], "agentscope.exception.QuotaExceededError": [[11, 2, 1, "", "__init__"]], "agentscope.exception.ResponseParsingError": [[11, 2, 1, "", "__init__"], [11, 4, 1, "", "raw_response"]], "agentscope.exception.StudioError": [[11, 2, 1, "", "__init__"]], "agentscope.exception.TagNotFoundError": [[11, 2, 1, "", "__init__"], [11, 4, 1, "", "missing_begin_tag"], [11, 4, 1, "", "missing_end_tag"]], "agentscope.logging": [[12, 6, 1, "", "log_gradio"], [12, 6, 1, "", "log_msg"], [12, 6, 1, "", "log_stream_msg"], [12, 6, 1, "", "setup_logger"]], "agentscope.manager": [[13, 1, 1, "", "ASManager"], [13, 1, 1, "", "FileManager"], [13, 1, 1, "", "ModelManager"], [13, 1, 1, "", "MonitorManager"]], "agentscope.manager.ASManager": [[13, 2, 1, "", "__init__"], [13, 2, 1, "", "flush"], [13, 2, 1, "", "get_instance"], [13, 2, 1, "", "initialize"], [13, 2, 1, "", "load_dict"], [13, 2, 1, "", "state_dict"]], "agentscope.manager.FileManager": [[13, 2, 1, "", "__init__"], [13, 2, 1, "", "cache_text_embedding"], [13, 3, 1, "", "code_dir"], [13, 3, 1, "", "embedding_cache_dir"], [13, 2, 1, "", "fetch_cached_text_embedding"], [13, 3, 1, "", "file_dir"], [13, 2, 1, "", "flush"], [13, 2, 1, "", "get_instance"], [13, 2, 1, "", "initialize"], [13, 3, 1, "", "invoke_dir"], [13, 2, 1, "", "is_initialized"], [13, 2, 1, "", "load_dict"], [13, 2, 1, "", "save_api_invocation"], [13, 2, 1, "", "save_file"], [13, 2, 1, "", "save_image"], [13, 2, 1, "", "save_python_code"], [13, 2, 1, "", "save_runtime_information"], [13, 2, 1, "", "state_dict"]], "agentscope.manager.ModelManager": [[13, 2, 1, "", "__init__"], [13, 2, 1, "", "clear_model_configs"], [13, 2, 1, "", "flush"], [13, 2, 1, "", "get_config_by_name"], [13, 2, 1, "", "get_instance"], [13, 2, 1, "", "get_model_by_config_name"], [13, 2, 1, "", "initialize"], [13, 2, 1, "", "load_dict"], [13, 2, 1, "", "load_model_configs"], [13, 4, 1, "", "model_configs"], [13, 2, 1, "", "state_dict"]], "agentscope.manager.MonitorManager": [[13, 2, 1, "", "__init__"], [13, 2, 1, "", "flush"], [13, 2, 1, "", "get_instance"], [13, 2, 1, "", "initialize"], [13, 2, 1, "", "load_dict"], [13, 3, 1, "", "path_db"], [13, 2, 1, "", "print_llm_usage"], [13, 2, 1, "", "rm_database"], [13, 2, 1, "", "show_image_tokens"], [13, 2, 1, "", "show_text_and_embedding_tokens"], [13, 2, 1, "", "state_dict"], [13, 2, 1, "", "update_image_tokens"], [13, 2, 1, "", "update_text_and_embedding_tokens"]], "agentscope.memory": [[14, 1, 1, "", "MemoryBase"], [14, 1, 1, "", "TemporaryMemory"], [15, 0, 0, "-", "memory"], [16, 0, 0, "-", "temporary_memory"]], "agentscope.memory.MemoryBase": [[14, 2, 1, "", "add"], [14, 2, 1, "", "clear"], [14, 2, 1, "", "delete"], [14, 2, 1, "", "export"], [14, 2, 1, "", "get_memory"], [14, 2, 1, "", "load"], [14, 2, 1, "", "size"]], "agentscope.memory.TemporaryMemory": [[14, 2, 1, "", "__init__"], [14, 2, 1, "", "add"], [14, 2, 1, "", "clear"], [14, 2, 1, "", "delete"], [14, 2, 1, "", "export"], [14, 2, 1, "", "get_embeddings"], [14, 2, 1, "", "get_memory"], [14, 2, 1, "", "load"], [14, 2, 1, "", "retrieve_by_embedding"], [14, 2, 1, "", "size"]], "agentscope.memory.memory": [[15, 1, 1, "", "MemoryBase"]], "agentscope.memory.memory.MemoryBase": [[15, 2, 1, "", "add"], [15, 2, 1, "", "clear"], [15, 2, 1, "", "delete"], [15, 2, 1, "", "export"], [15, 2, 1, "", "get_memory"], [15, 2, 1, "", "load"], [15, 2, 1, "", "size"]], "agentscope.memory.temporary_memory": [[16, 1, 1, "", "TemporaryMemory"]], "agentscope.memory.temporary_memory.TemporaryMemory": [[16, 2, 1, "", "__init__"], [16, 2, 1, "", "add"], [16, 2, 1, "", "clear"], [16, 2, 1, "", "delete"], [16, 2, 1, "", "export"], [16, 2, 1, "", "get_embeddings"], [16, 2, 1, "", "get_memory"], [16, 2, 1, "", "load"], [16, 2, 1, "", "retrieve_by_embedding"], [16, 2, 1, "", "size"]], "agentscope.message": [[17, 1, 1, "", "Msg"], [17, 1, 1, "", "PlaceholderMessage"], [18, 0, 0, "-", "msg"], [19, 0, 0, "-", "placeholder"]], "agentscope.message.Msg": [[17, 2, 1, "", "__init__"], [17, 3, 1, "", "content"], [17, 2, 1, "", "formatted_str"], [17, 2, 1, "", "from_dict"], [17, 3, 1, "", "id"], [17, 3, 1, "", "metadata"], [17, 3, 1, "", "name"], [17, 3, 1, "", "role"], [17, 3, 1, "", "timestamp"], [17, 2, 1, "", "to_dict"], [17, 3, 1, "", "url"]], "agentscope.message.PlaceholderMessage": [[17, 2, 1, "", "__init__"], [17, 3, 1, "", "content"], [17, 2, 1, "", "from_dict"], [17, 3, 1, "", "id"], [17, 3, 1, "", "metadata"], [17, 3, 1, "", "name"], [17, 3, 1, "", "role"], [17, 3, 1, "", "timestamp"], [17, 2, 1, "", "to_dict"], [17, 2, 1, "", "update_value"], [17, 3, 1, "", "url"]], "agentscope.message.msg": [[18, 1, 1, "", "Msg"]], "agentscope.message.msg.Msg": [[18, 2, 1, "", "__init__"], [18, 3, 1, "", "content"], [18, 2, 1, "", "formatted_str"], [18, 2, 1, "", "from_dict"], [18, 3, 1, "", "id"], [18, 3, 1, "", "metadata"], [18, 3, 1, "", "name"], [18, 3, 1, "", "role"], [18, 3, 1, "", "timestamp"], [18, 2, 1, "", "to_dict"], [18, 3, 1, "", "url"]], "agentscope.message.placeholder": [[19, 1, 1, "", "PlaceholderMessage"]], "agentscope.message.placeholder.PlaceholderMessage": [[19, 2, 1, "", "__init__"], [19, 3, 1, "", "content"], [19, 2, 1, "", "from_dict"], [19, 3, 1, "", "id"], [19, 3, 1, "", "metadata"], [19, 3, 1, "", "name"], [19, 3, 1, "", "role"], [19, 3, 1, "", "timestamp"], [19, 2, 1, "", "to_dict"], [19, 2, 1, "", "update_value"], [19, 3, 1, "", "url"]], "agentscope.models": [[20, 1, 1, "", "DashScopeChatWrapper"], [20, 1, 1, "", "DashScopeImageSynthesisWrapper"], [20, 1, 1, "", "DashScopeMultiModalWrapper"], [20, 1, 1, "", "DashScopeTextEmbeddingWrapper"], [20, 1, 1, "", "GeminiChatWrapper"], [20, 1, 1, "", "GeminiEmbeddingWrapper"], [20, 1, 1, "", "LiteLLMChatWrapper"], [20, 1, 1, "", "ModelResponse"], [20, 1, 1, "", "ModelWrapperBase"], [20, 1, 1, "", "OllamaChatWrapper"], [20, 1, 1, "", "OllamaEmbeddingWrapper"], [20, 1, 1, "", "OllamaGenerationWrapper"], [20, 1, 1, "", "OpenAIChatWrapper"], [20, 1, 1, "", "OpenAIDALLEWrapper"], [20, 1, 1, "", "OpenAIEmbeddingWrapper"], [20, 1, 1, "", "OpenAIWrapperBase"], [20, 1, 1, "", "PostAPIChatWrapper"], [20, 1, 1, "", "PostAPIModelWrapperBase"], [20, 1, 1, "", "YiChatWrapper"], [20, 1, 1, "", "ZhipuAIChatWrapper"], [20, 1, 1, "", "ZhipuAIEmbeddingWrapper"], [21, 0, 0, "-", "dashscope_model"], [22, 0, 0, "-", "gemini_model"], [23, 0, 0, "-", "litellm_model"], [24, 0, 0, "-", "model"], [25, 0, 0, "-", "ollama_model"], [26, 0, 0, "-", "openai_model"], [27, 0, 0, "-", "post_model"], [28, 0, 0, "-", "response"], [29, 0, 0, "-", "yi_model"], [30, 0, 0, "-", "zhipu_model"]], "agentscope.models.DashScopeChatWrapper": [[20, 2, 1, "", "__init__"], [20, 4, 1, "", "deprecated_model_type"], [20, 2, 1, "", "format"], [20, 4, 1, "", "model_type"]], "agentscope.models.DashScopeImageSynthesisWrapper": [[20, 4, 1, "", "model_type"]], "agentscope.models.DashScopeMultiModalWrapper": [[20, 2, 1, "", "convert_url"], [20, 2, 1, "", "format"], [20, 4, 1, "", "model_type"]], "agentscope.models.DashScopeTextEmbeddingWrapper": [[20, 4, 1, "", "model_type"]], "agentscope.models.GeminiChatWrapper": [[20, 2, 1, "", "__init__"], [20, 2, 1, "", "format"], [20, 4, 1, "", "generation_method"], [20, 4, 1, "", "model_type"]], "agentscope.models.GeminiEmbeddingWrapper": [[20, 4, 1, "", "model_type"]], "agentscope.models.LiteLLMChatWrapper": [[20, 2, 1, "", "__init__"], [20, 2, 1, "", "format"], [20, 4, 1, "", "model_type"]], "agentscope.models.ModelResponse": [[20, 2, 1, "", "__init__"], [20, 3, 1, "", "is_stream_exhausted"], [20, 3, 1, "", "stream"], [20, 3, 1, "", "text"]], "agentscope.models.ModelWrapperBase": [[20, 2, 1, "", "__init__"], [20, 4, 1, "", "config_name"], [20, 2, 1, "", "format"], [20, 2, 1, "", "format_for_common_chat_models"], [20, 2, 1, "", "get_wrapper"], [20, 4, 1, "", "model_name"], [20, 4, 1, "", "model_type"]], "agentscope.models.OllamaChatWrapper": [[20, 2, 1, "", "__init__"], [20, 2, 1, "", "format"], [20, 4, 1, "", "model_type"]], "agentscope.models.OllamaEmbeddingWrapper": [[20, 2, 1, "", "format"], [20, 4, 1, "", "model_type"]], "agentscope.models.OllamaGenerationWrapper": [[20, 2, 1, "", "format"], [20, 4, 1, "", "model_type"]], "agentscope.models.OpenAIChatWrapper": [[20, 2, 1, "", "__init__"], [20, 4, 1, "", "deprecated_model_type"], [20, 2, 1, "", "format"], [20, 4, 1, "", "model_type"], [20, 2, 1, "", "static_format"], [20, 4, 1, "", "substrings_in_vision_models_names"]], "agentscope.models.OpenAIDALLEWrapper": [[20, 4, 1, "", "model_type"]], "agentscope.models.OpenAIEmbeddingWrapper": [[20, 4, 1, "", "model_type"]], "agentscope.models.OpenAIWrapperBase": [[20, 2, 1, "", "__init__"], [20, 2, 1, "", "format"]], "agentscope.models.PostAPIChatWrapper": [[20, 2, 1, "", "format"], [20, 4, 1, "", "model_type"]], "agentscope.models.PostAPIModelWrapperBase": [[20, 2, 1, "", "__init__"], [20, 4, 1, "", "model_type"]], "agentscope.models.YiChatWrapper": [[20, 2, 1, "", "__init__"], [20, 2, 1, "", "format"], [20, 4, 1, "", "model_type"]], "agentscope.models.ZhipuAIChatWrapper": [[20, 2, 1, "", "__init__"], [20, 2, 1, "", "format"], [20, 4, 1, "", "model_type"]], "agentscope.models.ZhipuAIEmbeddingWrapper": [[20, 4, 1, "", "model_type"]], "agentscope.models.dashscope_model": [[21, 1, 1, "", "DashScopeChatWrapper"], [21, 1, 1, "", "DashScopeImageSynthesisWrapper"], [21, 1, 1, "", "DashScopeMultiModalWrapper"], [21, 1, 1, "", "DashScopeTextEmbeddingWrapper"], [21, 1, 1, "", "DashScopeWrapperBase"]], "agentscope.models.dashscope_model.DashScopeChatWrapper": [[21, 2, 1, "", "__init__"], [21, 4, 1, "", "config_name"], [21, 4, 1, "", "deprecated_model_type"], [21, 2, 1, "", "format"], [21, 4, 1, "", "model_name"], [21, 4, 1, "", "model_type"]], "agentscope.models.dashscope_model.DashScopeImageSynthesisWrapper": [[21, 4, 1, "", "config_name"], [21, 4, 1, "", "model_name"], [21, 4, 1, "", "model_type"]], "agentscope.models.dashscope_model.DashScopeMultiModalWrapper": [[21, 4, 1, "", "config_name"], [21, 2, 1, "", "convert_url"], [21, 2, 1, "", "format"], [21, 4, 1, "", "model_name"], [21, 4, 1, "", "model_type"]], "agentscope.models.dashscope_model.DashScopeTextEmbeddingWrapper": [[21, 4, 1, "", "config_name"], [21, 4, 1, "", "model_name"], [21, 4, 1, "", "model_type"]], "agentscope.models.dashscope_model.DashScopeWrapperBase": [[21, 2, 1, "", "__init__"], [21, 2, 1, "", "format"]], "agentscope.models.gemini_model": [[22, 1, 1, "", "GeminiChatWrapper"], [22, 1, 1, "", "GeminiEmbeddingWrapper"], [22, 1, 1, "", "GeminiWrapperBase"]], "agentscope.models.gemini_model.GeminiChatWrapper": [[22, 2, 1, "", "__init__"], [22, 4, 1, "", "config_name"], [22, 2, 1, "", "format"], [22, 4, 1, "", "generation_method"], [22, 4, 1, "", "model_name"], [22, 4, 1, "", "model_type"]], "agentscope.models.gemini_model.GeminiEmbeddingWrapper": [[22, 4, 1, "", "config_name"], [22, 4, 1, "", "model_name"], [22, 4, 1, "", "model_type"]], "agentscope.models.gemini_model.GeminiWrapperBase": [[22, 2, 1, "", "__init__"], [22, 2, 1, "", "list_models"]], "agentscope.models.litellm_model": [[23, 1, 1, "", "LiteLLMChatWrapper"], [23, 1, 1, "", "LiteLLMWrapperBase"]], "agentscope.models.litellm_model.LiteLLMChatWrapper": [[23, 2, 1, "", "__init__"], [23, 4, 1, "", "config_name"], [23, 2, 1, "", "format"], [23, 4, 1, "", "model_name"], [23, 4, 1, "", "model_type"]], "agentscope.models.litellm_model.LiteLLMWrapperBase": [[23, 2, 1, "", "__init__"], [23, 2, 1, "", "format"]], "agentscope.models.model": [[24, 1, 1, "", "ModelWrapperBase"]], "agentscope.models.model.ModelWrapperBase": [[24, 2, 1, "", "__init__"], [24, 4, 1, "", "config_name"], [24, 2, 1, "", "format"], [24, 2, 1, "", "format_for_common_chat_models"], [24, 2, 1, "", "get_wrapper"], [24, 4, 1, "", "model_name"], [24, 4, 1, "", "model_type"]], "agentscope.models.ollama_model": [[25, 1, 1, "", "OllamaChatWrapper"], [25, 1, 1, "", "OllamaEmbeddingWrapper"], [25, 1, 1, "", "OllamaGenerationWrapper"], [25, 1, 1, "", "OllamaWrapperBase"]], "agentscope.models.ollama_model.OllamaChatWrapper": [[25, 2, 1, "", "__init__"], [25, 4, 1, "", "config_name"], [25, 2, 1, "", "format"], [25, 4, 1, "", "keep_alive"], [25, 4, 1, "", "model_name"], [25, 4, 1, "", "model_type"], [25, 4, 1, "", "options"]], "agentscope.models.ollama_model.OllamaEmbeddingWrapper": [[25, 4, 1, "", "config_name"], [25, 2, 1, "", "format"], [25, 4, 1, "", "keep_alive"], [25, 4, 1, "", "model_name"], [25, 4, 1, "", "model_type"], [25, 4, 1, "", "options"]], "agentscope.models.ollama_model.OllamaGenerationWrapper": [[25, 4, 1, "", "config_name"], [25, 2, 1, "", "format"], [25, 4, 1, "", "keep_alive"], [25, 4, 1, "", "model_name"], [25, 4, 1, "", "model_type"], [25, 4, 1, "", "options"]], "agentscope.models.ollama_model.OllamaWrapperBase": [[25, 2, 1, "", "__init__"], [25, 4, 1, "", "keep_alive"], [25, 4, 1, "", "model_name"], [25, 4, 1, "", "model_type"], [25, 4, 1, "", "options"]], "agentscope.models.openai_model": [[26, 1, 1, "", "OpenAIChatWrapper"], [26, 1, 1, "", "OpenAIDALLEWrapper"], [26, 1, 1, "", "OpenAIEmbeddingWrapper"], [26, 1, 1, "", "OpenAIWrapperBase"]], "agentscope.models.openai_model.OpenAIChatWrapper": [[26, 2, 1, "", "__init__"], [26, 4, 1, "", "config_name"], [26, 4, 1, "", "deprecated_model_type"], [26, 2, 1, "", "format"], [26, 4, 1, "", "model_name"], [26, 4, 1, "", "model_type"], [26, 2, 1, "", "static_format"], [26, 4, 1, "", "substrings_in_vision_models_names"]], "agentscope.models.openai_model.OpenAIDALLEWrapper": [[26, 4, 1, "", "config_name"], [26, 4, 1, "", "model_name"], [26, 4, 1, "", "model_type"]], "agentscope.models.openai_model.OpenAIEmbeddingWrapper": [[26, 4, 1, "", "config_name"], [26, 4, 1, "", "model_name"], [26, 4, 1, "", "model_type"]], "agentscope.models.openai_model.OpenAIWrapperBase": [[26, 2, 1, "", "__init__"], [26, 2, 1, "", "format"]], "agentscope.models.post_model": [[27, 1, 1, "", "PostAPIChatWrapper"], [27, 1, 1, "", "PostAPIDALLEWrapper"], [27, 1, 1, "", "PostAPIEmbeddingWrapper"], [27, 1, 1, "", "PostAPIModelWrapperBase"]], "agentscope.models.post_model.PostAPIChatWrapper": [[27, 4, 1, "", "config_name"], [27, 2, 1, "", "format"], [27, 4, 1, "", "model_name"], [27, 4, 1, "", "model_type"]], "agentscope.models.post_model.PostAPIDALLEWrapper": [[27, 4, 1, "", "deprecated_model_type"], [27, 2, 1, "", "format"], [27, 4, 1, "", "model_type"]], "agentscope.models.post_model.PostAPIEmbeddingWrapper": [[27, 2, 1, "", "format"], [27, 4, 1, "", "model_type"]], "agentscope.models.post_model.PostAPIModelWrapperBase": [[27, 2, 1, "", "__init__"], [27, 4, 1, "", "config_name"], [27, 4, 1, "", "model_name"], [27, 4, 1, "", "model_type"]], "agentscope.models.response": [[28, 1, 1, "", "ModelResponse"]], "agentscope.models.response.ModelResponse": [[28, 2, 1, "", "__init__"], [28, 3, 1, "", "is_stream_exhausted"], [28, 3, 1, "", "stream"], [28, 3, 1, "", "text"]], "agentscope.models.yi_model": [[29, 1, 1, "", "YiChatWrapper"]], "agentscope.models.yi_model.YiChatWrapper": [[29, 2, 1, "", "__init__"], [29, 4, 1, "", "config_name"], [29, 2, 1, "", "format"], [29, 4, 1, "", "model_name"], [29, 4, 1, "", "model_type"]], "agentscope.models.zhipu_model": [[30, 1, 1, "", "ZhipuAIChatWrapper"], [30, 1, 1, "", "ZhipuAIEmbeddingWrapper"], [30, 1, 1, "", "ZhipuAIWrapperBase"]], "agentscope.models.zhipu_model.ZhipuAIChatWrapper": [[30, 2, 1, "", "__init__"], [30, 4, 1, "", "config_name"], [30, 2, 1, "", "format"], [30, 4, 1, "", "model_name"], [30, 4, 1, "", "model_type"]], "agentscope.models.zhipu_model.ZhipuAIEmbeddingWrapper": [[30, 4, 1, "", "config_name"], [30, 4, 1, "", "model_name"], [30, 4, 1, "", "model_type"]], "agentscope.models.zhipu_model.ZhipuAIWrapperBase": [[30, 2, 1, "", "__init__"], [30, 2, 1, "", "format"]], "agentscope.msghub": [[31, 1, 1, "", "MsgHubManager"], [31, 6, 1, "", "msghub"]], "agentscope.msghub.MsgHubManager": [[31, 2, 1, "", "__init__"], [31, 2, 1, "", "add"], [31, 2, 1, "", "broadcast"], [31, 2, 1, "", "delete"]], "agentscope.parsers": [[32, 1, 1, "", "MarkdownCodeBlockParser"], [32, 1, 1, "", "MarkdownJsonDictParser"], [32, 1, 1, "", "MarkdownJsonObjectParser"], [32, 1, 1, "", "MultiTaggedContentParser"], [32, 1, 1, "", "ParserBase"], [32, 1, 1, "", "RegexTaggedContentParser"], [32, 1, 1, "", "TaggedContent"], [33, 0, 0, "-", "code_block_parser"], [34, 0, 0, "-", "json_object_parser"], [35, 0, 0, "-", "parser_base"], [36, 0, 0, "-", "regex_tagged_content_parser"], [37, 0, 0, "-", "tagged_content_parser"]], "agentscope.parsers.MarkdownCodeBlockParser": [[32, 2, 1, "", "__init__"], [32, 4, 1, "", "content_hint"], [32, 4, 1, "", "format_instruction"], [32, 4, 1, "", "name"], [32, 2, 1, "", "parse"], [32, 4, 1, "", "tag_begin"], [32, 4, 1, "", "tag_end"]], "agentscope.parsers.MarkdownJsonDictParser": [[32, 2, 1, "", "__init__"], [32, 4, 1, "", "content_hint"], [32, 3, 1, "", "format_instruction"], [32, 4, 1, "", "name"], [32, 2, 1, "", "parse"], [32, 4, 1, "", "required_keys"], [32, 4, 1, "", "tag_begin"], [32, 4, 1, "", "tag_end"]], "agentscope.parsers.MarkdownJsonObjectParser": [[32, 2, 1, "", "__init__"], [32, 4, 1, "", "content_hint"], [32, 3, 1, "", "format_instruction"], [32, 4, 1, "", "name"], [32, 2, 1, "", "parse"], [32, 4, 1, "", "tag_begin"], [32, 4, 1, "", "tag_end"]], "agentscope.parsers.MultiTaggedContentParser": [[32, 2, 1, "", "__init__"], [32, 4, 1, "", "format_instruction"], [32, 4, 1, "", "json_required_hint"], [32, 2, 1, "", "parse"]], "agentscope.parsers.ParserBase": [[32, 2, 1, "", "parse"]], "agentscope.parsers.RegexTaggedContentParser": [[32, 2, 1, "", "__init__"], [32, 3, 1, "", "format_instruction"], [32, 2, 1, "", "parse"]], "agentscope.parsers.TaggedContent": [[32, 2, 1, "", "__init__"], [32, 4, 1, "", "content_hint"], [32, 4, 1, "", "name"], [32, 4, 1, "", "parse_json"], [32, 4, 1, "", "tag_begin"], [32, 4, 1, "", "tag_end"]], "agentscope.parsers.code_block_parser": [[33, 1, 1, "", "MarkdownCodeBlockParser"]], "agentscope.parsers.code_block_parser.MarkdownCodeBlockParser": [[33, 2, 1, "", "__init__"], [33, 4, 1, "", "content_hint"], [33, 4, 1, "", "format_instruction"], [33, 4, 1, "", "name"], [33, 2, 1, "", "parse"], [33, 4, 1, "", "tag_begin"], [33, 4, 1, "", "tag_end"]], "agentscope.parsers.json_object_parser": [[34, 1, 1, "", "MarkdownJsonDictParser"], [34, 1, 1, "", "MarkdownJsonObjectParser"]], "agentscope.parsers.json_object_parser.MarkdownJsonDictParser": [[34, 2, 1, "", "__init__"], [34, 4, 1, "", "content_hint"], [34, 3, 1, "", "format_instruction"], [34, 4, 1, "", "name"], [34, 2, 1, "", "parse"], [34, 4, 1, "", "required_keys"], [34, 4, 1, "", "tag_begin"], [34, 4, 1, "", "tag_end"]], "agentscope.parsers.json_object_parser.MarkdownJsonObjectParser": [[34, 2, 1, "", "__init__"], [34, 4, 1, "", "content_hint"], [34, 3, 1, "", "format_instruction"], [34, 4, 1, "", "name"], [34, 2, 1, "", "parse"], [34, 4, 1, "", "tag_begin"], [34, 4, 1, "", "tag_end"]], "agentscope.parsers.parser_base": [[35, 1, 1, "", "DictFilterMixin"], [35, 1, 1, "", "ParserBase"]], "agentscope.parsers.parser_base.DictFilterMixin": [[35, 2, 1, "", "__init__"], [35, 2, 1, "", "to_content"], [35, 2, 1, "", "to_memory"], [35, 2, 1, "", "to_metadata"]], "agentscope.parsers.parser_base.ParserBase": [[35, 2, 1, "", "parse"]], "agentscope.parsers.regex_tagged_content_parser": [[36, 1, 1, "", "RegexTaggedContentParser"]], "agentscope.parsers.regex_tagged_content_parser.RegexTaggedContentParser": [[36, 2, 1, "", "__init__"], [36, 3, 1, "", "format_instruction"], [36, 2, 1, "", "parse"]], "agentscope.parsers.tagged_content_parser": [[37, 1, 1, "", "MultiTaggedContentParser"], [37, 1, 1, "", "TaggedContent"]], "agentscope.parsers.tagged_content_parser.MultiTaggedContentParser": [[37, 2, 1, "", "__init__"], [37, 4, 1, "", "format_instruction"], [37, 4, 1, "", "json_required_hint"], [37, 2, 1, "", "parse"]], "agentscope.parsers.tagged_content_parser.TaggedContent": [[37, 2, 1, "", "__init__"], [37, 4, 1, "", "content_hint"], [37, 4, 1, "", "name"], [37, 4, 1, "", "parse_json"], [37, 4, 1, "", "tag_begin"], [37, 4, 1, "", "tag_end"]], "agentscope.pipelines": [[38, 1, 1, "", "ForLoopPipeline"], [38, 1, 1, "", "IfElsePipeline"], [38, 1, 1, "", "PipelineBase"], [38, 1, 1, "", "SequentialPipeline"], [38, 1, 1, "", "SwitchPipeline"], [38, 1, 1, "", "WhileLoopPipeline"], [38, 6, 1, "", "forlooppipeline"], [39, 0, 0, "-", "functional"], [38, 6, 1, "", "ifelsepipeline"], [40, 0, 0, "-", "pipeline"], [38, 6, 1, "", "sequentialpipeline"], [38, 6, 1, "", "switchpipeline"], [38, 6, 1, "", "whilelooppipeline"]], "agentscope.pipelines.ForLoopPipeline": [[38, 2, 1, "", "__init__"]], "agentscope.pipelines.IfElsePipeline": [[38, 2, 1, "", "__init__"]], "agentscope.pipelines.PipelineBase": [[38, 2, 1, "", "__init__"]], "agentscope.pipelines.SequentialPipeline": [[38, 2, 1, "", "__init__"]], "agentscope.pipelines.SwitchPipeline": [[38, 2, 1, "", "__init__"]], "agentscope.pipelines.WhileLoopPipeline": [[38, 2, 1, "", "__init__"]], "agentscope.pipelines.functional": [[39, 6, 1, "", "forlooppipeline"], [39, 6, 1, "", "ifelsepipeline"], [39, 6, 1, "", "placeholder"], [39, 6, 1, "", "sequentialpipeline"], [39, 6, 1, "", "switchpipeline"], [39, 6, 1, "", "whilelooppipeline"]], "agentscope.pipelines.pipeline": [[40, 1, 1, "", "ForLoopPipeline"], [40, 1, 1, "", "IfElsePipeline"], [40, 1, 1, "", "PipelineBase"], [40, 1, 1, "", "SequentialPipeline"], [40, 1, 1, "", "SwitchPipeline"], [40, 1, 1, "", "WhileLoopPipeline"]], "agentscope.pipelines.pipeline.ForLoopPipeline": [[40, 2, 1, "", "__init__"]], "agentscope.pipelines.pipeline.IfElsePipeline": [[40, 2, 1, "", "__init__"]], "agentscope.pipelines.pipeline.PipelineBase": [[40, 2, 1, "", "__init__"]], "agentscope.pipelines.pipeline.SequentialPipeline": [[40, 2, 1, "", "__init__"]], "agentscope.pipelines.pipeline.SwitchPipeline": [[40, 2, 1, "", "__init__"]], "agentscope.pipelines.pipeline.WhileLoopPipeline": [[40, 2, 1, "", "__init__"]], "agentscope.prompt": [[41, 1, 1, "", "ChineseSystemPromptGenerator"], [41, 1, 1, "", "EnglishSystemPromptGenerator"], [41, 1, 1, "", "SystemPromptComparer"], [41, 1, 1, "", "SystemPromptGeneratorBase"], [41, 1, 1, "", "SystemPromptOptimizer"]], "agentscope.prompt.ChineseSystemPromptGenerator": [[41, 2, 1, "", "__init__"]], "agentscope.prompt.EnglishSystemPromptGenerator": [[41, 2, 1, "", "__init__"]], "agentscope.prompt.SystemPromptComparer": [[41, 2, 1, "", "__init__"], [41, 2, 1, "", "compare_in_dialog"], [41, 2, 1, "", "compare_with_queries"]], "agentscope.prompt.SystemPromptGeneratorBase": [[41, 2, 1, "", "__init__"], [41, 2, 1, "", "generate"]], "agentscope.prompt.SystemPromptOptimizer": [[41, 2, 1, "", "__init__"], [41, 2, 1, "", "generate_notes"]], "agentscope.rag": [[42, 1, 1, "", "Knowledge"], [42, 1, 1, "", "KnowledgeBank"], [43, 0, 0, "-", "knowledge"], [44, 0, 0, "-", "knowledge_bank"], [45, 0, 0, "-", "llama_index_knowledge"]], "agentscope.rag.Knowledge": [[42, 2, 1, "", "__init__"], [42, 2, 1, "", "post_processing"], [42, 2, 1, "", "retrieve"]], "agentscope.rag.KnowledgeBank": [[42, 2, 1, "", "__init__"], [42, 2, 1, "", "add_data_as_knowledge"], [42, 2, 1, "", "equip"], [42, 2, 1, "", "get_knowledge"]], "agentscope.rag.knowledge": [[43, 1, 1, "", "Knowledge"]], "agentscope.rag.knowledge.Knowledge": [[43, 2, 1, "", "__init__"], [43, 2, 1, "", "post_processing"], [43, 2, 1, "", "retrieve"]], "agentscope.rag.knowledge_bank": [[44, 1, 1, "", "KnowledgeBank"]], "agentscope.rag.knowledge_bank.KnowledgeBank": [[44, 2, 1, "", "__init__"], [44, 2, 1, "", "add_data_as_knowledge"], [44, 2, 1, "", "equip"], [44, 2, 1, "", "get_knowledge"]], "agentscope.rag.llama_index_knowledge": [[45, 1, 1, "", "LlamaIndexKnowledge"]], "agentscope.rag.llama_index_knowledge.LlamaIndexKnowledge": [[45, 2, 1, "", "__init__"], [45, 2, 1, "", "refresh_index"], [45, 2, 1, "", "retrieve"]], "agentscope.rpc": [[46, 1, 1, "", "ResponseStub"], [46, 1, 1, "", "RpcAgentClient"], [46, 1, 1, "", "RpcAgentServicer"], [46, 1, 1, "", "RpcAgentStub"], [46, 1, 1, "", "RpcMsg"], [46, 6, 1, "", "add_RpcAgentServicer_to_server"], [46, 6, 1, "", "call_in_thread"], [47, 0, 0, "-", "rpc_agent_client"], [48, 0, 0, "-", "rpc_agent_pb2"], [49, 0, 0, "-", "rpc_agent_pb2_grpc"]], "agentscope.rpc.ResponseStub": [[46, 2, 1, "", "__init__"], [46, 2, 1, "", "get_response"], [46, 2, 1, "", "set_response"]], "agentscope.rpc.RpcAgentClient": [[46, 2, 1, "", "__init__"], [46, 2, 1, "", "call_agent_func"], [46, 2, 1, "", "clone_agent"], [46, 2, 1, "", "create_agent"], [46, 2, 1, "", "delete_agent"], [46, 2, 1, "", "delete_all_agent"], [46, 2, 1, "", "download_file"], [46, 2, 1, "", "get_agent_list"], [46, 2, 1, "", "get_agent_memory"], [46, 2, 1, "", "get_server_info"], [46, 2, 1, "", "is_alive"], [46, 2, 1, "", "set_model_configs"], [46, 2, 1, "", "stop"], [46, 2, 1, "", "update_placeholder"]], "agentscope.rpc.RpcAgentServicer": [[46, 2, 1, "", "call_agent_func"], [46, 2, 1, "", "clone_agent"], [46, 2, 1, "", "create_agent"], [46, 2, 1, "", "delete_agent"], [46, 2, 1, "", "delete_all_agents"], [46, 2, 1, "", "download_file"], [46, 2, 1, "", "get_agent_list"], [46, 2, 1, "", "get_agent_memory"], [46, 2, 1, "", "get_server_info"], [46, 2, 1, "", "is_alive"], [46, 2, 1, "", "set_model_configs"], [46, 2, 1, "", "stop"], [46, 2, 1, "", "update_placeholder"]], "agentscope.rpc.RpcAgentStub": [[46, 2, 1, "", "__init__"]], "agentscope.rpc.RpcMsg": [[46, 4, 1, "", "DESCRIPTOR"]], "agentscope.rpc.rpc_agent_client": [[47, 1, 1, "", "ResponseStub"], [47, 1, 1, "", "RpcAgentClient"], [47, 6, 1, "", "call_in_thread"]], "agentscope.rpc.rpc_agent_client.ResponseStub": [[47, 2, 1, "", "__init__"], [47, 2, 1, "", "get_response"], [47, 2, 1, "", "set_response"]], "agentscope.rpc.rpc_agent_client.RpcAgentClient": [[47, 2, 1, "", "__init__"], [47, 2, 1, "", "call_agent_func"], [47, 2, 1, "", "clone_agent"], [47, 2, 1, "", "create_agent"], [47, 2, 1, "", "delete_agent"], [47, 2, 1, "", "delete_all_agent"], [47, 2, 1, "", "download_file"], [47, 2, 1, "", "get_agent_list"], [47, 2, 1, "", "get_agent_memory"], [47, 2, 1, "", "get_server_info"], [47, 2, 1, "", "is_alive"], [47, 2, 1, "", "set_model_configs"], [47, 2, 1, "", "stop"], [47, 2, 1, "", "update_placeholder"]], "agentscope.rpc.rpc_agent_pb2_grpc": [[49, 1, 1, "", "RpcAgent"], [49, 1, 1, "", "RpcAgentServicer"], [49, 1, 1, "", "RpcAgentStub"], [49, 6, 1, "", "add_RpcAgentServicer_to_server"]], "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgent": [[49, 2, 1, "", "call_agent_func"], [49, 2, 1, "", "clone_agent"], [49, 2, 1, "", "create_agent"], [49, 2, 1, "", "delete_agent"], [49, 2, 1, "", "delete_all_agents"], [49, 2, 1, "", "download_file"], [49, 2, 1, "", "get_agent_list"], [49, 2, 1, "", "get_agent_memory"], [49, 2, 1, "", "get_server_info"], [49, 2, 1, "", "is_alive"], [49, 2, 1, "", "set_model_configs"], [49, 2, 1, "", "stop"], [49, 2, 1, "", "update_placeholder"]], "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgentServicer": [[49, 2, 1, "", "call_agent_func"], [49, 2, 1, "", "clone_agent"], [49, 2, 1, "", "create_agent"], [49, 2, 1, "", "delete_agent"], [49, 2, 1, "", "delete_all_agents"], [49, 2, 1, "", "download_file"], [49, 2, 1, "", "get_agent_list"], [49, 2, 1, "", "get_agent_memory"], [49, 2, 1, "", "get_server_info"], [49, 2, 1, "", "is_alive"], [49, 2, 1, "", "set_model_configs"], [49, 2, 1, "", "stop"], [49, 2, 1, "", "update_placeholder"]], "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgentStub": [[49, 2, 1, "", "__init__"]], "agentscope.serialize": [[50, 6, 1, "", "deserialize"], [50, 6, 1, "", "is_serializable"], [50, 6, 1, "", "serialize"]], "agentscope.server": [[51, 1, 1, "", "AgentServerServicer"], [51, 1, 1, "", "RpcAgentServerLauncher"], [51, 6, 1, "", "as_server"], [52, 0, 0, "-", "launcher"], [53, 0, 0, "-", "servicer"]], "agentscope.server.AgentServerServicer": [[51, 2, 1, "", "__init__"], [51, 2, 1, "", "agent_exists"], [51, 2, 1, "", "call_agent_func"], [51, 2, 1, "", "clone_agent"], [51, 2, 1, "", "create_agent"], [51, 2, 1, "", "delete_agent"], [51, 2, 1, "", "delete_all_agents"], [51, 2, 1, "", "download_file"], [51, 2, 1, "", "get_agent"], [51, 2, 1, "", "get_agent_list"], [51, 2, 1, "", "get_agent_memory"], [51, 2, 1, "", "get_server_info"], [51, 2, 1, "", "get_task_id"], [51, 2, 1, "", "is_alive"], [51, 2, 1, "", "set_model_configs"], [51, 2, 1, "", "stop"], [51, 2, 1, "", "update_placeholder"]], "agentscope.server.RpcAgentServerLauncher": [[51, 2, 1, "", "__init__"], [51, 2, 1, "", "generate_server_id"], [51, 2, 1, "", "launch"], [51, 2, 1, "", "shutdown"], [51, 2, 1, "", "wait_until_terminate"]], "agentscope.server.launcher": [[52, 1, 1, "", "RpcAgentServerLauncher"], [52, 6, 1, "", "as_server"], [52, 6, 1, "", "load_agents_from_dir"], [52, 6, 1, "", "load_agents_from_file"]], "agentscope.server.launcher.RpcAgentServerLauncher": [[52, 2, 1, "", "__init__"], [52, 2, 1, "", "generate_server_id"], [52, 2, 1, "", "launch"], [52, 2, 1, "", "shutdown"], [52, 2, 1, "", "wait_until_terminate"]], "agentscope.server.servicer": [[53, 1, 1, "", "AgentServerServicer"]], "agentscope.server.servicer.AgentServerServicer": [[53, 2, 1, "", "__init__"], [53, 2, 1, "", "agent_exists"], [53, 2, 1, "", "call_agent_func"], [53, 2, 1, "", "clone_agent"], [53, 2, 1, "", "create_agent"], [53, 2, 1, "", "delete_agent"], [53, 2, 1, "", "delete_all_agents"], [53, 2, 1, "", "download_file"], [53, 2, 1, "", "get_agent"], [53, 2, 1, "", "get_agent_list"], [53, 2, 1, "", "get_agent_memory"], [53, 2, 1, "", "get_server_info"], [53, 2, 1, "", "get_task_id"], [53, 2, 1, "", "is_alive"], [53, 2, 1, "", "set_model_configs"], [53, 2, 1, "", "stop"], [53, 2, 1, "", "update_placeholder"]], "agentscope.service": [[54, 1, 1, "", "NoteBookExecutor"], [54, 1, 1, "", "ServiceExecStatus"], [54, 1, 1, "", "ServiceFactory"], [54, 1, 1, "", "ServiceResponse"], [54, 1, 1, "", "ServiceToolkit"], [54, 1, 1, "", "WebBrowser"], [54, 1, 1, "", "WebElementInfo"], [54, 6, 1, "", "arxiv_search"], [54, 6, 1, "", "bing_search"], [55, 0, 0, "-", "browser"], [54, 6, 1, "", "cos_sim"], [54, 6, 1, "", "create_directory"], [54, 6, 1, "", "create_file"], [54, 6, 1, "", "dashscope_image_to_text"], [54, 6, 1, "", "dashscope_text_to_audio"], [54, 6, 1, "", "dashscope_text_to_image"], [54, 6, 1, "", "dblp_search_authors"], [54, 6, 1, "", "dblp_search_publications"], [54, 6, 1, "", "dblp_search_venues"], [54, 6, 1, "", "delete_directory"], [54, 6, 1, "", "delete_file"], [54, 6, 1, "", "digest_webpage"], [54, 6, 1, "", "download_from_url"], [57, 0, 0, "-", "execute_code"], [54, 6, 1, "", "execute_python_code"], [54, 6, 1, "", "execute_shell_command"], [61, 0, 0, "-", "file"], [54, 6, 1, "", "get_current_directory"], [54, 6, 1, "", "get_help"], [54, 6, 1, "", "google_search"], [54, 6, 1, "", "list_directory_content"], [54, 6, 1, "", "load_web"], [54, 6, 1, "", "move_directory"], [54, 6, 1, "", "move_file"], [65, 0, 0, "-", "multi_modality"], [54, 6, 1, "", "openai_audio_to_text"], [54, 6, 1, "", "openai_create_image_variation"], [54, 6, 1, "", "openai_edit_image"], [54, 6, 1, "", "openai_image_to_text"], [54, 6, 1, "", "openai_text_to_audio"], [54, 6, 1, "", "openai_text_to_image"], [54, 6, 1, "", "parse_html_to_text"], [54, 6, 1, "", "query_mongodb"], [54, 6, 1, "", "query_mysql"], [54, 6, 1, "", "query_sqlite"], [54, 6, 1, "", "read_json_file"], [54, 6, 1, "", "read_text_file"], [68, 0, 0, "-", "retrieval"], [54, 6, 1, "", "retrieve_from_list"], [71, 0, 0, "-", "service_response"], [72, 0, 0, "-", "service_status"], [73, 0, 0, "-", "service_toolkit"], [74, 0, 0, "-", "sql_query"], [54, 6, 1, "", "summarization"], [78, 0, 0, "-", "text_processing"], [54, 6, 1, "", "tripadvisor_search"], [54, 6, 1, "", "tripadvisor_search_location_details"], [54, 6, 1, "", "tripadvisor_search_location_photos"], [80, 0, 0, "-", "web"], [54, 6, 1, "", "wikipedia_search"], [54, 6, 1, "", "wikipedia_search_categories"], [54, 6, 1, "", "write_json_file"], [54, 6, 1, "", "write_text_file"]], "agentscope.service.NoteBookExecutor": [[54, 2, 1, "", "__init__"], [54, 2, 1, "", "async_run_code_on_notebook"], [54, 3, 1, "", "cells_length"], [54, 2, 1, "", "reset_notebook"], [54, 2, 1, "", "run_code_on_notebook"]], "agentscope.service.ServiceExecStatus": [[54, 4, 1, "", "ERROR"], [54, 4, 1, "", "SUCCESS"]], "agentscope.service.ServiceFactory": [[54, 2, 1, "", "get"]], "agentscope.service.ServiceResponse": [[54, 2, 1, "", "__init__"]], "agentscope.service.ServiceToolkit": [[54, 2, 1, "", "__init__"], [54, 2, 1, "", "add"], [54, 2, 1, "", "get"], [54, 3, 1, "", "json_schemas"], [54, 2, 1, "", "parse_and_call_func"], [54, 4, 1, "", "service_funcs"], [54, 3, 1, "", "tools_calling_format"], [54, 3, 1, "", "tools_instruction"]], "agentscope.service.WebBrowser": [[54, 2, 1, "", "__init__"], [54, 2, 1, "", "action_click"], [54, 2, 1, "", "action_press_key"], [54, 2, 1, "", "action_scroll_down"], [54, 2, 1, "", "action_scroll_up"], [54, 2, 1, "", "action_type"], [54, 2, 1, "", "action_visit_url"], [54, 2, 1, "", "close"], [54, 2, 1, "", "get_action_functions"], [54, 3, 1, "", "page_html"], [54, 3, 1, "", "page_markdown"], [54, 3, 1, "", "page_screenshot"], [54, 3, 1, "", "page_title"], [54, 2, 1, "", "remove_interactive_marks"], [54, 2, 1, "", "set_interactive_marks"], [54, 3, 1, "", "url"]], "agentscope.service.WebElementInfo": [[54, 4, 1, "", "aria_label"], [54, 4, 1, "", "height"], [54, 4, 1, "", "html"], [54, 4, 1, "", "inner_text"], [54, 4, 1, "", "is_clickable"], [54, 4, 1, "", "meta_data"], [54, 4, 1, "", "model_computed_fields"], [54, 4, 1, "", "model_config"], [54, 4, 1, "", "model_fields"], [54, 4, 1, "", "node_name"], [54, 4, 1, "", "node_value"], [54, 4, 1, "", "origin_x"], [54, 4, 1, "", "origin_y"], [54, 4, 1, "", "tag_name"], [54, 4, 1, "", "type"], [54, 4, 1, "", "width"]], "agentscope.service.browser": [[56, 0, 0, "-", "web_browser"]], "agentscope.service.browser.web_browser": [[56, 1, 1, "", "WebBrowser"], [56, 1, 1, "", "WebElementInfo"]], "agentscope.service.browser.web_browser.WebBrowser": [[56, 2, 1, "", "__init__"], [56, 2, 1, "", "action_click"], [56, 2, 1, "", "action_press_key"], [56, 2, 1, "", "action_scroll_down"], [56, 2, 1, "", "action_scroll_up"], [56, 2, 1, "", "action_type"], [56, 2, 1, "", "action_visit_url"], [56, 2, 1, "", "close"], [56, 2, 1, "", "get_action_functions"], [56, 3, 1, "", "page_html"], [56, 3, 1, "", "page_markdown"], [56, 3, 1, "", "page_screenshot"], [56, 3, 1, "", "page_title"], [56, 2, 1, "", "remove_interactive_marks"], [56, 2, 1, "", "set_interactive_marks"], [56, 3, 1, "", "url"]], "agentscope.service.browser.web_browser.WebElementInfo": [[56, 4, 1, "", "aria_label"], [56, 4, 1, "", "height"], [56, 4, 1, "", "html"], [56, 4, 1, "", "inner_text"], [56, 4, 1, "", "is_clickable"], [56, 4, 1, "", "meta_data"], [56, 4, 1, "", "model_computed_fields"], [56, 4, 1, "", "model_config"], [56, 4, 1, "", "model_fields"], [56, 4, 1, "", "node_name"], [56, 4, 1, "", "node_value"], [56, 4, 1, "", "origin_x"], [56, 4, 1, "", "origin_y"], [56, 4, 1, "", "tag_name"], [56, 4, 1, "", "type"], [56, 4, 1, "", "width"]], "agentscope.service.execute_code": [[58, 0, 0, "-", "exec_notebook"], [59, 0, 0, "-", "exec_python"], [60, 0, 0, "-", "exec_shell"]], "agentscope.service.execute_code.exec_notebook": [[58, 1, 1, "", "NoteBookExecutor"]], "agentscope.service.execute_code.exec_notebook.NoteBookExecutor": [[58, 2, 1, "", "__init__"], [58, 2, 1, "", "async_run_code_on_notebook"], [58, 3, 1, "", "cells_length"], [58, 2, 1, "", "reset_notebook"], [58, 2, 1, "", "run_code_on_notebook"]], "agentscope.service.execute_code.exec_python": [[59, 6, 1, "", "execute_python_code"], [59, 6, 1, "", "sys_python_guard"]], "agentscope.service.execute_code.exec_shell": [[60, 6, 1, "", "execute_shell_command"]], "agentscope.service.file": [[62, 0, 0, "-", "common"], [63, 0, 0, "-", "json"], [64, 0, 0, "-", "text"]], "agentscope.service.file.common": [[62, 6, 1, "", "create_directory"], [62, 6, 1, "", "create_file"], [62, 6, 1, "", "delete_directory"], [62, 6, 1, "", "delete_file"], [62, 6, 1, "", "get_current_directory"], [62, 6, 1, "", "list_directory_content"], [62, 6, 1, "", "move_directory"], [62, 6, 1, "", "move_file"]], "agentscope.service.file.json": [[63, 6, 1, "", "read_json_file"], [63, 6, 1, "", "write_json_file"]], "agentscope.service.file.text": [[64, 6, 1, "", "read_text_file"], [64, 6, 1, "", "write_text_file"]], "agentscope.service.multi_modality": [[66, 0, 0, "-", "dashscope_services"], [67, 0, 0, "-", "openai_services"]], "agentscope.service.multi_modality.dashscope_services": [[66, 6, 1, "", "dashscope_image_to_text"], [66, 6, 1, "", "dashscope_text_to_audio"], [66, 6, 1, "", "dashscope_text_to_image"]], "agentscope.service.multi_modality.openai_services": [[67, 6, 1, "", "openai_audio_to_text"], [67, 6, 1, "", "openai_create_image_variation"], [67, 6, 1, "", "openai_edit_image"], [67, 6, 1, "", "openai_image_to_text"], [67, 6, 1, "", "openai_text_to_audio"], [67, 6, 1, "", "openai_text_to_image"]], "agentscope.service.retrieval": [[69, 0, 0, "-", "retrieval_from_list"], [70, 0, 0, "-", "similarity"]], "agentscope.service.retrieval.retrieval_from_list": [[69, 6, 1, "", "retrieve_from_list"]], "agentscope.service.retrieval.similarity": [[70, 6, 1, "", "cos_sim"]], "agentscope.service.service_response": [[71, 1, 1, "", "ServiceResponse"]], "agentscope.service.service_response.ServiceResponse": [[71, 2, 1, "", "__init__"]], "agentscope.service.service_status": [[72, 1, 1, "", "ServiceExecStatus"]], "agentscope.service.service_status.ServiceExecStatus": [[72, 4, 1, "", "ERROR"], [72, 4, 1, "", "SUCCESS"]], "agentscope.service.service_toolkit": [[73, 1, 1, "", "ServiceFactory"], [73, 1, 1, "", "ServiceFunction"], [73, 1, 1, "", "ServiceToolkit"]], "agentscope.service.service_toolkit.ServiceFactory": [[73, 2, 1, "", "get"]], "agentscope.service.service_toolkit.ServiceFunction": [[73, 2, 1, "", "__init__"], [73, 4, 1, "", "json_schema"], [73, 4, 1, "", "name"], [73, 4, 1, "", "original_func"], [73, 4, 1, "", "processed_func"], [73, 4, 1, "", "require_args"]], "agentscope.service.service_toolkit.ServiceToolkit": [[73, 2, 1, "", "__init__"], [73, 2, 1, "", "add"], [73, 2, 1, "", "get"], [73, 3, 1, "", "json_schemas"], [73, 2, 1, "", "parse_and_call_func"], [73, 4, 1, "", "service_funcs"], [73, 3, 1, "", "tools_calling_format"], [73, 3, 1, "", "tools_instruction"]], "agentscope.service.sql_query": [[75, 0, 0, "-", "mongodb"], [76, 0, 0, "-", "mysql"], [77, 0, 0, "-", "sqlite"]], "agentscope.service.sql_query.mongodb": [[75, 6, 1, "", "query_mongodb"]], "agentscope.service.sql_query.mysql": [[76, 6, 1, "", "query_mysql"]], "agentscope.service.sql_query.sqlite": [[77, 6, 1, "", "query_sqlite"]], "agentscope.service.text_processing": [[79, 0, 0, "-", "summarization"]], "agentscope.service.text_processing.summarization": [[79, 6, 1, "", "summarization"]], "agentscope.service.web": [[81, 0, 0, "-", "arxiv"], [82, 0, 0, "-", "dblp"], [83, 0, 0, "-", "download"], [84, 0, 0, "-", "search"], [85, 0, 0, "-", "tripadvisor"], [86, 0, 0, "-", "web_digest"], [87, 0, 0, "-", "wikipedia"]], "agentscope.service.web.arxiv": [[81, 6, 1, "", "arxiv_search"]], "agentscope.service.web.dblp": [[82, 6, 1, "", "dblp_search_authors"], [82, 6, 1, "", "dblp_search_publications"], [82, 6, 1, "", "dblp_search_venues"]], "agentscope.service.web.download": [[83, 6, 1, "", "download_from_url"]], "agentscope.service.web.search": [[84, 6, 1, "", "bing_search"], [84, 6, 1, "", "google_search"]], "agentscope.service.web.tripadvisor": [[85, 6, 1, "", "tripadvisor_search"], [85, 6, 1, "", "tripadvisor_search_location_details"], [85, 6, 1, "", "tripadvisor_search_location_photos"]], "agentscope.service.web.web_digest": [[86, 6, 1, "", "digest_webpage"], [86, 6, 1, "", "is_valid_url"], [86, 6, 1, "", "load_web"], [86, 6, 1, "", "parse_html_to_text"]], "agentscope.service.web.wikipedia": [[87, 6, 1, "", "wikipedia_search"], [87, 6, 1, "", "wikipedia_search_categories"]], "agentscope.strategy": [[88, 1, 1, "", "MixtureOfAgents"], [89, 0, 0, "-", "mixture_of_agent"]], "agentscope.strategy.MixtureOfAgents": [[88, 2, 1, "", "__init__"]], "agentscope.strategy.mixture_of_agent": [[89, 1, 1, "", "MixtureOfAgents"]], "agentscope.strategy.mixture_of_agent.MixtureOfAgents": [[89, 2, 1, "", "__init__"]], "agentscope.studio": [[90, 6, 1, "", "init"], [91, 0, 0, "-", "utils"]], "agentscope.studio.utils": [[91, 6, 1, "", "decode_jwt"], [91, 6, 1, "", "generate_jwt"]], "agentscope.utils": [[93, 0, 0, "-", "common"], [94, 0, 0, "-", "token_utils"]], "agentscope.utils.common": [[93, 1, 1, "", "ImportErrorReporter"], [93, 6, 1, "", "create_tempdir"], [93, 6, 1, "", "timer"], [93, 6, 1, "", "to_openai_dict"]], "agentscope.utils.common.ImportErrorReporter": [[93, 2, 1, "", "__init__"]], "agentscope.utils.token_utils": [[94, 6, 1, "", "count_openai_token"], [94, 6, 1, "", "get_openai_max_length"], [94, 6, 1, "", "num_tokens_from_content"]], "agentscope.web": [[96, 0, 0, "-", "gradio"], [100, 0, 0, "-", "workstation"]], "agentscope.web.gradio": [[97, 0, 0, "-", "constants"], [98, 0, 0, "-", "studio"], [99, 0, 0, "-", "utils"]], "agentscope.web.gradio.studio": [[98, 6, 1, "", "fn_choice"], [98, 6, 1, "", "get_chat"], [98, 6, 1, "", "import_function_from_path"], [98, 6, 1, "", "init_uid_list"], [98, 6, 1, "", "reset_glb_var"], [98, 6, 1, "", "run_app"], [98, 6, 1, "", "send_audio"], [98, 6, 1, "", "send_image"], [98, 6, 1, "", "send_message"]], "agentscope.web.gradio.utils": [[99, 5, 1, "", "ResetException"], [99, 6, 1, "", "audio2text"], [99, 6, 1, "", "check_uuid"], [99, 6, 1, "", "cycle_dots"], [99, 6, 1, "", "generate_image_from_name"], [99, 6, 1, "", "get_chat_msg"], [99, 6, 1, "", "get_player_input"], [99, 6, 1, "", "get_reset_msg"], [99, 6, 1, "", "init_uid_queues"], [99, 6, 1, "", "send_msg"], [99, 6, 1, "", "send_player_input"], [99, 6, 1, "", "send_reset_msg"], [99, 6, 1, "", "user_input"]], "agentscope.web.workstation": [[101, 0, 0, "-", "workflow"], [102, 0, 0, "-", "workflow_dag"], [103, 0, 0, "-", "workflow_node"], [104, 0, 0, "-", "workflow_utils"]], "agentscope.web.workstation.workflow": [[101, 6, 1, "", "compile_workflow"], [101, 6, 1, "", "load_config"], [101, 6, 1, "", "main"], [101, 6, 1, "", "start_workflow"]], "agentscope.web.workstation.workflow_dag": [[102, 1, 1, "", "ASDiGraph"], [102, 6, 1, "", "build_dag"], [102, 6, 1, "", "remove_duplicates_from_end"], [102, 6, 1, "", "sanitize_node_data"]], "agentscope.web.workstation.workflow_dag.ASDiGraph": [[102, 2, 1, "", "__init__"], [102, 2, 1, "", "add_as_node"], [102, 2, 1, "", "compile"], [102, 2, 1, "", "exec_node"], [102, 4, 1, "", "nodes_not_in_graph"], [102, 2, 1, "", "run"]], "agentscope.web.workstation.workflow_node": [[103, 1, 1, "", "BingSearchServiceNode"], [103, 1, 1, "", "CopyNode"], [103, 1, 1, "", "DialogAgentNode"], [103, 1, 1, "", "DictDialogAgentNode"], [103, 1, 1, "", "ForLoopPipelineNode"], [103, 1, 1, "", "GoogleSearchServiceNode"], [103, 1, 1, "", "IfElsePipelineNode"], [103, 1, 1, "", "ModelNode"], [103, 1, 1, "", "MsgHubNode"], [103, 1, 1, "", "MsgNode"], [103, 1, 1, "", "PlaceHolderNode"], [103, 1, 1, "", "PythonServiceNode"], [103, 1, 1, "", "ReActAgentNode"], [103, 1, 1, "", "ReadTextServiceNode"], [103, 1, 1, "", "SequentialPipelineNode"], [103, 1, 1, "", "SwitchPipelineNode"], [103, 1, 1, "", "UserAgentNode"], [103, 1, 1, "", "WhileLoopPipelineNode"], [103, 1, 1, "", "WorkflowNode"], [103, 1, 1, "", "WorkflowNodeType"], [103, 1, 1, "", "WriteTextServiceNode"], [103, 6, 1, "", "get_all_agents"]], "agentscope.web.workstation.workflow_node.BingSearchServiceNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_node.CopyNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_node.DialogAgentNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_node.DictDialogAgentNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_node.ForLoopPipelineNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_node.GoogleSearchServiceNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_node.IfElsePipelineNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_node.ModelNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_node.MsgHubNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_node.MsgNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_node.PlaceHolderNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_node.PythonServiceNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_node.ReActAgentNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_node.ReadTextServiceNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_node.SequentialPipelineNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_node.SwitchPipelineNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_node.UserAgentNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_node.WhileLoopPipelineNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_node.WorkflowNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_node.WorkflowNodeType": [[103, 4, 1, "", "AGENT"], [103, 4, 1, "", "COPY"], [103, 4, 1, "", "MESSAGE"], [103, 4, 1, "", "MODEL"], [103, 4, 1, "", "PIPELINE"], [103, 4, 1, "", "SERVICE"]], "agentscope.web.workstation.workflow_node.WriteTextServiceNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_utils": [[104, 6, 1, "", "deps_converter"], [104, 6, 1, "", "dict_converter"], [104, 6, 1, "", "is_callable_expression"], [104, 6, 1, "", "kwarg_converter"]]}, "objnames": {"0": ["py", "module", "Python \u6a21\u5757"], "1": ["py", "class", "Python \u7c7b"], "2": ["py", "method", "Python \u65b9\u6cd5"], "3": ["py", "property", "Python \u6258\u7ba1\u5c5e\u6027"], "4": ["py", "attribute", "Python \u5c5e\u6027"], "5": ["py", "exception", "Python \u5f02\u5e38"], "6": ["py", "function", "Python \u51fd\u6570"]}, "objtypes": {"0": "py:module", "1": "py:class", "2": "py:method", "3": "py:property", "4": "py:attribute", "5": "py:exception", "6": "py:function"}, "terms": {"0001": [54, 82], "0002": [54, 82], "001": [20, 22, 114], "0017594862": [20, 25], "002": [20, 26, 109, 114], "0023064255": [20, 26], "0028842222": [20, 26], "005519774276763201": [20, 30], "008599704": [20, 25], "009327292": [20, 26], "010071029": [20, 25], "014949671924114227": [20, 30], "019060475751757622": [20, 30], "025878139": [20, 25], "02675454691052437": [20, 30], "03": [20, 22, 119], "034d": [20, 21], "03629": [1, 7], "04": 119, "04692972": [20, 25], "04t19": [20, 25], "04t20": [54, 85], "05": [54, 82, 120], "05007221": [20, 25], "06": 41, "07": 120, "08": [20, 25, 120], "09": [54, 85], "0x16e516fb0": 124, "10": [1, 7, 41, 54, 73, 82, 84, 85, 87, 117, 120], "100": [54, 75, 76, 124], "1000": [41, 54, 87], "1009": [20, 29], "102": [20, 21], "1024": [20, 30, 54, 66, 120], "1024x1024": [54, 67, 114], "1024x1792": [54, 67], "104527_7def6u": 120, "105441414": [20, 25], "1080": [54, 56], "11": [54, 85], "1109": [54, 82], "111": [54, 85], "11186623": [20, 21], "113": [20, 29], "11434": [20, 25], "117": 120, "12": [20, 25, 26, 54, 85], "120": [54, 83], "12001": 121, "12002": 121, "123": [20, 25, 26, 114], "12345": [51, 52], "123456": [54, 85], "1247": [20, 21], "127": [20, 25, 90, 111, 120, 121, 122, 124], "1277": [20, 21], "1280": [54, 56, 66], "129": 120, "12958129": [20, 25], "12t14": [20, 25], "13": [20, 25, 41], "14": [54, 85], "15": [41, 120], "150": [54, 85], "1536": [20, 26], "1589478378": [20, 26], "1677652288": [20, 26], "17": 41, "1703487403": [20, 30], "172": 120, "1792x1024": [54, 67], "18": 123, "188": [54, 85], "1920": [54, 85], "1_code": [54, 67], "20": 120, "200": [20, 21], "2016": [54, 85], "2021": [54, 82], "2023": [20, 25, 54, 82], "2024": [20, 22, 41, 119, 120], "203": [1, 4], "2048": [20, 27], "20th": [54, 85], "21": [20, 22, 26, 120], "211862": [54, 82], "215321638": [54, 85], "2154458": [20, 25], "217": [20, 30], "22": [20, 25, 54, 85, 119], "2210": [1, 7], "23": 41, "233488": [54, 87], "24": 41, "24727": 120, "248": [20, 30], "25": [20, 21, 41], "250": [54, 85], "25395815": [54, 85], "2560": [54, 85], "256x256": [54, 67], "26": [20, 25], "27": [41, 120], "28": 41, "284z": [54, 85], "290": [20, 25], "294014": [54, 85], "298": [20, 25], "298087": [54, 85], "2ee7": [20, 21], "30": [20, 27, 41, 54, 56, 82], "300": [46, 47, 54, 58, 59], "301": 120, "31": [20, 30, 120], "32": 41, "3233": [54, 82], "325953000": [20, 25], "3306": [54, 76], "34": [41, 120], "342": [54, 85], "35": [41, 120], "37": 123, "37db858ae738": [20, 21], "38": 41, "383809000": [20, 25], "40": [41, 54, 85], "401": 91, "403": 91, "4096": 124, "413": [54, 85], "416799z": [20, 25], "42": 41, "4217": [54, 85], "43": [20, 25, 120], "43f7": [20, 21], "45": [20, 25, 41, 120], "455": [54, 82], "459b": [20, 21], "46342": [54, 85], "466": [54, 82], "4709213000": [20, 25], "4799921000": [20, 25], "48000": [54, 66], "499127z": [20, 25], "4o": [20, 26, 54, 67, 119, 120], "50": [41, 54, 85], "5000": [90, 111, 121, 122], "5025959": [20, 25], "5043500667": [20, 25], "512x512": [54, 67, 114], "5191566416": [20, 25], "53": [54, 85], "54": 120, "550": [54, 85], "574818": [54, 85], "5785971": [20, 29], "59": [54, 85], "5m": [20, 25, 114], "60": 41, "60s": [54, 56], "62": [54, 85], "6212": [20, 21], "6300": [54, 82], "639": [54, 67], "67911196": [54, 87], "7108fa70op6eqf": [20, 21], "720": [54, 66], "7200": [1, 2, 8, 51, 52, 53], "77": [20, 21, 120], "7b": 124, "7def6u": 120, "7e346eb5rvirbw": [20, 21], "7fde1f5atqsaln": [20, 21], "8000": 124, "808c": [20, 21], "81": [20, 21], "8192": [1, 2, 8, 51, 52, 53], "82374": [54, 85], "8239375684858666781": [20, 30], "8450357913970947": [20, 21], "889": 120, "890": 120, "891": 120, "891b": [20, 21], "896": [20, 29], "8b": 114, "93e0": [20, 21], "9477984": [54, 82], "957d": [20, 21], "9595": [20, 21], "9667": [20, 21], "996523eb": [20, 21], "9dac": [20, 21], "__": [38, 39, 40], "__call__": [1, 5, 20, 22, 24, 112, 113, 114, 121], "__delattr__": 118, "__fields__": [54, 56], "__getattr__": [117, 118], "__getitem__": 117, "__init__": [0, 1, 2, 3, 4, 6, 7, 8, 9, 11, 13, 14, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 40, 41, 42, 43, 44, 45, 46, 47, 49, 51, 52, 53, 54, 55, 56, 57, 58, 71, 73, 88, 89, 92, 93, 100, 102, 103, 112, 114, 117, 118, 123, 124], "__main__": [54, 56, 124], "__module__": [17, 18], "__name__": [17, 18, 54, 56, 112, 117, 124], "__serialized_attr": [17, 18], "__setattr__": [117, 118], "__setitem__": 117, "__str__": 121, "__type": 118, "_agentmeta": [1, 2, 8, 46, 47], "_code": [32, 33], "_data_to_doc": 124, "_data_to_index": 124, "_default_meta_prompt_templ": 41, "_default_system_prompt": [54, 79], "_default_token_limit_prompt": [54, 79], "_docs_to_nod": 124, "_get_timestamp": 118, "_load_index": 124, "_messag": 46, "_monitor": 120, "_parse_respons": 114, "_print_tabl": 120, "_require_auth": 91, "_upb": 46, "_welco": [54, 67], "a0dc436c": [20, 21], "a2c4g": [20, 21], "a75a1b22": [20, 21], "a_json_dictionari": 115, "aaai": [54, 82], "aaaif": [54, 82], "aac": [54, 67], "abc": [1, 5, 14, 15, 20, 21, 22, 23, 25, 26, 27, 30, 32, 35, 41, 42, 43, 103, 115, 118], "abdullah": [54, 82], "abil": [41, 110], "abort": 91, "about": [1, 4, 20, 21, 22, 41, 54, 56, 85, 102, 109], "abov": [20, 21, 22, 41], "abs": [1, 7, 54, 81], "abstract": [1, 5, 14, 15, 32, 35, 42, 43, 103], "abstractmethod": [113, 115], "abtest": 41, "ac88": [20, 21], "academ": 41, "access": [41, 91], "access_token": 91, "accident": [54, 76, 77], "accommod": [1, 2, 8, 41, 42, 43, 44, 51, 52, 53], "accompani": 41, "accord": [20, 28, 32, 36, 41], "account": [54, 76], "accur": [41, 88, 89], "accuraci": [41, 54, 67, 88, 89], "achiev": 41, "acquir": 41, "acquisit": 41, "acronym": [54, 82], "across": 41, "act": [1, 7, 20, 28, 39, 54, 84, 103, 110, 112], "action": [1, 2, 8, 41, 54, 56, 58, 99, 102, 110], "action_": 125, "action_click": [0, 54, 55, 56, 125], "action_press_key": [0, 54, 55, 56], "action_scroll_down": [0, 54, 55, 56], "action_scroll_up": [0, 54, 55, 56], "action_typ": [0, 54, 55, 56], "action_visit_url": [0, 54, 55, 56, 125], "activ": [0, 12, 41, 108, 120], "actor": [105, 107, 129], "actual": [0, 1, 7, 31, 38, 39, 40, 41], "acycl": 102, "ada": [20, 26, 109, 114], "adapt": 41, "add": [0, 1, 6, 14, 15, 16, 31, 41, 54, 58, 67, 73, 102, 110, 112, 113, 115, 116, 117, 118, 123, 127], "add_argu": 124, "add_as_nod": [100, 102], "add_data_as_knowledg": [0, 42, 44, 124], "add_rpcagentservicer_to_serv": [0, 46, 49], "added": [1, 3, 4, 6, 9, 14, 15, 16, 20, 21, 41, 102, 112, 118], "added_not": 123, "adding": [14, 15, 16, 41, 102], "addit": [1, 9, 17, 18, 19, 41, 54, 59, 79, 84, 91, 112, 117], "address": [17, 19, 41, 54, 75, 76, 85], "address_obj": [54, 85], "address_str": [54, 85], "aden": [54, 85], "adept": [41, 123], "adher": [41, 88, 89], "adjust": [41, 54, 87], "adorn": 41, "adult": 41, "advanc": [20, 21, 32, 36, 41, 42, 44, 45], "advantech": [54, 82], "adversari": [1, 2, 8], "advic": 41, "affect": [54, 67], "affili": [54, 82], "after": [1, 2, 24, 25, 41, 51, 52, 53, 54, 56, 79, 110], "again": [41, 54, 87], "age": 41, "agent": [0, 11, 17, 19, 20, 28, 31, 35, 38, 39, 40, 41, 42, 44, 46, 47, 49, 51, 52, 53, 54, 56, 73, 79, 84, 99, 100, 103, 105, 106, 108, 109, 111, 113, 114, 115, 117, 118, 123, 124, 126, 129], "agent1": [0, 31, 110, 113], "agent1_info": 121, "agent2": [0, 31, 110, 113], "agent2_info": 121, "agent3": [0, 31, 110, 113], "agent4": [110, 113], "agent5": 113, "agent_class": [1, 2, 8], "agent_class_nam": [1, 2], "agent_config": [0, 1, 8, 46, 47, 110], "agent_dir": [51, 52], "agent_exist": [0, 51, 53], "agent_fil": 52, "agent_id": [0, 1, 2, 8, 46, 47, 49, 51, 53, 121], "agent_list": 121, "agent_memori": 121, "agenta": 121, "agentb": 121, "agentbas": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 31, 42, 44, 51, 52, 53, 110, 113, 116, 117, 121, 123], "agentcallerror": [0, 11, 106], "agentcreationerror": [0, 11, 106], "agentscop": [109, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 123, 125, 128], "agentscope_tutorial_rag": [42, 44, 124], "agentserv": [51, 52], "agentservererror": [0, 11, 106], "agentservernotaliveerror": [0, 11, 106], "agentserverservic": [0, 51, 53], "aggreg": [88, 89], "aggregator_prompt": [88, 89], "agre": 115, "agreement": 115, "ai": [20, 22, 23, 25, 45, 54, 79, 109, 112, 114, 123], "aim": 41, "akif": [54, 82], "al": 14, "album": [54, 85], "algorithm": [1, 7, 54, 82], "alic": [109, 119], "align": [20, 28, 41], "alik": 41, "aliv": [11, 46, 47, 49, 51, 53], "aliyun": [20, 21, 54, 66], "all": [0, 1, 2, 9, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23, 24, 25, 29, 30, 31, 38, 40, 41, 42, 46, 47, 49, 51, 52, 53, 54, 62, 73, 79, 81, 88, 89, 103, 110, 123, 125], "allianc": 41, "allow": [20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 32, 35, 36, 37, 54, 56, 59, 76, 77, 103], "allow_change_data": [54, 76, 77], "allow_miss": 35, "alloy": [54, 67], "alreadi": [1, 8, 20, 28, 54, 63, 64, 103], "also": [1, 2, 3, 4, 6, 7, 8, 9, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 41, 110, 118], "altern": [20, 21, 22], "alway": 41, "amin": [20, 30], "among": [0, 31, 38, 40, 41], "an": [1, 2, 4, 5, 6, 7, 8, 11, 17, 18, 19, 20, 21, 23, 24, 27, 29, 30, 38, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 51, 52, 54, 59, 60, 62, 63, 64, 67, 79, 82, 84, 93, 98, 99, 103, 111, 112, 115, 116, 121, 123], "analys": [54, 86], "analysi": 41, "analyst": 41, "analyz": 41, "ancestor": [54, 85], "and": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 49, 51, 52, 54, 56, 58, 59, 62, 63, 64, 66, 67, 69, 73, 75, 79, 81, 82, 84, 85, 86, 87, 88, 89, 91, 93, 98, 99, 101, 102, 103, 110, 111, 112, 115, 116, 117, 118, 119, 123, 124, 125], "andnot": [54, 81], "angel": [20, 29], "ani": [1, 2, 3, 4, 6, 8, 9, 12, 13, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 32, 34, 38, 39, 40, 41, 42, 43, 45, 50, 51, 53, 54, 60, 62, 63, 64, 69, 71, 73, 75, 76, 77, 84, 86, 91, 102, 103, 117, 118], "annot": [54, 56, 117], "announc": [0, 31, 103, 110, 113], "anoth": [1, 6, 54, 84, 103], "answer": [41, 42, 43, 88, 89], "anthropic_api_key": [20, 23], "api": [0, 13, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 54, 66, 67, 73, 79, 81, 82, 84, 85, 93, 94, 107, 109, 112, 116, 117, 118, 119, 120, 121, 123, 129], "api_key": [20, 21, 22, 24, 26, 29, 30, 54, 66, 67, 73, 84, 85, 109, 110, 114, 117, 119, 123], "api_token": 24, "api_url": [20, 24, 27, 114, 124], "app": 124, "appeal": 41, "appear": 41, "append": [14, 15, 16, 17, 18], "applic": [35, 41, 42, 44, 91, 98, 99, 101, 111, 121], "approach": [41, 54, 82], "appropri": [41, 54, 56], "arc": 41, "archaic": 41, "are": [1, 2, 7, 8, 14, 15, 16, 17, 18, 20, 21, 22, 23, 24, 25, 29, 30, 32, 36, 37, 38, 39, 40, 41, 51, 52, 54, 56, 59, 60, 73, 79, 85, 86, 93, 102, 109, 110, 111, 117, 119, 123, 125], "area": 41, "arg": [1, 2, 3, 4, 6, 7, 8, 9, 13, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 42, 43, 46, 47, 54, 73, 102, 110, 112, 113, 117, 118, 124], "argpars": 124, "argument": [0, 1, 2, 7, 11, 13, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 51, 52, 54, 58, 59, 71, 73, 84, 101, 102, 117], "argument1": 117, "argument2": 117, "argumentnotfounderror": [0, 11, 106], "argumentpars": 124, "argumenttypeerror": [0, 11, 106], "aria": [54, 56], "aria_label": [0, 54, 55, 56], "arm": 41, "around": 41, "array": 13, "arrowdown": [54, 56], "arrowright": [54, 56], "arrowup": [54, 56], "art": 41, "arthur": 41, "articl": [54, 82], "articul": 41, "artifici": [54, 82], "arxiv": [1, 7, 54, 80, 117], "arxiv_search": [0, 54, 80, 81, 117], "as": [0, 1, 2, 4, 6, 7, 8, 9, 14, 15, 16, 17, 18, 20, 21, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 36, 37, 38, 39, 40, 41, 46, 47, 49, 51, 52, 53, 54, 56, 59, 60, 67, 79, 86, 87, 88, 89, 91, 93, 97, 98, 102, 103, 109, 110, 112, 113, 114, 115, 116, 117, 118, 124], "as_host": 122, "as_port": 122, "as_serv": [0, 51, 52, 121], "as_studio": 122, "as_workflow": 122, "asdigraph": [95, 100, 102], "asia": [54, 85], "ask": [32, 36, 37, 41], "aslan": [54, 82], "asmanag": [0, 13], "asp": [54, 84], "aspir": 41, "asr": 99, "assert": 121, "assign": 110, "assist": [1, 2, 7, 17, 18, 19, 20, 21, 23, 24, 25, 26, 29, 30, 109, 112, 115, 116, 118, 119, 123], "associ": [54, 85, 91, 102], "assum": [41, 54, 84, 110], "astut": 41, "astyp": 124, "async": [54, 58], "async_run_code_on_notebook": [0, 54, 57, 58], "asynchron": [54, 56], "at": [0, 14, 15, 16, 31, 41, 54, 62, 67, 99, 110, 123, 124], "attach": [20, 21, 32, 36, 41], "attempt": 110, "attent": 41, "attitud": 41, "attract": [41, 54, 85], "attraction_review": [54, 85], "attribut": [14, 16, 17, 19, 54, 56, 82, 118], "attributeerror": 118, "au": [54, 81], "audienc": [1, 2, 41], "audio": [13, 20, 21, 54, 66, 67, 98, 99, 114, 118, 119], "audio2text": [95, 96, 99], "audio_fil": [54, 67], "audio_file_url": [54, 67], "audio_path": [54, 66, 67, 99], "audio_term": 98, "augment": 43, "authent": [54, 84, 91, 117], "author": [24, 54, 81, 82, 91, 114], "authorit": 41, "auto": [51, 53, 124], "automat": [1, 2, 54, 73, 110, 121], "avail": [20, 22, 28, 54, 59, 82, 93, 99, 117, 121], "avatar": 99, "avoid": [13, 41, 54, 75, 76, 77, 103], "award": [54, 85], "azur": [20, 23], "azure_api_bas": [20, 23], "azure_api_key": [20, 23], "azure_api_vers": [20, 23], "b340b95007a4": [20, 21], "b3771cba3788": [20, 21], "b54ffeb8": [20, 21], "b986": [20, 21], "background": 41, "backquot": [54, 56], "backslash": [54, 56], "backspac": [54, 56], "balanc": 41, "band": 41, "bank": [1, 6, 42, 44], "bard": 41, "base": [1, 2, 5, 8, 9, 11, 14, 15, 18, 20, 22, 23, 24, 25, 27, 32, 33, 35, 38, 39, 40, 41, 42, 43, 45, 54, 66, 67, 82, 99, 101, 102, 103, 110, 112, 114, 115, 118, 123], "base64": 119, "base_dir": 120, "base_url": [20, 30], "baseembed": 45, "basemodel": [54, 56, 115], "baseretriev": 45, "bash": [54, 60, 124], "basic": [20, 22, 41, 45], "batch": 43, "battl": 41, "battlefield": 41, "bayesian": [54, 87], "be": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 40, 41, 42, 43, 44, 45, 46, 47, 51, 52, 53, 54, 56, 58, 59, 60, 62, 63, 64, 66, 67, 69, 73, 79, 84, 85, 86, 88, 89, 93, 102, 103, 110, 112, 115, 117, 118, 121], "bearer": [24, 114], "beauti": [54, 66], "becam": 41, "becaus": [13, 20, 25, 54, 56], "been": [1, 2, 13, 20, 28, 88, 89, 103], "befit": 41, "befor": [13, 14, 15, 16, 41, 54, 73, 79, 99], "begin": [0, 11, 20, 22, 31, 32, 33, 37, 41], "behalf": [54, 84], "behavior": [1, 5], "behind": 41, "being": [41, 46, 47, 54, 59, 102, 110], "believ": 41, "below": [1, 2, 32, 37, 115], "beta": 6, "better": [14, 16, 20, 22, 41, 88, 89], "between": [14, 16, 20, 21, 27, 28, 32, 33, 34, 37, 54, 70, 102, 115, 119], "bias": [41, 88, 89], "bigmodel": [20, 30], "bin": 108, "binari": 13, "bing": [54, 56, 73, 84, 103, 117, 125], "bing_api_key": [54, 84], "bing_search": [0, 54, 73, 80, 84, 117], "bingsearchservicenod": [95, 100, 103], "bingwebsearch": 41, "bite": 41, "blank": 41, "blob": [20, 25, 58, 59, 93], "block": [1, 6, 13, 32, 33, 34, 54, 58, 93, 115], "blue": [20, 25], "blueprint": [20, 30], "blunt": 41, "bob": [20, 21, 23, 24, 25, 29, 30, 109, 119], "bodi": [20, 22, 38, 39, 40], "bomb": 59, "book": 41, "bool": [0, 1, 2, 3, 4, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23, 25, 26, 28, 29, 30, 32, 34, 35, 36, 37, 38, 39, 40, 42, 43, 44, 45, 46, 47, 50, 51, 52, 53, 54, 56, 59, 63, 64, 69, 73, 76, 77, 85, 86, 88, 89, 90, 99, 103, 104, 112, 115, 117, 118], "boolean": [14, 16, 54, 62, 63, 64, 81, 115], "boost": 41, "borrow": 93, "both": [14, 15, 16, 41, 54, 59, 85, 88, 89], "bound": 41, "branch": [39, 127], "brave": 41, "braveri": 41, "break": [38, 39, 40, 109, 110, 113, 115], "break_condit": 113, "break_func": [38, 39, 40], "breviti": [112, 117], "bridg": [20, 28], "bring": 41, "broadcast": [0, 31, 103, 110, 113], "brows": [54, 84], "browser": [0, 54, 125], "browser_height": [54, 56], "browser_vis": [54, 56], "browser_width": [54, 56], "budget": 41, "buffer": 48, "build": [1, 6, 20, 22, 41, 45, 102], "build_dag": [95, 100, 102], "built": [54, 79], "burgeon": 41, "busi": [41, 54, 84, 85], "but": [0, 1, 7, 31, 41, 54, 60, 69, 79, 88, 89], "by": [0, 1, 2, 3, 4, 6, 8, 9, 13, 14, 15, 16, 17, 18, 20, 21, 24, 25, 28, 31, 32, 33, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 51, 53, 54, 56, 62, 73, 79, 81, 88, 89, 91, 103, 110, 112, 117, 125], "bygon": 41, "byte": [13, 54, 56, 59], "c462009dec4d": [20, 21], "cach": [0, 1, 2, 13, 51, 52, 53, 120, 123], "cache_dir": [0, 13, 120], "cache_text_embed": [0, 13], "cacheagentscop": 0, "cai": [54, 82], "call": [1, 2, 8, 11, 13, 17, 18, 19, 20, 21, 22, 23, 24, 26, 27, 29, 30, 41, 46, 47, 49, 51, 53, 54, 56, 58, 67, 73, 93, 102, 103, 118, 125], "call_agent_func": [0, 46, 47, 49, 51, 53], "call_credenti": 49, "call_in_thread": [0, 46, 47], "callabl": [1, 5, 14, 15, 16, 38, 39, 40, 41, 54, 56, 69, 73, 86, 98, 102, 104, 118], "calm": 41, "campaign": 41, "can": [0, 1, 2, 3, 4, 6, 7, 8, 9, 14, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 29, 30, 32, 36, 37, 41, 42, 44, 45, 51, 52, 53, 54, 56, 59, 66, 73, 82, 85, 88, 89, 102, 103, 112, 118, 121], "candid": 41, "cannot": [1, 7, 42, 43], "capabl": 41, "capac": [54, 84], "captain": 41, "caption": [54, 85], "captiv": 41, "captur": [41, 54, 59], "care": [54, 60], "career": 41, "carri": 41, "case": [38, 40, 41, 51, 52, 103, 112], "case1": 113, "case2": 113, "case_oper": [38, 39, 40, 113], "castl": 41, "cat": [54, 60, 81, 119], "categori": [41, 54, 85, 87], "caus": [20, 21, 41], "cautious": 41, "cd": [54, 60, 108, 110, 125, 127], "cdn": [54, 85], "cell": [54, 58], "cells_length": [0, 54, 57, 58], "ceo": 41, "certain": [11, 14, 15, 41, 102], "chain": [1, 7], "challeng": 41, "chang": [1, 4, 41, 54, 56, 60, 76, 77, 93], "channel": [46, 49], "channel_credenti": 49, "chao": [54, 82], "charact": [32, 37, 41, 110], "characterist": 41, "chat": [12, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 94, 98, 99, 109, 110, 116, 117, 118, 119], "chatbot": [41, 98], "chatcmpl": [20, 26], "check": [13, 14, 15, 16, 32, 34, 46, 47, 49, 50, 51, 53, 54, 59, 73, 86, 91, 99, 101, 104, 110, 112], "check_uuid": [95, 96, 99], "check_win": 110, "checkout": 127, "chemic": [54, 84], "chengm": [54, 82], "child": 121, "children": 41, "chines": [41, 54, 82, 85], "chinesesystempromptgener": [0, 41, 123], "chivalr": 41, "chivalri": 41, "choic": [1, 6, 20, 21, 23, 26, 29, 30, 114], "choos": [1, 6, 41, 109, 110, 121], "chosen": [17, 18, 19, 41, 54, 56], "chunk": [1, 2, 43], "chunk_lin": 124, "chunk_overlap": 124, "chunk_siz": 124, "citi": [54, 67, 85], "clarifi": 41, "clariti": 41, "class": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 40, 41, 42, 43, 44, 45, 46, 47, 49, 51, 52, 53, 54, 56, 58, 71, 72, 73, 88, 89, 93, 102, 103, 110, 112, 113, 114, 115, 116, 117, 118, 121, 122, 123, 124], "classmethod": [1, 2, 13, 17, 18, 19, 20, 24, 51, 52, 54, 73], "classvar": [54, 56], "claud": [20, 23], "clean": [14, 15, 16, 102], "clear": [0, 13, 14, 15, 16, 41, 46, 49, 51, 53, 118], "clear_audi": [0, 1, 2], "clear_exist": 13, "clear_model_config": [0, 13], "click": [54, 56], "clickabl": [54, 56], "client": [1, 8, 17, 19, 20, 26, 30, 41, 46, 47, 49, 114, 121], "client_arg": [20, 24, 26, 30, 114], "climax": 41, "clone": [1, 8, 46, 47, 49, 51, 53, 108, 125], "clone_ag": [0, 46, 47, 49, 51, 53], "clone_inst": [0, 1, 8], "close": [0, 32, 34, 54, 55, 56], "cloud": [20, 22], "clspipelin": 113, "clue": 41, "cmpl": [20, 29], "cn": [20, 22, 30], "co": [54, 81], "coach": 41, "code": [0, 1, 2, 3, 4, 13, 20, 21, 31, 32, 33, 34, 41, 48, 54, 56, 58, 59, 85, 86, 93, 101, 102, 103, 112, 115, 121], "code_block_pars": [0, 32], "code_dir": [0, 13], "codesplitt": 124, "coher": [88, 89], "colleagu": 41, "collect": [41, 54, 75, 88, 89, 103, 112], "color": [17, 18, 20, 25], "com": [20, 21, 22, 25, 26, 29, 45, 54, 56, 58, 59, 66, 67, 81, 84, 85, 88, 89, 93, 108, 117, 118, 119, 124, 125, 127], "combat": 41, "combin": [20, 22, 41], "command": [41, 51, 52, 54, 60, 99, 101], "comment": 41, "commit": [41, 127], "common": [0, 5, 20, 21, 23, 24, 30, 54, 61, 92], "communic": 41, "compar": [32, 36, 41, 54, 69], "compare_in_dialog": [0, 41, 123], "compare_with_queri": [0, 41, 123], "compared_system_prompt": [41, 123], "comparison": [54, 82], "compat": [20, 27], "compel": 41, "compet": 41, "competit": 41, "competitor": 41, "compil": [100, 102, 103, 122], "compile_workflow": [95, 100, 101], "compiled_filenam": [101, 102], "complet": [20, 23, 25, 26, 29, 41, 42, 44, 54, 82, 117, 120], "completion_token": [13, 20, 23, 26, 29, 30, 120, 124], "complex": 41, "compli": [41, 101], "compon": [42, 43, 45], "compos": 45, "comprehens": [41, 88, 89], "compress": 49, "comput": [14, 16, 54, 56, 70, 82, 102], "computedfieldinfo": [54, 56], "comrad": 41, "conan": 41, "concept": 45, "conceptu": 41, "concern": 41, "concis": 41, "conclus": 41, "condit": [38, 39, 40, 41, 103, 110, 113], "condition_func": [38, 39, 40], "condition_oper": [38, 40], "conduct": 41, "conf": [54, 82], "confer": [54, 82], "confid": [54, 59], "confidenti": 41, "config": [0, 1, 2, 3, 4, 6, 7, 8, 13, 20, 21, 23, 24, 26, 30, 41, 42, 44, 46, 47, 49, 51, 52, 53, 54, 56, 88, 89, 101, 102, 109, 110, 114, 121, 122], "config_nam": [0, 13, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 109, 110, 114, 116, 119, 121, 123, 124], "config_path": 101, "configdict": [54, 56], "configur": [1, 2, 3, 4, 7, 13, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 41, 42, 43, 44, 45, 54, 56, 90, 101, 102, 103, 112], "conflict": 41, "conform": [54, 56], "connect": [1, 2, 17, 19, 46, 47, 102, 121, 122], "connect_exist": [1, 8], "consid": 41, "consider": [20, 22], "consist": [41, 110], "constant": [0, 95, 96, 106], "constraint": [20, 22, 41], "construct": [32, 36, 41, 54, 58, 102, 118], "constructor": [32, 36, 41, 46, 49, 54, 71, 117], "consult": 41, "consum": 41, "contain": [0, 1, 7, 17, 18, 24, 25, 32, 36, 37, 38, 39, 40, 41, 51, 52, 54, 59, 60, 62, 63, 64, 66, 67, 75, 76, 77, 79, 82, 83, 87, 101, 102], "content": [2, 6, 7, 9, 11, 18, 19, 21, 23, 24, 25, 26, 29, 30, 33, 34, 35, 36, 37, 43, 45, 56, 62, 63, 64, 66, 67, 71, 79, 81, 82, 84, 85, 86, 87, 94, 106, 107, 109, 110, 111, 112, 114, 115, 116, 117, 118, 119, 121], "content1": [32, 36], "content2": [32, 36], "content_hint": [0, 32, 33, 34, 37, 110, 115], "contentembed": [20, 22], "context": [20, 25, 41, 46, 49, 51, 53, 54, 56, 93], "contextmanag": 93, "continu": [38, 39, 40, 41], "contribut": [88, 89], "control": [20, 25, 35, 38, 39, 40, 41, 125], "convers": [14, 16, 20, 21, 22, 23, 24, 25, 29, 30, 41, 54, 67, 73, 109, 110, 114, 119], "conversation_with_rag_ag": [42, 44], "convert": [1, 2, 20, 21, 32, 34, 45, 54, 66, 67, 73, 93, 98, 99, 104], "convert_url": [0, 20, 21], "convey": 41, "cook": 41, "cookbook": 118, "coordin": [54, 56], "copi": [42, 44, 100, 103], "copynod": [95, 100, 103], "copyright": 41, "core": [41, 45, 112, 124], "correct": [41, 54, 56], "correspond": [1, 6, 32, 34, 35, 36, 37, 38, 39, 40, 41, 49, 54, 56, 75, 114], "cos_sim": [0, 54, 68, 70, 117], "cosin": [54, 70], "cost": 41, "could": [20, 23, 41, 54, 84], "counselor": 41, "count": [94, 120], "count_openai_token": [0, 92, 94], "counterpart": 39, "countri": [54, 85], "coupl": [54, 85], "cours": [32, 36], "court": 41, "courteous": 41, "cover": [0, 41], "cpu": [114, 121, 122, 123], "craft": 41, "creat": [0, 1, 2, 9, 11, 17, 18, 19, 20, 23, 26, 29, 30, 31, 41, 46, 47, 49, 51, 53, 54, 62, 67, 93, 103, 108, 112, 117, 121, 122, 124], "create_ag": [0, 46, 47, 49, 51, 53], "create_directori": [0, 54, 61, 62, 117], "create_fil": [0, 54, 61, 62, 117], "create_object": 124, "create_tempdir": [0, 92, 93], "create_timestamp": 124, "createagentrequest": [51, 53], "created_at": [20, 25], "creation": [46, 47], "creativ": 41, "creator": 41, "crime": 41, "crimin": 41, "critic": [0, 12, 13, 88, 89, 111], "crown": 41, "crucial": [41, 88, 89, 110], "crucibl": 41, "crusad": 41, "cse": [54, 84], "cse_id": [54, 84], "csv": 124, "cuisin": 41, "culinari": 41, "cultiv": 41, "cultur": 41, "cun": 41, "currenc": [41, 54, 85], "current": [1, 2, 3, 4, 6, 14, 15, 16, 38, 39, 40, 41, 54, 56, 59, 60, 62, 79, 93, 118, 124], "custom": [41, 42, 44, 51, 52, 54, 84, 99, 112, 121], "custom_agent_class": [51, 52, 121], "cut": 41, "cycle_dot": [95, 96, 99], "dag": [102, 107], "daili": 41, "dall": [20, 26, 54, 67, 114, 120], "dall_": 27, "dashscop": [20, 21, 54, 66, 116, 117, 119], "dashscope_chat": [20, 21, 114, 116], "dashscope_image_synthesi": [20, 21, 114], "dashscope_image_to_text": [0, 54, 65, 66, 117], "dashscope_model": [0, 20], "dashscope_multimod": [20, 21, 114], "dashscope_servic": [54, 65], "dashscope_text_embed": [20, 21, 114], "dashscope_text_to_audio": [0, 54, 65, 66, 117], "dashscope_text_to_imag": [0, 54, 65, 66, 117], "dashscopechatwrapp": [0, 20, 21, 114, 116], "dashscopeimagesynthesiswrapp": [0, 20, 21, 114], "dashscopemultimodalwrapp": [0, 20, 21, 114], "dashscopetextembeddingwrapp": [0, 20, 21, 114], "dashscopewrapperbas": [0, 20, 21], "data": [1, 3, 4, 6, 13, 15, 20, 26, 28, 30, 41, 42, 43, 44, 45, 46, 47, 54, 56, 63, 69, 76, 77, 82, 85, 98, 102, 103, 112, 114, 119, 124], "data_dirs_and_typ": [42, 44, 124], "data_process": 124, "databas": [13, 41, 42, 43, 45, 54, 75, 76, 77, 82], "date": [20, 21, 23, 24, 25, 29, 30, 41], "datetim": 124, "day": 110, "daytim": 110, "db": [54, 82, 120], "dblp": [54, 80, 117], "dblp_search_author": [0, 54, 80, 82, 117], "dblp_search_publ": [0, 54, 80, 82, 117], "dblp_search_venu": [0, 54, 80, 82, 117], "dead": 122, "dead_nam": 110, "dead_play": 110, "death": 110, "debug": [0, 12, 13, 90, 110, 111], "decid": [14, 15, 20, 22, 110], "decis": [20, 22, 41], "decod": [1, 4, 91], "decode_jwt": [0, 90, 91], "decor": 91, "dedic": 41, "deduc": [41, 110], "deed": 41, "deep": [41, 54, 81], "deepcopi": [42, 44], "deepli": 41, "def": [54, 73, 110, 112, 113, 114, 115, 116, 117, 118, 123, 124], "default": [0, 1, 2, 3, 4, 6, 7, 8, 9, 11, 12, 13, 14, 16, 17, 18, 19, 20, 21, 22, 23, 25, 26, 27, 29, 30, 31, 32, 34, 36, 37, 38, 39, 40, 41, 42, 43, 45, 46, 47, 51, 52, 53, 54, 56, 58, 59, 64, 66, 67, 69, 73, 75, 76, 77, 79, 81, 82, 83, 84, 85, 88, 89, 90, 99, 102, 103, 117, 118, 124], "default_ag": 113, "default_oper": [38, 39, 40], "defend": 41, "defin": [1, 2, 5, 8, 41, 42, 44, 49, 54, 56, 69, 73, 102, 110, 112], "definit": [54, 84], "del": 118, "delet": [0, 1, 2, 14, 15, 16, 31, 46, 47, 49, 51, 52, 53, 54, 56, 62, 110, 113, 118], "delete_ag": [0, 46, 47, 49, 51, 53, 121], "delete_all_ag": [0, 46, 47, 49, 51, 53, 121], "delete_directori": [0, 54, 61, 62, 117], "delete_fil": [0, 54, 61, 62, 117], "demeanor": 41, "dep_opt": 103, "dep_var": 104, "depart": [54, 82], "depend": [14, 15, 16, 54, 81, 84, 85, 102], "deploy": [20, 27], "deprec": [1, 2], "deprecated_model_typ": [0, 20, 21, 26, 27], "deps_convert": [95, 100, 104], "depth": 41, "describ": [54, 66, 67, 73, 119], "descript": [41, 54, 67, 73, 86, 115, 117], "descriptor": [0, 46], "deseri": [0, 14, 15, 16, 17, 18, 50, 106], "design": [1, 5, 6, 14, 15, 16, 31, 41, 45, 54, 56, 103], "desir": 41, "despit": 41, "destin": [41, 54, 62], "destination_path": [54, 62], "destruct": 59, "detail": [1, 2, 7, 9, 20, 21, 23, 41, 54, 56, 66, 67, 82, 84, 85, 112, 117], "detect": 41, "determin": [38, 39, 40, 41, 54, 59], "detriment": 41, "dev": [20, 22, 30, 127], "develop": [1, 4, 7, 20, 21, 23, 24, 25, 29, 30, 41, 54, 56, 73, 84], "deviat": 41, "devic": 124, "devot": 41, "di": 58, "diagnosi": [54, 82], "dialog": [1, 3, 4, 31, 41, 118, 119, 123], "dialog_ag": [0, 1, 109], "dialog_agent_config": 112, "dialog_histori": 41, "dialogag": [0, 1, 3, 103, 109], "dialogagentnod": [95, 100, 103], "dialogu": [1, 3, 4, 6, 41, 111, 112], "dict": [0, 1, 2, 3, 4, 6, 7, 8, 9, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 54, 56, 63, 66, 67, 69, 71, 73, 75, 84, 86, 91, 93, 99, 101, 102, 103, 104, 112, 113, 114, 115, 117, 118, 124], "dict_convert": [95, 100, 104], "dict_dialog_ag": [0, 1], "dict_input": 117, "dictdialogag": [0, 1, 4, 103, 110, 112, 115], "dictdialogagentnod": [95, 100, 103], "dictfiltermixin": [0, 32, 34, 35, 36, 37], "diction": 41, "dictionari": [4, 13, 17, 18, 19, 20, 21, 23, 26, 32, 34, 35, 36, 37, 38, 39, 40, 41, 42, 44, 54, 56, 66, 67, 73, 81, 82, 84, 85, 99, 101, 102, 104, 115, 117], "didn": 115, "diet": 41, "dietari": 41, "differ": [1, 7, 8, 12, 13, 20, 22, 23, 24, 28, 32, 36, 41, 43, 54, 70, 75, 88, 89, 103, 114, 119, 123], "difficulti": 41, "digest": [54, 86], "digest_prompt": [54, 86], "digest_webpag": [0, 54, 80, 86, 117], "digit0": [54, 56], "digit9": [54, 56], "digraph": 102, "dine": 41, "dingtalk": 128, "dinner": 41, "diplomaci": 41, "dir": [0, 45, 51, 52, 121], "direcotri": [54, 62], "direct": [1, 6, 32, 34, 35, 37, 41, 42, 43, 54, 58, 59, 73, 102, 103, 119, 124], "director": 41, "directori": [0, 1, 9, 12, 13, 42, 44, 45, 51, 52, 54, 60, 62, 63, 64, 66, 67, 90, 93], "directory_path": [54, 62], "disabl": [0, 54, 59], "disable_gradio": 12, "disable_sav": [0, 13, 120], "disciplin": 41, "disclos": 41, "discord": 128, "discours": 41, "discover": 41, "discuss": [20, 22, 41, 110, 115], "dish": 41, "disk": [14, 16], "display": [32, 34, 41, 54, 59, 99], "disput": 41, "distconf": [0, 1, 2, 121], "distinct": [41, 103], "distribut": [1, 2, 13, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 42, 44, 52, 53, 108], "div": [54, 86], "divers": [88, 89], "divid": 110, "do": [38, 39, 40, 41, 54, 60, 84, 85, 110], "do_someth": 121, "doc": [20, 22, 23, 25, 26, 29, 42, 44, 45, 67, 107, 114, 124], "docker": [54, 59, 117], "docstr": [54, 73], "document": [41, 42, 43, 45, 66, 67, 124], "doe": [14, 15, 38, 39, 40, 41], "doesn": [1, 2, 3, 4, 6, 8, 9, 13, 14, 16], "dog": 119, "doi": [54, 82], "domest": 41, "don": [13, 118], "done": [20, 25], "dong": [54, 82], "dot": 99, "down": [54, 56], "download": [25, 46, 47, 51, 53, 54, 80], "download_fil": [0, 46, 47, 49, 51, 53], "download_from_url": [0, 54, 80, 83, 117], "draw": [20, 30], "dream": 41, "dri": 41, "drive": 41, "due": [32, 37], "dump": [117, 118, 120], "duplic": [42, 44, 102, 103, 124], "durdu": [54, 82], "dure": [1, 7, 11, 35, 41, 110], "duti": 41, "dynam": [32, 36, 41, 110], "e512": [20, 21], "ea89ae83": [20, 29], "each": [0, 1, 6, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 37, 41, 51, 53, 54, 58, 82, 84, 85, 88, 89, 102, 110], "earn": 41, "easi": [0, 1, 6, 31, 41, 42, 44], "easier": 44, "easili": [41, 110], "echo": [17, 18, 54, 67, 118], "edg": 102, "edit": [54, 60, 67], "edited_image_url1": [54, 67], "edited_image_url2": [54, 67], "educ": 41, "effect": [0, 1, 2, 31, 41, 54, 84], "effici": 41, "effort": 41, "eiffel": [54, 85], "either": [14, 15, 16, 20, 22, 54, 60, 84, 85, 110], "eleg": [0, 31, 41], "element": [20, 30, 54, 56, 59, 69, 86, 102], "element_id": [54, 56], "elementari": 41, "elif": [113, 116], "elimin": [41, 110], "els": [38, 39, 40, 41, 103, 110, 113, 116, 117, 118], "else_body_oper": [38, 39, 40], "emb": [14, 16, 41, 54, 69, 124], "emb_model": [42, 43, 45], "emb_model_config_nam": 124, "emb_model_nam": [42, 44, 124], "embed": [13, 14, 16, 20, 21, 22, 25, 26, 27, 28, 30, 41, 42, 43, 44, 45, 54, 69, 70, 109, 114, 117, 118, 120, 123], "embed_model_config_nam": [41, 123], "embedding_cache_dir": [0, 13], "embedding_model": [13, 14, 16, 54, 69], "emblemat": 41, "embodi": 41, "emma": 41, "emot": 41, "empathet": 41, "empir": [88, 89], "employ": 41, "empti": [20, 25, 51, 53, 54, 73, 86, 98, 102, 117, 119], "en": [1, 4, 42, 44, 45, 54, 67, 84, 85, 117, 124], "enabl": [20, 23, 25, 26, 30, 42, 44, 45, 90, 103], "encapsul": [1, 9, 20, 28], "enclos": 41, "encod": [91, 124], "encoding_format": 114, "encount": 111, "encourag": [1, 7, 20, 21, 23, 24, 25, 29, 30, 41, 88, 89], "end": [1, 7, 11, 14, 15, 16, 20, 22, 32, 33, 34, 36, 37, 41, 54, 56, 58, 102, 110, 115], "end_discuss": 115, "endow": 41, "engag": 41, "engin": [1, 7, 20, 21, 23, 24, 25, 29, 30, 41, 54, 73, 82, 84, 102, 112, 123], "english": 41, "englishsystempromptgener": [0, 41, 123], "enhanc": [41, 88, 89], "enjoy": 41, "enrich": 112, "ensur": [41, 54, 56, 88, 89], "enter": [54, 56], "entiti": [54, 87], "entj": 41, "entri": [0, 54, 56, 85, 90, 98], "enum": [10, 54, 72, 81, 82, 84, 85, 103], "environ": [1, 2, 8, 20, 22, 23, 26, 30, 54, 59, 109, 114, 124], "equal": [32, 37, 54, 56, 110], "equip": [0, 1, 6, 41, 42, 44, 124], "era": 41, "error": [0, 11, 12, 13, 20, 21, 41, 54, 59, 60, 62, 63, 64, 71, 72, 75, 76, 77, 79, 81, 82, 83, 84, 85, 91, 93, 111, 117], "escap": [32, 37, 54, 56], "especi": [41, 54, 59], "essenc": 41, "essenti": [54, 56], "estim": 41, "estj": 41, "etc": [20, 29, 41, 54, 56, 59, 71, 84, 114, 117], "ethic": 41, "europ": 41, "evafalleth": [54, 85], "eval": [59, 93], "eval_count": [20, 25], "eval_dur": [20, 25], "evalu": [88, 89, 102, 103], "even": 41, "event": [51, 53, 98, 110], "eventdata": 98, "everi": 41, "evid": 41, "evok": 41, "exam": 41, "exampl": [1, 2, 4, 6, 7, 20, 21, 23, 24, 25, 29, 30, 32, 34, 41, 42, 44, 45, 54, 58, 67, 79, 81, 84, 85, 86, 87, 107, 110, 116, 118, 119, 121], "example_dict": 115, "example_list": [41, 123], "example_num": [41, 123], "example_prompt_templ": 41, "example_selection_strategi": [41, 123], "exceed": [1, 2, 9, 11, 41, 51, 52, 53, 54, 59, 79], "excel": 41, "except": [0, 20, 27, 32, 36, 41, 99, 105, 106, 117, 118], "exchang": 41, "exec_nod": [100, 102], "exec_notebook": [54, 57], "exec_python": [54, 57], "exec_shel": [54, 57], "execut": [1, 5, 7, 38, 39, 40, 41, 54, 56, 58, 59, 60, 71, 72, 73, 75, 76, 77, 83, 84, 87, 93, 102, 103, 117], "execute_cod": [0, 54], "execute_nb_cod": 58, "execute_python_cod": [0, 54, 57, 59, 117], "execute_shell_command": [0, 54, 57, 60], "exercis": 41, "exert": [54, 84], "exeuct": [38, 39], "exist": [1, 2, 20, 21, 28, 32, 34, 51, 53, 54, 63, 64, 86], "existing_ag": 113, "exit": [1, 2, 41, 109, 121, 123], "expect": [1, 4, 41, 45, 54, 69, 111], "experi": 41, "experienc": 41, "expert": [41, 123], "expertis": 41, "expir": [1, 2, 51, 52, 53, 91], "explain": 41, "explan": 41, "explanatori": [54, 73], "explicit": [41, 54, 84], "exploit": 41, "export": [0, 14, 15, 16, 118, 124], "expos": 35, "express": [41, 102, 104], "extend": [1, 8, 102], "extens": [41, 42, 44], "extra": [20, 21, 23, 25, 26, 30, 93], "extract": [20, 24, 32, 33, 36, 37, 41, 54, 56, 73, 86, 103], "extract_name_and_id": 110, "extras_requir": 93, "extrem": [41, 54, 82], "f1": [54, 56], "f12": [54, 56], "fabl": [41, 54, 67], "facilit": 125, "fact": 41, "factor": 41, "factori": [54, 73], "fail": [1, 4, 11, 20, 21, 27, 51, 53, 54, 82], "failur": 41, "fair": 41, "fall": [54, 82], "fals": [0, 1, 2, 7, 8, 9, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23, 25, 26, 29, 30, 32, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 49, 51, 52, 54, 56, 59, 63, 64, 73, 76, 77, 85, 86, 88, 89, 90, 99, 103, 110, 115, 118, 120, 121, 124], "falsehood": 41, "famili": [54, 85], "familiar": 41, "faq": 82, "fast": [42, 44], "fastchat": [20, 27, 110, 114], "fat": 41, "fatih": [54, 82], "fault": [54, 82], "favor": 41, "fd564688": [20, 21], "feasibl": 41, "featur": [41, 127], "fed": 35, "feed": [54, 79, 86], "feedback": 41, "feel": 41, "fenc": [32, 33, 34, 115], "festiv": 41, "fetch": [13, 82], "fetch_cached_text_embed": [0, 13], "field": [1, 2, 4, 7, 9, 11, 20, 21, 22, 25, 28, 32, 33, 34, 35, 36, 37, 51, 53, 54, 56, 86, 115], "fieldinfo": [54, 56], "fierc": 41, "fig_path": [54, 66], "fight": 41, "figur": [20, 21], "figure1": [20, 21], "figure2": [20, 21], "figure3": [20, 21], "file": [0, 1, 6, 9, 12, 13, 14, 15, 16, 20, 21, 24, 42, 44, 46, 47, 49, 51, 52, 53, 54, 59, 60, 67, 83, 86, 99, 101, 110, 117, 118, 120], "file_dir": [0, 13], "file_path": [14, 15, 16, 54, 62, 63, 64, 117, 118], "filemanag": [0, 13], "filenam": 13, "filenotfounderror": 101, "filepath": [54, 83], "filesystem": 59, "fill": [1, 2, 32, 34, 41, 54, 86], "filter": [1, 4, 14, 15, 16, 32, 34, 35, 36, 37], "filter_func": [14, 15, 16, 118], "final": [32, 37, 45, 88, 89, 102], "financi": 41, "find": [41, 54, 60, 75, 85], "fine": 111, "finish": [0, 1, 7, 115], "finish_discuss": [110, 115], "finish_reason": [20, 21, 23, 26, 29, 30], "firm": 41, "first": [14, 15, 16, 20, 21, 25, 31, 54, 58, 81, 82, 87, 102, 110, 119], "fit": [1, 7, 41], "fix": [32, 36], "flac": [54, 67], "flask": [114, 124], "flask_model": 124, "flavor": 41, "flexibl": [32, 36], "fli": 45, "float": [13, 14, 16, 20, 26, 29, 54, 56, 59, 67, 69, 70, 93, 114, 124], "flow": [38, 39, 40, 103, 111], "flush": [0, 13, 99], "fn_choic": [95, 96, 98], "focus": 41, "foe": 41, "follow": [0, 1, 7, 12, 20, 21, 22, 23, 24, 25, 27, 29, 30, 31, 32, 33, 36, 38, 40, 41, 43, 51, 52, 54, 56, 79, 82, 84, 85, 115, 116, 117], "food": 41, "for": [0, 1, 2, 4, 5, 6, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 51, 52, 53, 54, 56, 58, 59, 62, 63, 64, 66, 67, 69, 70, 72, 73, 75, 79, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 93, 98, 102, 103, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 124], "forc": [54, 84], "forecast": 41, "fork": 59, "forlooppipelin": [0, 38, 39, 40, 122], "forlooppipelinenod": [95, 100, 103], "form": 41, "formal": 41, "format": [0, 1, 3, 4, 6, 9, 10, 11, 17, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 36, 37, 41, 42, 43, 54, 56, 59, 67, 73, 79, 94, 110, 112, 114, 115, 117, 119, 123], "format_": 124, "format_exampl": [32, 34], "format_for_common_chat_model": [0, 20, 24], "format_instruct": [0, 32, 33, 34, 36, 37, 115], "format_map": 110, "formatted_str": [0, 17, 18], "former": [51, 53], "forthright": 41, "forward": [20, 25, 41], "fought": 41, "found": [7, 11, 20, 22, 54, 66, 101, 103], "four": 43, "fp_44709d6fcb": [20, 26], "fragment": [14, 15, 16], "frame": 41, "framework": [41, 45], "free": 41, "friend": [41, 54, 85], "from": [1, 2, 3, 4, 6, 7, 11, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 29, 30, 31, 32, 36, 41, 42, 43, 44, 45, 46, 47, 49, 51, 52, 53, 54, 56, 58, 59, 60, 62, 67, 69, 73, 75, 81, 82, 83, 84, 85, 86, 87, 88, 89, 93, 98, 99, 102, 103, 109, 110, 112, 113, 114, 115, 117, 118, 119, 123, 124, 125], "from_dict": [0, 17, 18, 19], "fulfil": 41, "full": [41, 54, 66, 125], "func": [46, 49, 54, 73, 117], "func_nam": [46, 47], "funcpipelin": 113, "function": [0, 1, 2, 3, 4, 6, 7, 11, 13, 14, 15, 16, 17, 18, 20, 21, 22, 24, 32, 35, 36, 38, 40, 41, 42, 43, 45, 46, 47, 50, 51, 53, 54, 56, 58, 59, 69, 70, 73, 75, 79, 85, 86, 91, 93, 98, 101, 102, 109, 111, 112, 113, 115, 116, 117, 118, 125], "function_nam": 98, "functioncallerror": [0, 11, 106], "functioncallformaterror": [0, 11, 106], "functionnotfounderror": [0, 11, 106], "futur": [1, 2, 41, 54, 56, 75], "futurist": [54, 67], "fuzzi": [54, 82], "gain": [41, 110], "galleri": 122, "game": 110, "game_werewolf": [1, 4, 110], "gather": 41, "geekan": 58, "gemini": [20, 22, 109, 116, 119], "gemini_api_key": 114, "gemini_chat": [20, 22, 114, 116], "gemini_embed": [20, 22, 114], "gemini_model": [0, 20], "geminichatwrapp": [0, 20, 22, 114, 116], "geminiembeddingwrapp": [0, 20, 22, 114], "geminiwrapperbas": [0, 20, 22], "general": [3, 111], "generalrespons": [51, 53], "generat": [0, 1, 2, 3, 4, 6, 7, 8, 9, 13, 14, 16, 17, 18, 19, 20, 21, 22, 23, 25, 26, 28, 29, 30, 32, 33, 37, 41, 42, 43, 45, 46, 47, 48, 51, 52, 53, 54, 59, 66, 67, 73, 82, 88, 89, 91, 93, 99, 101, 112, 114, 115], "generate_agent_id": [0, 1, 2], "generate_arg": [20, 21, 23, 24, 26, 30, 110, 114], "generate_cont": [20, 22], "generate_image_from_nam": [95, 96, 99], "generate_jwt": [0, 90, 91], "generate_not": [0, 41, 123], "generate_server_id": [0, 51, 52], "generatecont": [20, 22], "generated_system_prompt": 123, "generation_method": [0, 20, 22], "generatortyp": 116, "generic": [98, 103], "gentl": 41, "geo_location_id": [54, 85], "geo_location_nam": [54, 85], "get": [0, 1, 2, 13, 14, 16, 17, 19, 20, 24, 32, 34, 37, 41, 42, 44, 46, 47, 49, 51, 53, 54, 62, 73, 85, 88, 89, 94, 99, 110, 124], "get_action_funct": [0, 54, 55, 56, 125], "get_ag": [0, 51, 53], "get_agent_class": [0, 1, 2], "get_agent_list": [0, 46, 47, 49, 51, 53, 121], "get_agent_memori": [0, 46, 47, 49, 51, 53, 121], "get_all_ag": [95, 100, 103], "get_chat": [95, 96, 98], "get_chat_msg": [95, 96, 99], "get_config_by_nam": [0, 13], "get_current_directori": [0, 54, 61, 62], "get_embed": [0, 14, 16, 118, 124], "get_help": [0, 54], "get_inst": [0, 13], "get_json": 124, "get_knowledg": [0, 42, 44, 124], "get_memori": [0, 14, 15, 16, 112, 118, 123], "get_model_by_config_nam": [0, 13], "get_openai_max_length": [0, 92, 94], "get_player_input": [95, 96, 99], "get_reset_msg": [95, 96, 99], "get_respons": [0, 46, 47], "get_server_info": [0, 46, 47, 49, 51, 53, 121], "get_task_id": [0, 51, 53], "get_tripadvisor_location_detail": [54, 85], "get_wrapp": [0, 20, 24], "getaway": [54, 85], "git": [108, 125, 127], "github": [1, 4, 20, 22, 25, 45, 58, 59, 81, 88, 89, 93, 108, 110, 125, 127, 128], "give": [41, 54, 66], "given": [1, 2, 7, 8, 9, 13, 20, 21, 31, 41, 54, 56, 60, 66, 67, 81, 83, 84, 86, 87, 88, 89, 90, 93, 98, 99, 101, 102, 103], "glm": [20, 30, 114, 119], "global": [41, 98, 124], "globe": 41, "gluten": 41, "goal": 41, "gone": 111, "good": [32, 37], "googl": [20, 22, 46, 54, 73, 84, 103, 109, 117], "google_search": [0, 54, 80, 84, 117], "googlesearchservicenod": [95, 100, 103], "govern": [54, 84], "gpt": [20, 23, 24, 26, 54, 67, 109, 110, 112, 114, 119, 120, 123], "grace": 41, "gradio": [0, 12, 95], "graph": 102, "grasp": 41, "great": 41, "greater": 110, "grep": [54, 60], "group": [0, 31, 32, 36, 54, 84, 85, 110], "growth": 41, "grpc": [1, 8, 46, 49], "gte": 124, "guid": 41, "guidanc": 41, "habit": 41, "handl": [41, 54, 73, 98, 103, 116], "happen": 41, "hard": [1, 2, 3, 4, 14, 16, 32, 36, 41], "has": [0, 1, 2, 3, 4, 13, 17, 18, 20, 21, 28, 31, 41, 54, 59, 69, 84, 110, 111, 112], "hash": 99, "hasn": 110, "have": [13, 14, 16, 20, 21, 22, 41, 73, 88, 89, 103, 118], "hawkwood": 41, "hd": [54, 67], "hd_1024": 120, "hdr": [54, 67], "header": [20, 24, 27, 114], "heal": 110, "healing_used_tonight": 110, "healthi": 41, "heart": 41, "height": [0, 54, 55, 56, 85], "hello": [20, 25, 26, 54, 67, 111, 115], "helloworld": [54, 58], "helloworldn": [54, 58], "help": [1, 7, 20, 21, 23, 24, 25, 29, 30, 41, 54, 66, 79, 109, 110, 119], "here": [54, 71, 73, 110, 112, 115, 117], "heterogen": [88, 89], "hex": 118, "hf": 124, "hf_endpoint": 124, "hi": [20, 21, 23, 24, 25, 29, 30, 109, 119], "high": [17, 18, 41, 88, 89], "higher": [14, 16, 41], "highest": [54, 69, 88, 89], "hinder": 41, "hint": [1, 9, 32, 33, 34, 37, 110], "hire": 41, "his": 41, "histor": 41, "histori": [20, 21, 23, 24, 25, 29, 30, 41, 90, 110, 119], "hl": [20, 22], "hold": 41, "home": [0, 41, 54, 56, 84], "hong": [54, 82], "honor": 41, "host": [0, 1, 2, 8, 11, 17, 18, 19, 20, 25, 46, 47, 51, 52, 53, 54, 59, 75, 76, 90, 110, 121, 122], "hostmsg": 110, "hostnam": [1, 2, 8, 11, 17, 19, 46, 47, 51, 52, 53, 54, 75, 122], "hous": 41, "how": [6, 14, 15, 16, 20, 21, 23, 24, 25, 26, 29, 30, 41, 54, 66, 67, 82, 111, 116], "how_to_format_inputs_to_chatgpt_model": 118, "howev": [13, 41, 118], "hr": 41, "html": [0, 1, 4, 42, 44, 45, 54, 55, 56, 82, 86, 117, 122, 124, 125], "html_selected_tag": [54, 86], "html_text": [54, 86], "html_to_text": [54, 86], "http": [20, 30, 111, 114, 121, 122, 124], "https": [1, 4, 7, 20, 21, 22, 23, 25, 26, 29, 30, 45, 54, 56, 58, 59, 66, 67, 81, 82, 84, 85, 88, 89, 93, 108, 114, 117, 118, 119, 124, 125, 127], "hu": [54, 82], "hub": [31, 103, 110, 113], "hub_manag": 113, "huggingfac": [24, 109, 114, 124], "human": [41, 59, 93], "human_ev": [59, 93], "humor": 41, "hygien": 41, "i3": [20, 21], "icl": 123, "id": [0, 1, 2, 6, 8, 17, 18, 19, 20, 21, 24, 26, 27, 29, 30, 42, 43, 44, 45, 46, 47, 49, 51, 52, 53, 54, 56, 85, 87, 98, 109, 116, 118, 122, 124], "id_list": [54, 81], "idea": [1, 7, 20, 22, 32, 37], "ident": [17, 18, 19, 110], "identifi": [0, 20, 21, 23, 24, 25, 26, 27, 29, 30, 41, 54, 84, 85, 91, 102, 109, 110], "ids": [1, 6, 42, 44, 54, 81, 98], "idx": 110, "if": [0, 1, 2, 3, 4, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22, 24, 26, 28, 30, 32, 34, 35, 36, 37, 38, 39, 40, 41, 45, 46, 47, 50, 51, 52, 53, 54, 56, 59, 60, 62, 63, 64, 66, 67, 69, 71, 79, 82, 84, 85, 86, 91, 99, 101, 102, 103, 109, 110, 112, 113, 115, 116, 117, 118, 121, 123, 124], "if_body_oper": [38, 39, 40], "ifelsepipelin": [0, 38, 39, 40, 122], "ifelsepipelinenod": [95, 100, 103], "ignor": 112, "illeg": 41, "imag": [13, 20, 21, 26, 28, 54, 59, 66, 67, 71, 85, 98, 99, 114, 117, 118, 119, 120], "image_count": [13, 20, 21, 120], "image_term": 98, "image_to_text": [54, 66], "image_token": [20, 21], "image_url": [20, 28, 54, 66, 67, 119], "image_url1": [54, 66, 67], "image_url2": [54, 66, 67], "imagin": 41, "imbu": 41, "imit": 41, "immedi": [1, 2, 17, 19, 111, 112], "impact": 41, "implement": [1, 2, 5, 7, 20, 21, 23, 24, 25, 29, 30, 38, 40, 54, 56, 58, 59, 73, 81, 93, 103, 110, 112], "import": [0, 1, 13, 14, 20, 38, 41, 42, 44, 45, 46, 51, 54, 56, 58, 59, 88, 90, 98, 109, 110, 111, 112, 113, 114, 115, 117, 119, 120, 121, 122, 123, 124, 125], "import_function_from_path": [95, 96, 98], "importantand": [54, 86], "importerror": 93, "importerrorreport": [0, 92, 93], "impos": [54, 59], "improv": [41, 54, 67], "in": [0, 1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 51, 52, 53, 54, 56, 58, 59, 66, 67, 69, 73, 75, 76, 77, 79, 81, 82, 84, 85, 86, 87, 88, 89, 91, 93, 94, 97, 99, 102, 103, 109, 110, 112, 113, 114, 115, 116, 117, 118, 121, 124], "in_subprocess": [51, 52], "includ": [0, 1, 2, 8, 12, 13, 17, 18, 20, 30, 38, 40, 41, 54, 56, 60, 62, 63, 64, 82, 84, 85, 102, 117], "including_self": [1, 8], "incompet": 41, "incorpor": 41, "incorrect": [88, 89], "increas": 41, "increment": [51, 53], "indent": 120, "independ": 41, "index": [14, 15, 16, 20, 21, 23, 26, 29, 30, 41, 42, 43, 44, 45, 54, 81, 82, 117, 118], "indic": [11, 14, 15, 16, 20, 21, 41, 46, 47, 54, 62, 63, 64, 82, 111], "individu": [54, 84], "indpend": 121, "industri": 41, "inf": [88, 89], "infer": [24, 27, 109, 114], "influenc": 41, "influenti": 41, "info": [0, 12, 13, 102, 111, 120], "inform": [1, 7, 9, 13, 17, 18, 19, 20, 22, 41, 45, 46, 47, 49, 51, 53, 54, 56, 79, 81, 82, 84, 85, 86, 88, 89, 102, 103, 110, 111, 112, 118], "ingredi": 41, "inhabit": 41, "inherit": [1, 2, 20, 24], "init": [0, 1, 2, 8, 11, 13, 20, 30, 41, 46, 47, 51, 52, 53, 54, 58, 90, 93, 106, 109, 110, 111, 114, 120, 121, 122, 123], "init_arg": 124, "init_uid_list": [95, 96, 98], "init_uid_queu": [95, 96, 99], "initi": [0, 1, 2, 3, 4, 6, 7, 8, 9, 11, 13, 17, 18, 20, 21, 22, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 40, 41, 42, 43, 44, 45, 54, 56, 73, 98, 99, 101, 102, 103, 110, 112, 113, 118, 119], "initial_announc": 113, "inner": 41, "inner_text": [0, 54, 55, 56], "innoc": 41, "innov": 41, "input": [1, 2, 3, 4, 6, 8, 9, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 38, 39, 40, 41, 46, 47, 51, 52, 54, 67, 79, 86, 88, 89, 98, 99, 102, 103, 112, 114, 117, 123, 124], "input_dir": 124, "input_hint": [1, 9], "input_ob": [54, 58], "input_token": [20, 21], "inquir": 41, "inquiri": 41, "insecur": 49, "insert": [54, 56], "insight": 41, "inspect": 117, "inspir": 41, "instal": [25, 54, 56, 93, 108, 125, 127], "instanc": [1, 2, 8, 11, 13, 17, 19, 41, 46, 47, 51, 53, 88, 89, 90, 102], "instanti": [42, 43], "instead": 13, "instruct": [1, 4, 32, 33, 34, 36, 37, 41, 54, 67, 73, 79, 88, 89, 114, 115, 124], "instruction_format": 115, "insur": 41, "int": [1, 2, 4, 6, 7, 8, 9, 11, 13, 14, 15, 16, 17, 19, 20, 23, 27, 29, 38, 39, 40, 41, 42, 43, 45, 46, 47, 51, 52, 53, 54, 56, 58, 59, 66, 67, 69, 73, 75, 76, 77, 79, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 99, 117, 118, 124], "integ": [20, 23], "integr": 45, "intel": [54, 82], "intellig": [54, 82], "intent": 41, "intenum": [10, 54, 72, 103], "interact": [11, 38, 40, 41, 54, 56, 58, 59, 60, 112], "interest": 41, "interf": 59, "interfac": [38, 40, 98, 103], "intermedi": 41, "intern": [41, 88, 89, 112], "interpret": 41, "interv": [20, 27], "into": [1, 2, 8, 9, 12, 13, 17, 18, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 35, 41, 43, 45, 54, 56, 62, 64, 66, 73, 88, 89, 110], "introduc": 41, "introduct": 41, "invalid": 91, "invest": 41, "investopedia": [54, 84], "invoc": [0, 13], "invok": [1, 3, 4, 6, 41, 54, 60, 86, 103, 112], "invoke_dir": [0, 13], "involv": [32, 37], "io": [1, 4], "ip": [1, 2, 54, 75, 76, 121, 122], "ip_a": 121, "ip_b": 121, "ipython": [54, 58, 59, 117], "is": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 34, 36, 37, 38, 40, 41, 45, 46, 47, 49, 50, 51, 53, 54, 56, 59, 63, 66, 67, 69, 71, 73, 75, 79, 81, 82, 84, 85, 86, 88, 89, 91, 93, 99, 101, 102, 103, 109, 110, 111, 112, 115, 116, 117, 118, 119, 121, 123], "is_al": [0, 46, 47, 49, 51, 53, 121], "is_bless": [54, 85], "is_callable_express": [95, 100, 104], "is_click": [0, 54, 55, 56], "is_initi": [0, 13], "is_play": 99, "is_serializ": [0, 50, 106], "is_stream_exhaust": [0, 20, 28], "is_valid_url": [54, 80, 86], "isinst": [112, 116, 124], "island": [54, 85], "isn": 111, "iso": [54, 67, 85], "issu": [32, 37, 41, 111], "it": [0, 1, 2, 4, 8, 9, 12, 14, 15, 16, 20, 21, 22, 25, 26, 28, 30, 31, 32, 33, 34, 35, 36, 37, 41, 45, 46, 47, 54, 56, 59, 62, 63, 64, 73, 82, 84, 86, 87, 88, 89, 93, 101, 103, 110, 112, 117, 118, 119], "item": [54, 82, 85, 93, 117, 118], "iter": [1, 7, 14, 15, 16, 103, 118], "itinerari": 41, "its": [1, 2, 3, 14, 16, 24, 41, 54, 56, 62, 73, 75, 82, 102, 118], "itself": [14, 16], "jargon": 41, "jif": [54, 82], "job": [41, 54, 86], "john": 41, "johnson": 41, "join": [110, 117, 123], "journal": [54, 82], "journey": 41, "joy": 41, "jpg": [54, 66, 67, 85, 109, 119], "jr": [54, 81], "json": [0, 1, 4, 10, 11, 20, 21, 22, 23, 25, 26, 27, 29, 30, 32, 34, 36, 37, 41, 50, 51, 52, 54, 61, 73, 84, 85, 86, 91, 101, 109, 110, 112, 117, 118, 120, 121, 122, 124], "json_arg": [20, 27, 124], "json_object_pars": [0, 32], "json_required_hint": [0, 32, 37], "json_schema": [0, 54, 73, 117], "jsondecodeerror": [1, 4], "jsondictvalidationerror": [0, 11, 106], "jsonparsingerror": [0, 11, 106], "jsontypeerror": [0, 11, 106], "jupyt": [54, 58], "just": [14, 15, 16, 38, 39, 40], "justic": 41, "jwt": 91, "k1": [38, 40], "k2": [38, 40], "keen": 41, "keep": [20, 21, 22, 41, 54, 79, 86, 115], "keep_al": [20, 25, 114], "keep_raw": [54, 86], "kernel": [54, 82], "keskin": [54, 82], "keskinday21": [54, 82], "key": [1, 9, 17, 18, 20, 21, 23, 26, 27, 29, 30, 32, 34, 35, 36, 37, 41, 42, 44, 54, 56, 66, 67, 73, 79, 84, 85, 86, 87, 91, 103, 109, 112, 114, 115, 117, 118, 119, 121], "keya": [54, 56], "keyerror": 118, "keys_allow_miss": [32, 37], "keys_to_cont": [32, 34, 35, 36, 37, 110, 115], "keys_to_memori": [32, 34, 35, 36, 37, 110, 115], "keys_to_metadata": [32, 34, 35, 36, 37, 115], "keyword": [20, 21, 23, 25, 26, 30, 41, 54, 84, 87, 117], "keyz": [54, 56], "kill": [59, 110], "kind": [38, 40], "king": 41, "kingdom": 41, "kingsley": 41, "kitchen": 41, "knight": 41, "knighthood": 41, "know": [32, 36, 41, 110], "knowledg": [0, 1, 6, 41, 42, 44, 45, 54, 69], "knowledge_bank": [0, 42, 124], "knowledge_config": [42, 43, 44, 45, 124], "knowledge_id": [42, 43, 44, 45, 124], "knowledge_id_list": [1, 6, 42, 44, 124], "knowledge_list": [1, 6, 124], "knowledgebank": [0, 42, 44, 124], "knowledgebas": [42, 44], "known": [32, 36, 41], "kong": [54, 82], "kwarg": [1, 2, 3, 4, 6, 7, 8, 9, 12, 13, 17, 18, 20, 21, 22, 23, 24, 25, 26, 27, 30, 42, 43, 45, 54, 73, 75, 76, 77, 84, 102, 104, 112, 114, 117, 118, 123], "kwarg_convert": [95, 100, 104], "lab": [54, 82], "label": [54, 56], "lace": 41, "lack": 41, "ladi": 41, "lambda": [38, 39, 40], "lancelot": 41, "land": 41, "langchain": 124, "languag": [1, 3, 4, 6, 32, 33, 41, 45, 54, 67, 85, 112, 124], "language_nam": [32, 33, 115], "larg": [20, 29, 41, 54, 85, 114], "last": [12, 14, 16, 20, 21, 88, 89, 116], "last_chunk": 116, "latenc": [54, 67], "latest": [20, 25, 41, 88, 89], "latitud": [54, 85], "launch": [0, 1, 2, 8, 51, 52, 101, 121], "launch_serv": [1, 2], "launcher": [0, 51], "layer": [54, 59], "lazy_launch": [1, 2, 8], "lead": [1, 9, 41], "learn": [41, 54, 81, 82, 84, 87, 110, 117], "least": 41, "leav": [54, 75], "lecun": [54, 81], "led": 41, "legendari": 41, "length": [20, 27, 41, 54, 58, 94], "less": [54, 79], "level": [0, 12, 41, 54, 85, 120], "leverag": [88, 89], "li": [54, 86], "librari": [20, 25, 41], "licens": [81, 107], "lie": 41, "life": [41, 110], "lihong": [54, 82], "like": [20, 23, 38, 39, 40, 41], "limit": [1, 9, 41, 54, 59, 79, 93], "line": [41, 51, 52, 99, 101, 112], "lingyiwanwu": [20, 29], "link": [54, 56, 84, 86], "linux": 0, "list": [0, 1, 6, 8, 9, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 41, 42, 43, 44, 45, 46, 47, 49, 51, 52, 53, 54, 56, 62, 66, 67, 69, 70, 73, 81, 82, 84, 85, 88, 89, 90, 94, 98, 99, 102, 103, 104, 110, 112, 113, 114, 115, 118, 119, 124, 125], "list_directory_cont": [0, 54, 61, 62], "list_model": [20, 22], "list_of_iso_639": [54, 67], "listen": [1, 2, 8, 51, 52], "lite_llm_openai_chat_gpt": 114, "litellm": [20, 23, 116, 119], "litellm_chat": [20, 23, 114, 116], "litellm_model": [0, 20], "litellmchatmodelwrapp": 114, "litellmchatwrapp": [0, 20, 23, 114, 116], "litellmwrapperbas": [0, 20, 23], "liter": [0, 12, 13, 17, 18, 19, 41, 54, 66, 67, 102, 111], "literatur": 41, "littl": [41, 54, 75], "liu": [54, 82], "ll": 41, "llama": [42, 44, 45, 114], "llama2": [114, 119], "llama3": [20, 25], "llama_index": [45, 124], "llama_index_knowledg": [0, 42, 124], "llamaindex": [1, 6, 45, 124], "llamaindexag": [0, 1, 6, 124], "llamaindexknowledg": [0, 42, 45], "llm": [0, 32, 34, 36, 37, 41, 42, 43, 44, 45, 54, 87, 115, 117, 119, 123, 124], "llms": [20, 23, 88, 89, 119], "load": [0, 1, 2, 3, 4, 7, 13, 14, 15, 16, 20, 22, 25, 32, 37, 41, 42, 43, 45, 52, 54, 56, 101, 103, 115, 117, 118, 124], "load_agents_from_dir": [0, 51, 52], "load_agents_from_fil": [0, 51, 52], "load_config": [95, 100, 101], "load_data": 124, "load_dict": [0, 13], "load_dur": [20, 25], "load_model_config": [0, 13], "load_web": [0, 54, 80, 86, 117], "loader": [42, 44, 45, 124], "local": [0, 1, 2, 8, 12, 13, 20, 21, 41, 46, 47, 51, 52, 53, 54, 67], "local_embedding_model": [41, 123], "local_mod": [1, 2, 8, 51, 52], "localhost": [1, 2, 8, 51, 52, 53, 54, 76], "localized_nam": [54, 85], "locat": [17, 19, 54, 83, 85], "location_id": [54, 85], "log": [0, 13, 106], "log_gradio": [0, 12, 106], "log_level": [0, 111], "log_msg": [0, 12, 106], "log_retriev": [1, 6, 124], "log_stream_msg": [0, 12, 106, 116], "logger": [0, 12, 118, 120], "logger_level": [0, 13, 110, 111], "logic": [1, 5, 38, 40, 41, 103, 110, 112], "login": 91, "logprob": [20, 26], "loguru": [12, 111], "long": [10, 20, 25, 41, 54, 87], "longitud": [54, 85], "loop": [1, 7, 38, 39, 40, 103], "loop_body_oper": [38, 39, 40], "lord": 41, "los": [20, 29], "love": 41, "low": 41, "loyal": 41, "loyalti": 41, "ls": [54, 60, 62], "lst": 102, "ltd": [54, 82], "lukasschwab": 81, "lynch": 110, "maa": [20, 30], "mac": [0, 108], "machin": [46, 47, 54, 82, 87], "machine1": 121, "machine2": 121, "machine_learn": [54, 87], "machinesand": [54, 82], "made": [54, 56, 67], "magic": 41, "main": [20, 25, 28, 54, 56, 58, 95, 100, 101, 110, 121, 127], "main_model": [88, 89], "maintain": [41, 118], "mainthread": 93, "majority_vot": 110, "make": [20, 22, 41, 42, 44, 88, 89], "manag": [0, 31, 32, 36, 41, 93, 103, 106, 120, 121], "mani": [54, 75, 76], "manner": 41, "map": [38, 39, 40, 54, 56], "mari": 41, "mark": [54, 56], "markdown": [32, 33, 34, 41, 54, 56, 115, 125], "markdowncodeblockpars": [0, 32, 33], "markdownifi": 125, "markdownjsondictpars": [0, 32, 34, 110], "markdownjsonobjectpars": [0, 32, 34], "market": 41, "martial": 41, "mask": [54, 67], "mask_imag": [54, 67], "mask_url": [54, 67], "master": [41, 59, 93], "masteri": 41, "match": [14, 15, 16, 41, 54, 85, 110], "materi": 41, "math": 41, "matplotlib": [54, 59], "matter": 41, "max": [1, 2, 8, 51, 52, 53, 94, 114, 119, 120], "max_game_round": 110, "max_it": [1, 7], "max_iter": 113, "max_length": [20, 24, 27, 124], "max_length_of_model": 24, "max_loop": [38, 39, 40], "max_memb": [54, 87], "max_pool_s": [1, 2, 8, 51, 52, 53], "max_result": [54, 81], "max_retri": [1, 4, 20, 24, 27, 114], "max_return_token": [54, 79], "max_timeout_second": [1, 2, 8, 51, 52, 53], "max_token": [20, 29], "max_werewolf_discussion_round": 110, "maxcount_result": [54, 75, 76, 77], "maxim": 41, "maximum": [1, 2, 4, 7, 20, 27, 29, 38, 39, 40, 51, 52, 53, 54, 59, 69, 75, 76, 77, 81, 87], "maximum_memory_byt": [54, 59], "may": [20, 21, 22, 26, 41, 54, 73, 84, 88, 89, 102, 114], "mayb": [1, 7, 20, 21, 23, 24, 25, 29, 30, 32, 37, 54, 87], "md": [20, 25, 42, 44, 114, 124], "mean": [0, 1, 2, 7, 14, 16, 17, 18, 31, 54, 87], "measur": 41, "mechan": [41, 54, 87], "media": [41, 54, 85], "mediev": 41, "medium": [20, 29, 54, 85, 114], "meet": [38, 39, 40, 41, 119], "mem": 121, "member": [54, 87], "memori": [0, 1, 2, 3, 4, 6, 8, 9, 20, 25, 32, 35, 36, 41, 42, 43, 46, 47, 49, 51, 53, 54, 59, 69, 105, 106, 107, 112, 115, 116, 121, 123], "memorybas": [0, 14, 15, 16], "men": 41, "mention": 41, "mentor": 41, "mer": [54, 82], "mercenari": 41, "merg": [20, 21], "messag": [0, 1, 2, 3, 4, 6, 8, 9, 11, 12, 14, 15, 16, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 35, 36, 46, 47, 51, 52, 53, 54, 60, 62, 63, 64, 69, 71, 75, 76, 77, 79, 82, 83, 98, 99, 100, 103, 105, 106, 109, 110, 112, 113, 114, 117, 119, 123, 124], "message_from_alic": 109, "message_from_bob": 109, "messages_key": [20, 27, 114], "meta": [41, 54, 56, 82, 114, 123], "meta_data": [0, 54, 55, 56], "meta_prompt": [41, 123], "meta_prompt_templ": 41, "metadata": [0, 17, 18, 19, 49, 54, 56, 110, 115], "metagpt": 58, "method": [1, 2, 5, 7, 8, 9, 14, 15, 16, 17, 19, 20, 22, 26, 32, 34, 35, 36, 37, 41, 54, 56, 82, 102, 103, 112, 124, 125], "meticul": 41, "metric": [11, 14, 16], "microsoft": [54, 84, 117], "midterm": 41, "might": [41, 110], "militari": 41, "mine": [20, 21], "mini": [20, 26], "minilm": [20, 25], "minus": [54, 56], "mirror": 124, "mislead": 41, "miss": [11, 32, 34, 37, 93, 112], "missing_begin_tag": [0, 11], "missing_end_tag": [0, 11], "mistak": 41, "misunderstand": [20, 21, 41], "misunderstood": 41, "mit": 81, "mix": 89, "mixin": 35, "mixture_of_ag": [0, 88], "mixtureofag": [0, 88, 89], "mkt": [54, 84], "moa": [88, 89], "mock": 41, "mode": [13, 20, 22, 23, 25, 26, 30, 51, 52, 90, 121], "model": [0, 1, 2, 3, 4, 6, 7, 10, 11, 13, 14, 16, 32, 33, 34, 35, 36, 37, 41, 42, 43, 44, 45, 46, 47, 49, 51, 52, 53, 54, 56, 66, 67, 69, 73, 79, 86, 88, 89, 94, 100, 102, 103, 105, 106, 107, 109, 110, 112, 115, 116, 117, 119, 120, 121, 122, 123], "model_computed_field": [0, 54, 55, 56], "model_config": [0, 13, 46, 47, 54, 55, 56, 109, 110, 114, 116, 120, 121, 123], "model_config_nam": [1, 2, 3, 4, 6, 7, 41, 109, 110, 112, 121, 123, 124], "model_config_or_path": 114, "model_config_path_a": 121, "model_config_path_b": 121, "model_configs_templ": 121, "model_field": [0, 54, 55, 56], "model_nam": [0, 13, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 42, 44, 94, 109, 110, 114, 119, 120, 123], "model_name_for_openai": 24, "model_name_or_path": 124, "model_or_model_config_nam": [41, 123], "model_respons": 117, "model_typ": [0, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 109, 110, 114, 116, 121, 123], "modelmanag": [0, 13], "modelnod": [95, 100, 103], "modelrespons": [0, 20, 21, 28, 32, 33, 34, 35, 36, 37, 115], "modelscop": [1, 4, 108, 109, 114, 124, 125], "modelscope_cfg_dict": 109, "modelwrapp": 114, "modelwrapperbas": [0, 13, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 41, 42, 43, 45, 54, 69, 79, 86, 88, 89, 114], "moder": 110, "modifi": [1, 7, 59], "modul": [105, 106, 124, 125], "module_nam": 98, "module_path": 98, "monasteri": 41, "mongodb": [54, 74, 117], "monitor": [0, 13, 120], "monitormanag": [0, 13], "more": [0, 1, 7, 20, 21, 22, 23, 31, 32, 36, 41, 42, 44, 45, 54, 66, 67, 84, 85, 88, 89, 117], "most": [1, 6, 14, 15, 41, 42, 43, 45, 51, 52, 110], "motiv": 41, "mountain": [54, 66], "move": [54, 62], "move_directori": [0, 54, 61, 62, 117], "move_fil": [0, 54, 61, 62, 117], "mp3": [54, 67, 119], "mpnet": [41, 123], "msg": [0, 1, 2, 3, 4, 6, 7, 8, 9, 12, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 41, 46, 47, 50, 54, 73, 93, 98, 99, 109, 110, 111, 112, 113, 115, 116, 117, 119, 121, 123], "msg1": 121, "msg2": 121, "msg_hub": 113, "msg_id": 99, "msghub": [0, 105, 106, 109, 122, 129], "msghubmanag": [0, 31, 106, 113], "msghubnod": [95, 100, 103], "msgnode": [95, 100, 103], "much": [0, 31], "muhammet": [54, 82], "multi": [20, 22, 41, 105, 107, 108, 113, 121, 126, 129], "multi_mod": [0, 54], "multimod": [17, 18, 20, 21, 54, 66, 114], "multipl": [1, 6, 15, 20, 21, 32, 36, 37, 38, 39, 40, 42, 44, 54, 66, 88, 89, 103], "multitaggedcontentpars": [0, 32, 37], "must": [14, 15, 16, 17, 18, 20, 21, 22, 23, 32, 37, 41, 54, 85, 110, 115], "my": [41, 123], "my_ag": [51, 52, 121], "my_arg1": 114, "my_arg2": 114, "my_dashscope_chat_config": 114, "my_dashscope_image_synthesis_config": 114, "my_dashscope_multimodal_config": 114, "my_dashscope_text_embedding_config": 114, "my_gemini_chat_config": 114, "my_gemini_embedding_config": 114, "my_model": 114, "my_model_config": 114, "my_ollama_chat_config": 114, "my_ollama_embedding_config": 114, "my_ollama_generate_config": 114, "my_openai": 121, "my_postapiwrapper_config": 114, "my_zhipuai_chat_config": 114, "my_zhipuai_embedding_config": 114, "myagent": [110, 116, 121, 123], "mymodelwrapp": 114, "mysql": [54, 74, 75, 117], "mysteri": 41, "mysystempromptgener": 123, "n1": [41, 110], "n2": [41, 110], "n2s": 110, "n3": 41, "n4": 41, "n5": 41, "n6": 41, "n7": 41, "n8": 41, "n9": 41, "nalic": 119, "name": [0, 1, 2, 3, 4, 6, 7, 8, 9, 11, 13, 14, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 32, 33, 34, 36, 37, 41, 42, 44, 46, 47, 54, 56, 58, 59, 73, 75, 76, 77, 79, 82, 85, 88, 89, 99, 101, 102, 107, 109, 110, 111, 112, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 127], "name1": [32, 36], "name2": [32, 36], "namespac": [54, 87], "nanyang": [54, 82], "narrow": 41, "nation": [54, 82], "nativ": [54, 59], "natur": [41, 54, 59, 67, 85], "nature_park": [54, 85], "navig": 41, "nbe": [54, 58], "nbelief": 41, "nbob": 119, "ncharact": 41, "nconstraint": 110, "ndarray": 13, "near": 41, "necessari": [41, 73, 102, 117], "need": [1, 2, 3, 4, 6, 7, 8, 9, 14, 16, 17, 18, 20, 23, 24, 41, 45, 51, 52, 54, 67, 79, 87, 103, 112], "negative_prompt": 114, "neighborhood_info": [54, 85], "neither": [54, 85], "networkx": 102, "neutral": 41, "new": [14, 15, 16, 31, 41, 46, 47, 49, 51, 53, 54, 62], "new_ag": 113, "new_particip": [31, 113], "next": [41, 99, 103, 110], "nfor": 110, "nfrom": 41, "ngame": 110, "nice": 119, "nif": 41, "night": 110, "nin": [41, 110], "nmari": 41, "nnow": 41, "no": [1, 9, 41, 54, 59, 69, 82, 101, 110, 118], "nobil": 41, "nobl": 41, "node": [54, 56, 102, 103, 104, 124], "node_id": [102, 103], "node_info": 102, "node_nam": [0, 54, 55, 56], "node_pars": 124, "node_typ": [100, 103], "node_valu": [0, 54, 55, 56], "nodes_not_in_graph": [100, 102], "nodewithscor": 45, "non": [54, 59, 102], "none": [0, 1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 51, 52, 53, 54, 56, 58, 59, 66, 67, 69, 73, 75, 76, 77, 81, 85, 86, 88, 89, 90, 91, 93, 98, 99, 101, 102, 103, 109, 110, 112, 113, 115, 116, 117, 118, 119, 121, 123], "nonetyp": [54, 56], "nonsens": 41, "nor": [54, 85], "normal": [17, 18, 54, 67], "not": [1, 2, 4, 11, 13, 14, 15, 16, 20, 21, 22, 23, 24, 25, 26, 29, 30, 32, 36, 37, 38, 39, 40, 41, 51, 52, 54, 59, 60, 66, 67, 73, 85, 86, 88, 89, 102, 110, 112, 115, 117], "note": [1, 2, 12, 13, 20, 21, 23, 24, 25, 29, 30, 32, 36, 41, 46, 47, 51, 52, 53, 54, 60, 87, 110, 114, 115, 121, 123], "notebook": [54, 58], "notebookexecutor": [0, 54, 57, 58, 117], "noth": [38, 39, 40], "notic": [6, 14, 15, 16, 54, 79], "notifi": [1, 2], "notimplementederror": [112, 118], "noun": [54, 84], "nova": [54, 67], "now": [41, 50, 54, 75, 124], "np": 13, "nperson": 41, "nplayer": 110, "npleas": 41, "nrais": 41, "nrespons": [88, 89], "ns": [54, 87], "nseer": 110, "nsinc": 41, "nskill": 41, "nstrength": 41, "nsummar": [54, 79], "nthe": [41, 110], "nthere": 110, "null": [20, 21, 26, 120], "num_complet": [54, 82], "num_dot": 99, "num_inst": [1, 8], "num_result": [54, 73, 82, 84, 117], "num_review": [54, 85], "num_tokens_from_cont": [0, 92, 94], "number": [1, 2, 4, 6, 7, 8, 14, 15, 16, 20, 27, 29, 32, 36, 38, 39, 40, 41, 42, 43, 45, 51, 52, 53, 54, 66, 67, 69, 70, 73, 75, 76, 77, 79, 81, 82, 83, 84, 87, 88, 89, 93, 110, 115, 117], "numer": 41, "nurtur": 41, "nuser": 119, "nutrit": 41, "nvictori": 110, "nvillag": 110, "nweak": 41, "nwerewolv": 110, "nwitch": 110, "nyou": [41, 54, 79, 110], "nyour": 41, "obj": [17, 18, 50], "object": [0, 1, 2, 6, 7, 9, 11, 12, 13, 14, 16, 17, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 37, 41, 42, 44, 45, 46, 47, 49, 50, 51, 52, 54, 56, 58, 71, 73, 75, 76, 77, 83, 86, 88, 89, 93, 102, 103, 112, 115, 117, 118, 119, 124], "observ": [0, 1, 2, 8, 31, 110, 112, 113], "obtain": [1, 6, 13, 41, 51, 52, 54, 85, 86], "obvious": 41, "occas": 41, "occasion": 41, "occur": 112, "of": [0, 1, 2, 3, 4, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 51, 52, 53, 54, 56, 58, 59, 62, 64, 66, 67, 69, 71, 73, 75, 76, 77, 79, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 93, 94, 99, 102, 103, 110, 111, 114, 115, 116, 117, 118, 119, 125], "off": 43, "offer": [41, 88, 89], "offici": [66, 67], "often": [41, 118], "ok": 121, "old": [14, 15, 16, 41], "oldest": [1, 2, 51, 52, 53], "ollama": [20, 25, 116, 119], "ollama_chat": [20, 25, 114, 116], "ollama_embed": [20, 25, 114], "ollama_gener": [20, 25, 114], "ollama_model": [0, 20], "ollamachatwrapp": [0, 20, 25, 114, 116], "ollamaembeddingwrapp": [0, 20, 25, 114], "ollamagenerationwrapp": [0, 20, 25, 114], "ollamawrapperbas": [0, 20, 25], "omit": [1, 2, 3, 4, 6, 8, 9, 112, 117], "on": [1, 2, 6, 8, 9, 14, 15, 16, 17, 19, 20, 22, 23, 27, 38, 39, 40, 41, 42, 43, 45, 46, 47, 49, 51, 53, 54, 56, 58, 66, 67, 81, 82, 84, 85, 99, 101, 102, 103, 110, 112], "onc": 41, "one": [0, 12, 14, 15, 16, 20, 21, 22, 24, 31, 41, 45, 54, 69, 99, 103, 110, 112], "onli": [1, 2, 4, 7, 8, 17, 18, 20, 21, 41, 51, 52, 54, 59, 75, 93, 110, 118], "onlin": 41, "onyx": [54, 67], "open": [20, 30, 32, 34, 54, 73, 79, 88, 89], "openai": [20, 23, 24, 26, 27, 54, 59, 67, 73, 93, 94, 109, 110, 116, 117, 118, 119, 123], "openai_api_key": [20, 23, 26, 109, 114], "openai_audio_to_text": [0, 54, 65, 67, 117], "openai_cfg_dict": 109, "openai_chat": [20, 24, 26, 109, 110, 114, 116, 121, 123], "openai_create_image_vari": [0, 54, 65, 67, 117], "openai_dall_": [20, 26, 109, 114], "openai_edit_imag": [0, 54, 65, 67, 117], "openai_embed": [20, 26, 109, 114], "openai_image_to_text": [0, 54, 65, 67, 117], "openai_model": [0, 20], "openai_organ": [20, 26, 109], "openai_servic": [54, 65], "openai_text_to_audio": [0, 54, 65, 67, 117], "openai_text_to_imag": [0, 54, 65, 67, 117], "openaichatwrapp": [0, 20, 26, 114, 116], "openaidallewrapp": [0, 20, 26, 114], "openaiembeddingwrapp": [0, 20, 26, 114], "openaiwrapp": 114, "openaiwrapperbas": [0, 20, 26], "oper": [0, 1, 2, 38, 39, 40, 54, 56, 59, 62, 63, 64, 75, 81, 102, 103, 112, 113], "opinion": 41, "opposit": [54, 82], "opt": 103, "opt_kwarg": 103, "opt_prompt": [41, 123], "optim": 41, "optimist": 41, "option": [0, 1, 2, 3, 4, 6, 8, 9, 13, 14, 15, 16, 17, 18, 19, 20, 25, 28, 29, 31, 32, 33, 34, 35, 36, 37, 38, 39, 41, 42, 44, 45, 46, 47, 49, 51, 52, 54, 59, 66, 67, 69, 73, 81, 85, 86, 90, 91, 103, 110, 112, 113, 114, 115, 116, 117, 118, 123], "opus": [54, 67], "or": [0, 1, 2, 3, 4, 9, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 54, 56, 60, 62, 64, 66, 67, 75, 76, 77, 81, 82, 83, 84, 85, 86, 88, 89, 91, 99, 103, 109, 110, 112, 115, 117, 118, 121], "orat": 41, "order": [14, 16, 20, 21, 54, 69, 102, 110], "org": [1, 7, 54, 67, 82], "organ": [15, 20, 24, 26, 41, 54, 84, 109, 110, 114], "origin": [14, 16, 41, 46, 47, 51, 53, 54, 56, 69, 73, 85, 93], "origin_i": [0, 54, 55, 56], "origin_x": [0, 54, 55, 56], "original_func": [54, 73], "original_imag": [54, 67], "os": [20, 23, 54, 59, 124], "other": [0, 1, 2, 8, 20, 30, 31, 32, 35, 36, 37, 41, 54, 59, 75, 82, 85, 112, 115, 118], "otherwis": [0, 1, 2, 12, 14, 15, 16, 20, 21, 51, 52, 54, 56, 71, 73, 79, 86, 117], "our": [1, 4, 20, 22], "out": [1, 2, 7, 9, 38, 39, 40], "outburst": 41, "outlin": [32, 37, 115], "outlook": 41, "output": [0, 1, 2, 3, 4, 6, 8, 9, 20, 21, 23, 31, 38, 39, 40, 41, 54, 58, 59, 60, 67, 73, 86, 87, 102, 103], "output_token": [20, 21], "over": [41, 103], "overload": 41, "overrid": 0, "overridden": [1, 5], "overview": 67, "overwrit": [14, 15, 16, 45, 54, 63, 64, 118], "overwrite_index": 45, "own": [1, 7, 20, 21, 23, 24, 25, 29, 30, 41, 45], "paa": [20, 30], "packag": [43, 45, 50, 56, 93, 105, 106, 121, 122], "page": [54, 56, 82, 86, 87], "page_": 125, "page_html": [0, 54, 55, 56, 125], "page_markdown": [0, 54, 55, 56, 125], "page_screenshot": [0, 54, 55, 56], "page_titl": [0, 54, 55, 56, 125], "page_url": [54, 56, 125], "pagedown": [54, 56], "pageid": [54, 87], "pageup": [54, 56], "paper": [1, 7, 54, 81, 82, 88, 89], "paragon": 41, "param": [1, 6, 14, 15, 16, 32, 34, 36, 37, 41, 42, 43, 44, 45, 54, 58, 67, 86, 117], "paramet": [0, 1, 2, 17, 19, 20, 24, 29, 54, 84, 86, 114, 117], "params_prompt": 117, "parent": [41, 103], "parent_dir_of_agent_a_and_b": 121, "park": [54, 85], "pars": [0, 1, 4, 11, 20, 28, 32, 33, 34, 35, 36, 37, 54, 63, 73, 82, 86, 101, 115, 117], "parse_and_call_func": [0, 54, 58, 73, 117], "parse_arg": 124, "parse_func": [20, 27, 115], "parse_html_to_text": [0, 54, 80, 86], "parse_json": [0, 32, 37, 115], "parsed_respons": 35, "parser": [0, 1, 4, 28, 105, 106, 115, 124], "parser_bas": [0, 32], "parserbas": [0, 1, 4, 32, 33, 34, 35, 36, 37, 115], "part": [1, 6, 41, 103, 119], "parti": [20, 22], "partial": 58, "particip": [0, 31, 38, 39, 103, 110, 113], "pass": [0, 1, 2, 3, 4, 6, 14, 15, 16, 20, 22, 31, 45, 54, 73, 103, 110, 117], "passion": 41, "password": [54, 76], "path": [0, 13, 14, 15, 16, 41, 42, 44, 46, 47, 51, 52, 53, 54, 62, 63, 64, 66, 67, 83, 98, 99, 101, 109, 121], "path_db": [0, 13, 120], "path_log": 12, "path_sav": 111, "path_to_gte_qwen2_7b_instruct": 124, "path_to_your_data_dir_1": 124, "path_to_your_python_code_data_dir": 124, "patient": 41, "pattern": [32, 36], "payload": 91, "pcm": [54, 67], "pdf": 124, "peer": 41, "peerless": 41, "percept": 41, "perform": [1, 3, 41, 54, 82, 88, 89, 102, 103, 110], "period": 41, "permiss": [54, 84], "persist": 45, "persist_dir": [42, 44], "persist_root": 45, "person": [41, 54, 84, 110], "pessimist": 41, "phase": 110, "phenomenon": [54, 84], "photo": [54, 85], "photo0": [54, 85], "photo_count": [54, 85], "photo_data": [54, 85], "phrase": 41, "physic": 41, "pictur": [20, 21, 109, 119], "pid": [54, 82, 120], "piec": [1, 6, 14, 15, 54, 59], "pip": [54, 56, 125, 127], "pipe": [110, 113], "pipe1": 113, "pipe2": 113, "pipe3": 113, "pipelin": [0, 42, 100, 103, 105, 106, 107, 109, 122, 129], "pipelinebas": [0, 5, 38, 40, 113], "piplin": 45, "placehold": [0, 17, 18, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 38, 39, 40, 41, 46, 47, 51, 53, 93, 103, 113], "placeholdermessag": [0, 17, 19, 46, 47, 49], "placeholdernod": [95, 100, 103], "plain": [1, 4], "plan": 41, "platform": [20, 26, 29, 41, 67], "play": [41, 110, 118], "playback": [54, 67], "player": [98, 99, 110], "player1": 110, "player2": 110, "player3": 110, "player4": 110, "player5": 110, "player6": 110, "player_nam": 110, "playwright": [54, 56, 125], "pleas": [1, 4, 20, 23, 25, 41, 51, 52, 54, 60, 66, 82, 84, 117], "pledg": 41, "plot": [41, 54, 59], "plt": [54, 59], "plus": [20, 21, 54, 66, 114, 119], "png": [54, 67, 119], "point": [41, 54, 56, 67, 90, 98], "poison": 110, "pool": [1, 2, 51, 52, 53], "pop": [110, 124], "popular": 41, "port": [0, 1, 2, 8, 11, 17, 18, 19, 20, 25, 46, 47, 51, 52, 53, 54, 75, 76, 90, 121, 122, 124], "pose": [41, 54, 59], "posit": 41, "possess": 41, "possibl": 41, "post": [20, 24, 27, 41, 42, 43, 44, 110, 124], "post_api": [20, 24, 27, 114], "post_api_chat": [20, 27, 114], "post_api_dall": 27, "post_api_dall_": [27, 114], "post_api_embed": [27, 114], "post_arg": [20, 27], "post_model": [0, 20, 124], "post_process": [0, 42, 43], "postalcod": [54, 85], "postapichatwrapp": [0, 20, 27, 114], "postapidallewrapp": [0, 20, 27, 114], "postapiembeddingwrapp": [0, 20, 27, 114, 124], "postapimodelwrapp": [20, 27], "postapimodelwrapperbas": [0, 20, 27, 114], "postprocessing_model": [42, 43], "potenti": [1, 9, 41, 42, 44, 54, 59, 111], "potion": 110, "power": [41, 54, 82, 84], "practic": [41, 54, 56], "pre": [108, 127], "preced": [54, 85], "precis": 41, "predecessor": 102, "predict": 41, "prefer": 41, "prefix": [13, 20, 21, 54, 81, 99, 125], "prepar": [32, 36, 41, 110, 112], "preprocess": [45, 54, 86], "presenc": 41, "present": [41, 54, 59], "preserv": [14, 16, 54, 69], "preserve_ord": [14, 16, 54, 69], "press": [41, 54, 56], "pretend": 115, "prevent": [14, 15, 16, 20, 22, 41, 59, 103], "previous": [88, 89], "price": 41, "primari": 41, "principl": 41, "print": [0, 1, 6, 7, 12, 13, 17, 18, 54, 58, 66, 67, 82, 84, 85, 87, 109, 112, 115, 116, 117, 119, 120, 121, 123, 124, 125], "print_llm_usag": [0, 13, 106, 120], "priorit": 41, "prioriti": [17, 18], "pro": [20, 22, 114, 119], "problem": [7, 41], "problemat": 111, "proceed": 101, "process": [1, 2, 3, 4, 6, 9, 20, 28, 41, 42, 43, 44, 45, 51, 52, 54, 59, 73, 79, 86, 88, 89, 102, 111, 112, 121], "processed_func": [54, 73], "produc": [1, 3, 4, 6, 88, 89, 112], "product": 41, "profession": 41, "profici": 41, "profil": 41, "program": [41, 54, 56, 84], "programm": [54, 84], "progress": [41, 45], "project": [0, 10, 13, 41, 88, 89, 120, 122], "promot": 41, "prompt": [0, 1, 2, 3, 4, 6, 7, 9, 10, 20, 21, 22, 23, 24, 25, 29, 30, 32, 36, 42, 43, 54, 66, 67, 73, 79, 86, 88, 89, 93, 105, 106, 107, 110, 112, 115, 116, 117, 118, 119, 120, 122], "prompt1": [20, 21, 23, 24, 29, 30], "prompt2": [20, 21, 23, 24, 30], "prompt_eval_count": [20, 25], "prompt_eval_dur": [20, 25], "prompt_gen_method": 123, "prompt_gener": 123, "prompt_not": 41, "prompt_token": [13, 20, 23, 26, 29, 30, 120, 124], "prompttyp": 118, "proper": [54, 73], "properti": [1, 2, 13, 17, 18, 19, 20, 28, 32, 34, 36, 54, 56, 58, 73, 115, 117], "prospect": 41, "protect": [41, 91], "protobuf": 49, "protocol": [1, 5, 48], "provid": [1, 2, 4, 9, 14, 16, 17, 18, 20, 22, 32, 34, 36, 41, 42, 44, 54, 59, 67, 73, 79, 84, 85, 86, 88, 89, 91, 99, 101, 102, 103, 117, 124], "provok": 41, "prowess": 41, "psycholog": 41, "pte": [54, 82], "public": [54, 82], "published_d": [54, 85], "pull": [20, 22, 25], "pulsat": 41, "purpos": [20, 28, 41, 110], "puzzl": 41, "py": [42, 44, 58, 59, 81, 93, 101, 107, 110, 122, 124], "pydant": [32, 34, 54, 56, 115], "pypi": 108, "python": [51, 52, 54, 58, 59, 60, 84, 101, 102, 103, 105, 107, 108, 109, 110, 111, 117, 118, 121, 122, 124, 129], "python3": 108, "pythonservicenod": [95, 100, 103], "qianwen": [20, 21], "qualiti": [41, 54, 67, 88, 89], "quarter": 41, "queri": [1, 6, 14, 16, 41, 42, 43, 44, 45, 54, 69, 73, 75, 76, 77, 81, 82, 84, 85, 87, 88, 89, 117, 123, 124], "query_mongodb": [0, 54, 74, 75, 117], "query_mysql": [0, 54, 74, 76, 117], "query_sqlit": [0, 54, 74, 77, 117], "query_transform": 45, "query_transform_cookbook": 45, "quest": 41, "question": [41, 45, 54, 82, 84, 117], "queue": 99, "quick": [20, 21, 41], "quota": 11, "quotaexceedederror": [0, 11, 106], "quotaexceederror": 11, "qwen": [54, 66, 114, 119, 120], "qwen2": 124, "qwen_emb_config": [42, 44, 124], "rag": [0, 1, 6, 20, 29, 105, 106, 129], "rag_ag": [0, 1], "rag_storag": [42, 44, 45], "rag_work": 124, "rais": [1, 9, 11, 20, 27, 32, 34, 36, 91, 93, 101, 112, 118], "raise_except": [54, 73], "ralli": 41, "random": [0, 1, 8, 13, 20, 29, 41, 51, 52, 54, 67, 123], "rang": [14, 15, 20, 29, 38, 40, 41, 88, 89, 103, 110, 113], "rank": [41, 54, 85], "ranking_data": [54, 85], "ranking_out_of": [54, 85], "ranking_str": [54, 85], "rate": [54, 85], "rather": [17, 18, 118], "rating_image_url": [54, 85], "ration": 41, "raw": [11, 20, 28, 54, 86, 102], "raw_info": 102, "raw_respons": [0, 11], "re": [1, 7, 20, 21, 23, 24, 25, 29, 30, 54, 86, 119], "reach": 115, "react": [1, 7, 112, 123], "react_ag": [0, 1], "reactag": [0, 1, 7, 103, 112, 115, 117, 122], "reactagentnod": [95, 100, 103], "read": [13, 20, 26, 30, 54, 63, 64, 103, 110], "read_json_fil": [0, 54, 61, 63, 117], "read_text_fil": [0, 54, 61, 64, 117], "readabl": 41, "readi": [42, 44], "readm": 114, "readtextservicenod": [95, 100, 103], "real": [17, 19, 41], "realiz": 115, "realm": 41, "reason": [1, 7, 11, 41], "rec": [54, 82], "receiv": [41, 124], "recent": [14, 15], "recent_n": [14, 15, 16, 118], "recent_n_mem_for_retriev": [1, 6, 124], "recogn": [88, 89], "recommend": [41, 54, 87], "reconstruct": 41, "record": [1, 2, 8, 11, 13, 17, 19, 112], "recoveri": 41, "rectitud": 41, "recurs": [103, 124], "red": 41, "redirect": 12, "redund": 41, "refer": [1, 4, 7, 17, 18, 20, 21, 22, 23, 25, 26, 41, 42, 44, 45, 54, 66, 67, 81, 82, 84, 88, 89, 110, 114, 117, 118], "referenc": 58, "reference_model": [88, 89], "refin": [41, 88, 89], "reflect": 41, "refrain": 41, "refresh": 45, "refresh_index": [42, 45], "regex": [32, 36], "regex_tagged_content_pars": [0, 32], "regextaggedcontentpars": [0, 32, 36], "region": [41, 54, 67], "regist": [1, 2, 11, 54, 73, 116, 117, 121], "register_agent_class": [0, 1, 2], "registri": [1, 2, 20, 25], "relat": [1, 11, 13, 14, 38, 41, 42, 46, 51, 54, 87, 103], "releas": [1, 2], "relev": [14, 16, 41], "reliabl": [88, 89], "remain": [41, 110], "remind": [32, 34, 36, 37, 41], "remot": [46, 47], "remote_machine_port": 122, "remov": [1, 2, 13, 54, 56, 59, 102], "remove_duplicates_from_end": [95, 100, 102], "remove_interactive_mark": [0, 54, 55, 56, 125], "renown": 41, "repeat": [103, 110], "replac": [54, 56], "repli": [0, 1, 2, 3, 4, 6, 7, 8, 9, 35, 51, 52, 53, 88, 89, 99, 110, 112, 115, 116, 117, 118, 121, 123, 124], "replic": [88, 89, 103], "repons": 112, "report": 41, "repositori": [20, 22, 81], "repres": [38, 40, 54, 84, 85, 102, 103, 111], "represent": 118, "reput": 41, "request": [1, 2, 8, 20, 21, 22, 25, 27, 30, 41, 46, 47, 49, 51, 52, 53, 54, 73, 83, 85, 86, 111, 117, 124], "request_id": [20, 21, 30], "requir": [0, 1, 4, 9, 11, 20, 21, 23, 24, 25, 26, 27, 29, 30, 31, 32, 34, 36, 37, 39, 41, 54, 56, 85, 91, 93, 102, 112, 114, 115, 117, 124], "require_arg": [54, 73], "require_url": [1, 9, 112], "required_ext": 124, "required_key": [0, 1, 9, 32, 34, 36, 37, 110, 112, 115], "requiredfieldnotfounderror": [0, 11, 32, 34, 106], "res": [115, 123], "res_dict": 115, "res_format": [54, 67], "res_of_dict_input": 117, "res_of_string_input": [54, 58, 117], "research": 41, "reserv": [1, 7], "reset": [54, 58, 98, 99], "reset_audi": [0, 1, 2], "reset_glb_var": [95, 96, 98], "reset_notebook": [0, 54, 57, 58], "resetexcept": [95, 96, 99], "resolut": [13, 120], "resolv": 41, "reson": 41, "resourc": [41, 46, 47, 49, 51, 53], "respect": [41, 54, 59], "respond": [32, 37, 41, 110, 115], "respons": [0, 1, 2, 3, 4, 6, 7, 8, 10, 11, 13, 17, 18, 20, 21, 22, 23, 25, 26, 29, 30, 31, 32, 33, 34, 35, 36, 37, 41, 46, 47, 54, 56, 71, 85, 86, 87, 88, 89, 103, 110, 112, 114, 115, 116, 117, 123, 124], "response_prompt_templ": 41, "responseformat": [0, 10, 106], "responseparsingerror": [0, 11, 106], "responsestub": [0, 46, 47], "rest": [54, 84], "restrict": 41, "result": [1, 2, 8, 20, 21, 32, 36, 41, 45, 54, 58, 62, 71, 73, 75, 76, 77, 81, 82, 83, 84, 85, 86, 102, 103, 110, 117, 123], "result_url1": [20, 21], "result_url2": [20, 21], "results_per_pag": [54, 82], "resurrect": 110, "retain": 41, "retri": [1, 4, 20, 27, 54, 83], "retriev": [0, 1, 6, 14, 16, 42, 43, 45, 54, 85, 87, 98, 99, 103, 124, 125], "retrieval_from_list": [54, 68], "retrieve_by_embed": [0, 14, 16, 118], "retrieve_from_list": [0, 54, 68, 69, 117], "retrieved_doc": [42, 43], "retriv": [1, 6], "retry_interv": [20, 27], "return": [1, 4, 8, 9, 13, 14, 15, 16, 17, 18, 19, 20, 21, 28, 32, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 54, 56, 58, 66, 67, 69, 73, 75, 76, 77, 79, 81, 82, 84, 86, 87, 99, 110, 112, 113, 115, 116, 117, 118, 120, 123, 124, 126, 127], "return_typ": 118, "return_var": 103, "reusabl": [42, 44], "reveal": [41, 110], "revers": [14, 16], "review": [54, 85], "review_rating_count": [54, 85], "revis": 41, "rewrit": [42, 44], "rife": 41, "righteous": 41, "rigid": 41, "risk": [41, 54, 59], "rival": 41, "rm": [54, 60], "rm_audienc": [0, 1, 2], "rm_databas": [0, 13], "rn": [54, 81], "roadmap": 41, "robot": 41, "role": [0, 1, 2, 3, 9, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 29, 30, 41, 54, 79, 99, 110, 112, 115, 116, 118, 119, 122], "romanc": 41, "romant": 41, "root": 45, "round": [41, 88, 89, 110], "rout": [41, 103, 124], "rpc": [0, 1, 2, 8, 17, 19, 51, 53, 105, 106, 107], "rpc_agent": [0, 1], "rpc_agent_cli": [0, 46], "rpc_agent_pb2": [0, 46], "rpc_agent_pb2_grpc": [0, 46], "rpcagent": [0, 1, 8, 17, 19, 46, 49], "rpcagentcli": [0, 17, 19, 46, 47, 121], "rpcagentserverlaunch": [0, 51, 52, 121, 122], "rpcagentservic": [0, 46, 49, 51, 53], "rpcagentstub": [0, 46, 49], "rpcmsg": [0, 46, 51, 53], "rpcserversidewrapp": [51, 53], "rule": 110, "run": [0, 1, 2, 8, 13, 41, 45, 46, 47, 49, 54, 58, 59, 98, 100, 102, 111, 120, 122, 124], "run_20240731": 120, "run_app": [95, 96, 98], "run_code_on_notebook": [0, 54, 57, 58], "run_dir": [13, 90, 120, 122], "run_id": [13, 120], "runnabl": 102, "runner": 0, "runtim": [0, 13, 90], "runtime_id": 0, "runtime_info": 13, "safe": 41, "safeti": [41, 54, 59], "sambert": [54, 66], "same": [0, 31, 41, 88, 89, 103, 117], "sample_r": [54, 66], "sampler": [54, 66], "sanit": 102, "sanitize_node_data": [95, 100, 102], "satisfi": [54, 79], "save": [0, 12, 13, 14, 15, 16, 32, 36, 46, 47, 54, 66, 67, 83, 110], "save_api_invoc": [0, 13], "save_api_invok": [0, 13, 120], "save_cod": [0, 13, 120], "save_dir": [0, 13, 54, 66, 67], "save_fil": [0, 13], "save_imag": [0, 13], "save_loc": 13, "save_log": [0, 13, 120], "save_python_cod": [0, 13], "save_runtime_inform": [0, 13], "savori": 41, "scenario": [20, 21, 23, 24, 25, 29, 30, 32, 36, 41, 118], "scene": 41, "schema": [32, 34, 54, 73, 115, 117], "school": 41, "scienc": [54, 82], "scientif": 41, "scope": [41, 50], "score": [54, 69], "score_func": [54, 69], "screen": 41, "screenshot": [54, 56], "script": [41, 107, 108, 114], "scriptwrit": 41, "scroll": [54, 56], "search": [0, 41, 54, 73, 80, 81, 82, 85, 87, 90, 103, 117], "search_queri": [54, 81], "search_result": [54, 82], "search_tripadvisor": [54, 85], "season": 41, "second": [20, 21, 41, 46, 47, 51, 52, 54, 56, 59, 93, 119], "secret": 91, "secret_key": 91, "section": 41, "secur": [41, 54, 59, 91], "sed": [54, 60], "see": [1, 2, 41, 119, 125], "see_all_photo": [54, 85], "seed": [20, 21, 23, 25, 26, 30, 114], "seek": 41, "seen": [41, 103], "seen_ag": 103, "seer": 110, "seer_pars": 110, "segment": [14, 15, 16], "select": [41, 54, 86, 98, 121], "selected_tags_text": [54, 86], "self": [1, 6, 13, 41, 42, 43, 54, 73, 110, 112, 113, 114, 115, 116, 117, 118, 123], "self_define_func": [54, 86], "self_parse_func": [54, 86], "selim": [54, 82], "sell": [54, 84], "send": [12, 17, 18, 98, 99, 118], "send_audio": [95, 96, 98], "send_imag": [95, 96, 98], "send_messag": [95, 96, 98], "send_msg": [95, 96, 99], "send_player_input": [95, 96, 99], "send_reset_msg": [95, 96, 99], "sender": [17, 18, 19, 118], "senior": 41, "sens": 41, "sensit": 41, "sentenc": [41, 123], "sentence_transform": [123, 124], "sentencesplitt": 124, "sentencetransform": [123, 124], "seo": 41, "sequenc": [0, 1, 2, 3, 4, 6, 7, 8, 9, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 46, 47, 54, 66, 69, 86, 103, 110, 112, 113, 115, 116, 117, 118, 123], "sequenti": [38, 40, 102, 103], "sequentialpipelin": [0, 38, 39, 40, 109, 110, 122], "sequentialpipelinenod": [95, 100, 103], "seri": [1, 8, 54, 82, 103], "serial": [0, 13, 14, 16, 17, 18, 19, 46, 47, 54, 63, 106, 118], "serializ": 50, "serialized_dict": [17, 18, 19], "serious": 41, "serv": [41, 103, 110], "server": [0, 1, 2, 8, 11, 17, 19, 20, 25, 46, 47, 49, 54, 75, 76, 105, 106], "server_host": 121, "server_id": [51, 52, 53], "server_info": 121, "server_port": 121, "servic": [0, 41, 46, 49, 51, 100, 103, 105, 106, 121, 125, 129], "service_bot": 112, "service_func": [0, 54, 73], "service_respons": [0, 54], "service_status": [0, 54], "service_toolkit": [0, 1, 7, 54, 58, 117], "servicebot": 112, "serviceexecstatus": [0, 54, 66, 67, 71, 72, 79, 81, 82, 84, 85, 87, 117], "serviceexestatus": [54, 71, 117], "servicefactori": [0, 54, 73], "servicefunct": [0, 54, 73], "servicercontext": [51, 53], "servicerespons": [0, 1, 7, 54, 56, 58, 59, 60, 62, 63, 64, 66, 67, 69, 70, 71, 73, 75, 76, 77, 79, 81, 82, 83, 84, 85, 86, 87], "servicetoolkit": [0, 1, 7, 54, 58, 73, 125], "session": [54, 60], "set": [0, 1, 2, 3, 4, 6, 8, 9, 13, 14, 16, 20, 23, 30, 35, 41, 42, 44, 46, 47, 51, 52, 53, 54, 56, 59, 82, 88, 89, 101, 102, 103, 114, 118, 124], "set_interactive_mark": [0, 54, 55, 56, 125], "set_model_config": [0, 46, 47, 49, 51, 53, 121], "set_pars": [0, 1, 4, 110, 115], "set_respons": [0, 46, 47], "setitim": [54, 59, 93], "setup": [12, 107], "setup_logg": [0, 12, 106], "setup_ms_servic": 124, "sever": 41, "shape": 41, "sharabl": [42, 44], "share": [0, 31, 41], "sharp": 41, "shell": [54, 60], "shift": 41, "shimmer": [54, 67], "shock": 41, "shoot": 41, "short": 41, "shot": 41, "should": [0, 1, 2, 12, 14, 15, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 32, 33, 34, 36, 41, 54, 56, 58, 73, 85, 87, 88, 89, 110, 114, 115, 118], "shouldn": [20, 25], "show": [6, 13, 41, 45, 54, 59, 62, 88, 89], "show_image_token": [0, 13], "show_intern": [88, 89], "show_text_and_embedding_token": [0, 13], "showcas": 41, "showprogress": 45, "shrewd": 41, "shrink": 10, "shrinkpolici": [0, 10, 106], "shutdown": [0, 51, 52], "side": 110, "sig": 117, "sign": 91, "signal": [54, 59, 93, 99], "signatur": 117, "signific": 103, "similar": [1, 6, 41, 42, 43, 45, 54, 68, 123], "similarity_top_k": [1, 6, 42, 43, 45, 124], "simpl": [1, 3, 20, 22, 42, 44, 111], "simpledirectoryread": 124, "simpli": [88, 89], "sinc": [41, 54, 59, 93, 119], "singapor": [54, 82], "singl": [12, 20, 21, 22, 25, 54, 66, 88, 89], "singleton": 13, "sir": 41, "situat": 41, "siu": [54, 82], "siu53274": [54, 82], "size": [0, 1, 2, 14, 15, 16, 51, 52, 53, 54, 66, 67, 114, 118], "skill": 41, "sky": [20, 25, 54, 67], "skylin": [54, 67], "sleep": [54, 56], "slow": 41, "slower": 111, "small": [54, 85, 114], "smooth": 41, "snippet": [41, 54, 84], "so": [1, 4, 32, 37, 54, 60, 73, 84], "social": 41, "societi": 41, "socket": [51, 52], "socotra": [54, 85], "soft": 41, "soldier": 41, "solid": 41, "solo": [54, 85], "solut": [20, 21, 41, 42, 43], "solv": [7, 41], "some": [1, 2, 8, 10, 17, 18, 19, 41, 54, 59, 73, 84, 87, 88, 89, 97, 114, 121, 122, 123], "some_messag": 113, "someon": [54, 84], "someth": [110, 111], "sometim": [41, 110], "song": [54, 82], "soon": 115, "sop": 110, "sort": 102, "sourc": [1, 8, 42, 44, 54, 62, 73, 85, 86, 88, 89, 108, 124], "source_kwarg": 103, "source_path": [54, 62], "sparrow": [54, 82], "speak": [0, 1, 2, 7, 9, 20, 22, 35, 41, 112, 115, 116, 123], "speaker": 111, "special": [38, 40, 41, 69, 110], "specif": [0, 1, 2, 9, 14, 16, 20, 24, 32, 35, 37, 41, 46, 47, 49, 51, 53, 54, 56, 59, 85, 99, 102, 103, 112, 115], "specifi": [1, 4, 5, 13, 20, 24, 26, 30, 41, 51, 52, 54, 59, 62, 66, 67, 73, 83, 91, 93, 103, 110, 112], "speech": [41, 54, 67], "speed": [54, 67], "sphinx_doc": [42, 44, 124], "spice": 41, "spm": [20, 21], "spoken": [1, 2, 9], "spread": 41, "sql": [54, 76, 117], "sql_queri": [0, 54], "sqlite": [54, 74, 75, 117], "src": 107, "ssh": 122, "stabl": 45, "stage": 43, "stanc": 41, "standard": [41, 54, 59, 67, 88, 89], "standard_1024": 120, "start": [1, 2, 8, 20, 21, 25, 51, 52, 54, 81, 82, 90, 101, 110, 111, 121, 123], "start_workflow": [95, 100, 101], "state": [54, 60, 85, 112, 125], "state_dict": [0, 13, 106, 120], "static": [1, 7, 20, 22, 24, 26, 49], "static_format": [0, 20, 26], "statur": 41, "status": [0, 41, 54, 58, 66, 67, 71, 72, 73, 81, 82, 84, 85, 87, 117, 122], "status_cod": [20, 21], "stay": [20, 25], "stderr": [12, 111], "stduio": 121, "stem": [54, 59], "step": [1, 7, 41, 102, 112], "still": [13, 54, 56], "stop": [0, 1, 8, 20, 21, 23, 26, 29, 30, 46, 47, 49, 51, 53, 121], "stop_ev": [51, 53], "storag": 43, "store": [1, 2, 4, 8, 9, 14, 15, 16, 17, 18, 19, 32, 33, 34, 35, 37, 42, 43, 45, 54, 86, 98, 115], "store_and_index": 124, "stori": 41, "storyboard": 41, "storylin": 41, "str": [0, 1, 2, 3, 4, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 41, 42, 43, 44, 45, 46, 47, 50, 51, 52, 53, 54, 56, 58, 59, 60, 62, 63, 64, 66, 67, 71, 73, 75, 76, 77, 79, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 93, 94, 98, 99, 101, 102, 103, 104, 112, 114, 117, 118, 123, 124], "straightforward": [20, 22, 41], "strateg": [41, 110], "strategi": [0, 10, 20, 21, 22, 23, 24, 25, 29, 30, 41, 106, 110], "stream": [0, 12, 20, 21, 22, 23, 25, 26, 28, 29, 30, 116], "street": [54, 85], "street1": [54, 85], "street2": [54, 85], "strength": [41, 88, 89], "strftime": 124, "strict": 41, "string": [1, 2, 9, 14, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 30, 32, 34, 42, 43, 45, 50, 54, 59, 60, 73, 81, 82, 84, 86, 91, 101, 102, 104, 111, 115, 117, 118], "string_input": 117, "stringmsg": [51, 53], "strong": 41, "structur": [15, 41, 45, 54, 82, 85, 88, 89, 103], "struggl": 41, "stub": [46, 47], "student": 41, "studio": [0, 11, 12, 51, 52, 53, 95, 96, 97, 105, 106, 110, 116, 120, 129], "studio_ip": [121, 122], "studio_port": [121, 122], "studio_url": [0, 13, 51, 52, 53, 120, 121, 122], "studioerror": [0, 11, 106], "studioregistererror": [0, 11, 106], "style": [41, 54, 67, 73], "sub": [1, 2, 46, 47, 52], "subcategori": [54, 85], "subclass": [1, 2, 5, 8, 103], "submit": [54, 56], "submodul": [95, 106], "subpackag": 106, "subprocess": [51, 52, 121], "subsequ": [41, 103], "subset": [54, 86], "substanc": [54, 84], "substr": [20, 26], "substrings_in_vision_models_nam": [0, 20, 26], "succeed": [20, 21], "success": [0, 12, 13, 20, 21, 46, 47, 54, 58, 62, 63, 64, 66, 67, 71, 72, 79, 82, 84, 85, 86, 87, 91, 111, 117], "sucess": [54, 60], "such": [41, 51, 52, 54, 56, 59, 102, 109, 114], "suggest": [41, 54, 73], "suit": 102, "suitabl": [20, 21, 23, 24, 25, 29, 30, 41, 112], "summar": [0, 10, 54, 78, 87, 88, 89, 117], "summari": [46, 47, 54, 79], "sun": [54, 67], "sung": 41, "sunni": 119, "sunset": [54, 66, 67], "super": [114, 118, 123], "suppli": [54, 67], "support": [1, 7, 20, 21, 41, 50, 54, 59, 60, 71, 75, 81, 102, 114, 117], "survey": 41, "surviv": 110, "survivor": 110, "survivors_discuss_pars": 110, "survivors_vote_pars": 110, "suspect": 110, "svg": [54, 85], "sweet": 41, "switch": [38, 39, 40, 103, 113], "switch_result": 113, "switchpipelin": [0, 38, 39, 40], "switchpipelinenod": [95, 100, 103], "sword": 41, "swordsman": 41, "swordsmanship": 41, "sworn": 41, "symposium": [54, 82], "synthes": [42, 43, 88, 89], "synthesi": [20, 21, 45, 114], "sys_prompt": [1, 2, 3, 4, 6, 7, 109, 110, 112, 123, 124], "sys_python_guard": [54, 57, 59], "syst": [54, 82], "system": [1, 2, 3, 4, 6, 7, 13, 17, 18, 19, 20, 21, 23, 24, 25, 29, 30, 41, 54, 59, 79, 86, 112, 118, 119, 122], "system_fingerprint": [20, 26], "system_prompt": [41, 54, 79], "systempromptcompar": [0, 41, 123], "systempromptgeneratorbas": [0, 41, 123], "systempromptoptim": [0, 41, 123], "sythesi": 114, "tab": [54, 56], "tabl": 41, "tactic": 41, "tag": [11, 32, 33, 34, 36, 37, 41, 54, 86, 115], "tag_begin": [0, 32, 33, 34, 37, 115], "tag_end": [0, 32, 33, 34, 37, 115], "tag_lines_format": [32, 37], "tag_nam": [0, 54, 55, 56], "tage": [54, 56], "tagged_cont": [32, 37], "tagged_content_pars": [0, 32], "tagged_content_pattern": [32, 36], "taggedcont": [0, 32, 37, 115], "tagnotfounderror": [0, 11, 106], "take": [1, 2, 14, 15, 16, 43, 54, 56, 69, 85, 88, 89], "taken": [1, 2, 8, 110], "talent": 41, "tan": [54, 82], "tang": [54, 82], "target": [41, 49], "task": [1, 2, 8, 17, 19, 41, 51, 53, 88, 89, 114, 123], "task_id": [17, 18, 19, 20, 21, 46, 47], "task_metr": [20, 21], "task_status": [20, 21], "tast": 41, "teach": 41, "teacher": 41, "teammat": 110, "teamwork": 41, "technic": 41, "techniqu": 41, "technolog": [54, 82], "tell": 118, "temperatur": [20, 21, 23, 24, 25, 26, 29, 30, 54, 67, 110, 114, 124], "templat": [32, 36, 38, 40, 41], "temporari": [14, 16, 93], "temporary_memori": [0, 14], "temporarymemori": [0, 14, 16], "tend": 41, "tension": 41, "tensorflow": 107, "term": [41, 54, 84], "termin": [12, 25, 51, 52, 54, 59, 116], "terminolog": 41, "test": [41, 59, 107, 119, 124], "test_config": 124, "text": [0, 1, 4, 13, 20, 21, 26, 28, 32, 33, 34, 35, 36, 37, 54, 56, 61, 66, 67, 73, 79, 86, 87, 98, 99, 103, 109, 112, 114, 115, 116, 117, 119, 120, 123], "text_and_embed": 120, "text_chunk": 116, "text_cmd": [54, 73], "text_complet": 124, "text_index": [20, 21], "text_process": [0, 54], "text_to_audio": [54, 66], "textur": 41, "than": [17, 18, 20, 21, 41, 54, 79, 88, 89, 110, 111, 118], "thank": [111, 119], "that": [0, 1, 2, 4, 5, 7, 8, 9, 11, 14, 16, 17, 18, 20, 21, 23, 24, 25, 26, 27, 30, 31, 32, 35, 36, 37, 38, 39, 40, 41, 46, 47, 51, 52, 53, 54, 56, 59, 60, 67, 73, 75, 76, 77, 83, 84, 87, 88, 89, 93, 102, 103, 111, 114, 118], "the": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 51, 52, 53, 54, 56, 58, 59, 60, 62, 63, 64, 66, 67, 69, 70, 71, 73, 75, 76, 77, 79, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 93, 94, 97, 98, 99, 101, 102, 103, 109, 110, 111, 112, 114, 115, 116, 117, 118, 119, 120, 121, 123, 125, 126, 127], "thee": 41, "their": [1, 2, 7, 8, 14, 16, 20, 21, 23, 24, 25, 29, 30, 32, 37, 38, 39, 40, 41, 45, 54, 56, 73, 82, 88, 89, 110], "them": [1, 8, 13, 38, 40, 41, 54, 60, 67, 110], "themselv": [32, 36], "then": [1, 3, 4, 6, 9, 14, 16, 20, 21, 32, 37, 41, 54, 58, 86, 102], "there": [17, 18, 20, 21, 26, 41, 54, 59, 112], "therefor": [32, 36], "these": [41, 88, 89, 102, 119], "they": [41, 110], "thi": 41, "thing": [41, 54, 84, 85], "think": [41, 99], "this": [0, 1, 2, 6, 7, 8, 12, 13, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 28, 29, 30, 31, 32, 36, 37, 41, 45, 46, 47, 50, 51, 52, 54, 56, 59, 67, 69, 81, 84, 91, 93, 101, 102, 103, 109, 110, 112, 114, 115, 119], "thorough": 41, "those": [41, 88, 89], "thou": 41, "thought": [1, 2, 7, 8, 41, 110, 115], "thread": [12, 46, 47], "three": [0, 31], "through": [41, 103], "thumbnail": [54, 85], "ti": [54, 81], "tight": 41, "time": [1, 2, 9, 41, 51, 52, 53, 54, 56, 59, 93, 103, 110, 118, 120, 122], "timeout": [1, 2, 8, 9, 20, 24, 27, 30, 46, 47, 49, 51, 52, 54, 56, 58, 59, 83, 86, 99], "timeouterror": [1, 9], "timer": [0, 92, 93], "timestamp": [0, 17, 18, 19, 118, 120, 124], "timezon": [54, 85], "ting": 41, "titl": [41, 54, 56, 81, 82, 84, 87, 115], "to": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 51, 52, 53, 54, 56, 58, 59, 60, 62, 63, 64, 66, 67, 69, 71, 73, 75, 76, 77, 79, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 93, 98, 99, 101, 102, 103, 104, 109, 110, 112, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 125, 126, 127], "to_all_continu": 110, "to_all_r": 110, "to_all_vot": 110, "to_cont": [32, 34, 35, 37, 115], "to_dict": [0, 17, 18, 19], "to_dist": [0, 1, 2, 112], "to_list_str": [42, 43, 45, 124], "to_mem": [14, 15, 16, 118], "to_memori": [32, 34, 35, 37, 115], "to_metadata": [32, 34, 35, 36, 37, 115], "to_openai_dict": [0, 92, 93], "to_seer": 110, "to_seer_result": 110, "to_str": 118, "to_witch_resurrect": 110, "to_wolv": 110, "to_wolves_r": 110, "to_wolves_vot": 110, "today": [20, 21, 23, 24, 25, 26, 29, 30, 54, 66, 119], "todo": [15, 42, 44], "togeth": 110, "togethercomput": [88, 89], "toke": 24, "token": [13, 20, 21, 29, 54, 79, 91, 94, 115, 120], "token_limit_prompt": [54, 79], "token_util": [0, 92], "tolist": 124, "tone": 41, "tongu": 41, "tongyi": [20, 21], "tongyi_chat": [20, 21], "too": [10, 54, 75, 76, 87], "took": 109, "tool": [1, 7, 41, 54, 73, 117], "toolkit": [54, 58, 73], "tools_calling_format": [0, 54, 73, 117], "tools_instruct": [0, 54, 73, 117], "top": [54, 69, 116, 120, 126, 127], "top_k": [14, 16, 54, 69], "top_p": [20, 29], "topic": 41, "topolog": 102, "total": [20, 21, 26, 30, 110, 120], "total_dur": [20, 25], "total_token": [13, 20, 21, 23, 26, 29, 30, 120, 124], "tour": [54, 85], "tournament": 41, "toward": 41, "tower": [54, 85], "town": 41, "trace": [0, 12, 13, 111], "track": [41, 103], "tradit": 41, "train": 41, "trainer": 41, "trait": 41, "transcrib": [54, 67], "transcript": [54, 67], "transfer": [46, 49], "transform": [41, 42, 44, 54, 82, 114, 123, 124], "transit": 41, "transport": 41, "travel": [41, 54, 85], "travers": 103, "treat": [1, 4], "trend": 41, "tri": [32, 36, 110, 112, 117, 118], "trigger": [38, 39, 40], "trip_typ": [54, 85], "tripadvisor": [54, 80, 117], "tripadvisor_search": [0, 54, 80, 85, 117], "tripadvisor_search_location_detail": [0, 54, 80, 85, 117], "tripadvisor_search_location_photo": [0, 54, 80, 85, 117], "true": [0, 1, 2, 3, 4, 6, 7, 8, 11, 12, 13, 14, 15, 16, 20, 21, 25, 32, 34, 35, 36, 37, 38, 39, 40, 41, 45, 51, 52, 54, 56, 69, 86, 109, 110, 112, 115, 116, 118, 120, 121, 123, 124], "truncat": [0, 10], "truth": 41, "try_parse_json": [32, 36, 115], "tts": [54, 67], "tupl": [1, 2, 3, 4, 6, 7, 8, 9, 20, 28, 32, 37, 54, 64, 73], "turbo": [20, 23, 24, 26, 54, 67, 109, 110, 114, 119, 120], "turn": [41, 54, 73, 110], "tutori": [1, 2, 4, 42, 44, 124], "tutorial_assist": [42, 44], "two": [17, 18, 32, 36, 54, 59, 66, 67, 69, 70, 81, 84, 85, 110, 119], "txt": [64, 124], "type": [0, 1, 2, 6, 8, 11, 14, 15, 16, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 38, 39, 40, 41, 42, 43, 44, 45, 54, 55, 56, 60, 62, 63, 64, 67, 73, 82, 84, 86, 102, 110, 112, 115, 117, 119, 124], "typic": [54, 63, 112], "ui": [90, 98, 99, 122], "uid": [12, 98, 99], "unawar": 41, "uncertain": [11, 41], "uncompromis": 41, "under": [54, 56], "understand": [41, 54, 73, 111, 112], "undetect": 110, "unexpect": 111, "unfamiliar": 41, "unifi": 0, "union": [0, 1, 2, 3, 4, 6, 8, 9, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 41, 54, 56, 59, 66, 67, 88, 89, 90, 110, 112, 113, 115, 117, 118, 123], "uniqu": [1, 2, 41, 42, 44, 51, 53, 54, 84, 85, 87, 103, 109], "unit": [14, 16, 18, 42, 43, 45], "univers": [54, 82], "unix": [54, 59, 93], "unknown": [41, 122], "unless": 110, "unmatch": 41, "unnecessari": 13, "unrel": 41, "unset": 109, "unsur": 41, "until": 110, "untrust": [54, 59], "unwav": 41, "up": [1, 6, 54, 56, 101, 124], "updat": [13, 20, 22, 28, 46, 47, 49, 51, 53, 110, 112, 118], "update_alive_play": 110, "update_image_token": [0, 13], "update_placehold": [0, 46, 47, 49, 51, 53], "update_text_and_embedding_token": [0, 13], "update_valu": [0, 17, 19], "updateplaceholderrequest": [51, 53], "uphold": 41, "url": [0, 1, 9, 13, 17, 18, 19, 20, 21, 26, 27, 28, 51, 52, 53, 54, 55, 56, 66, 67, 82, 83, 85, 86, 107, 109, 112, 114, 117, 118, 119, 121, 122, 125], "url_to_png1": 119, "url_to_png2": 119, "url_to_png3": 119, "urlpars": 86, "us": [20, 22, 54, 84, 110, 117], "usag": [0, 1, 4, 13, 20, 21, 23, 26, 29, 30, 45, 46, 47, 51, 53, 54, 73, 82, 84, 118, 122, 124], "usd": [54, 85], "use": [0, 1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 13, 14, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 34, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 54, 56, 58, 59, 60, 66, 67, 69, 71, 73, 75, 76, 77, 79, 84, 85, 86, 88, 89, 91, 93, 97, 99, 102, 103, 109, 110, 111, 112, 117, 118, 121], "use_dock": [54, 59], "use_memori": [1, 2, 3, 4, 110, 112], "use_monitor": [0, 13, 120], "user": [0, 1, 4, 6, 7, 9, 13, 17, 18, 19, 20, 21, 22, 23, 24, 25, 29, 30, 32, 35, 36, 41, 42, 44, 45, 54, 69, 76, 79, 85, 88, 89, 91, 93, 98, 99, 111, 112, 117, 118, 119, 120, 123], "user_ag": [0, 1, 109], "user_agent_config": 112, "user_input": [41, 95, 96, 99, 123], "user_login": 91, "user_nam": 122, "user_prompt": [41, 123], "user_proxy_ag": 112, "userag": [0, 1, 9, 51, 52, 103, 109, 122], "useragentnod": [95, 100, 103], "usernam": [0, 54, 76, 85, 124, 127], "userreview": [54, 85], "util": [0, 12, 46, 49, 89, 90, 95, 96, 104, 105, 106, 107], "uuid": 99, "uuid4": 118, "v1": [54, 56, 66, 84, 114], "v2": [41, 114, 123], "v4": [20, 30], "valiant": 41, "valid": [1, 4, 11, 86, 102], "valor": 41, "valu": [0, 10, 12, 13, 14, 16, 17, 19, 20, 21, 32, 34, 35, 36, 37, 41, 46, 47, 49, 51, 52, 53, 54, 56, 66, 67, 72, 73, 85, 103, 118], "valueerror": [1, 2, 54, 85, 102], "variabl": [20, 22, 23, 26, 30, 41, 54, 66, 67, 81, 84, 85, 98, 109, 110, 114], "variat": [54, 67], "variation_url1": [54, 67], "variation_url2": [54, 67], "varieti": [54, 84], "various": [41, 54, 59, 71, 88, 89, 102, 117], "vast": 41, "vdb": 43, "ve": 41, "vector": [14, 16, 42, 43, 45], "vegetarian": 41, "vener": 41, "venu": [54, 82], "verbos": [1, 7], "veri": [0, 31, 54, 60], "verif": 91, "verification_token": 91, "vers": 41, "version": [1, 2, 6, 20, 26, 38, 39, 54, 79, 91], "vertex": [20, 22], "via": [1, 4], "video": [13, 41, 54, 71, 117, 118], "view": 91, "villag": [110, 115], "vim": [54, 60], "violat": 41, "virtu": 41, "visa": 41, "visibl": [54, 56], "vision": [20, 26], "visit": [54, 56], "visual": 41, "vivid": [41, 54, 67], "vl": [20, 21, 54, 66, 114, 119, 120], "vllm": [20, 27, 110, 114], "vocabulari": 41, "voic": [54, 67, 112], "vote": 110, "vote_r": 110, "wait": [51, 52, 54, 56], "wait_for_readi": 49, "wait_until_termin": [0, 51, 52, 121], "want": [54, 60], "wanx": [54, 66, 114], "war": 41, "warfar": 41, "warm": 41, "warn": [0, 12, 13, 54, 59, 111], "warrior": 41, "was": [54, 58, 115], "wav": [54, 67], "way": [17, 18, 41, 42, 44], "wbcd": [54, 82], "we": [0, 1, 7, 13, 20, 21, 22, 31, 32, 36, 37, 43, 54, 69, 71, 75, 88, 89, 117, 119], "weak": 41, "weather": [20, 29, 54, 66, 119], "weav": 41, "web": [0, 54, 56, 66, 67, 90, 91, 105, 106, 107, 111, 117, 122, 125], "web_brows": [54, 55], "web_digest": [54, 80], "web_text_or_url": [54, 86], "web_url": [54, 85], "webbrows": [0, 54, 55, 56, 125], "webelementinfo": [0, 54, 55, 56], "webpag": [54, 86], "websit": [1, 9, 118], "weimin": [54, 82], "welcom": [20, 22, 54, 67, 110], "well": [41, 54, 73, 79, 88, 89], "were": 41, "werewolf": [1, 4, 110, 115], "werewolv": 110, "what": [0, 20, 21, 23, 24, 25, 29, 30, 31, 32, 34, 54, 84, 109, 110, 115, 119], "when": [0, 1, 2, 4, 6, 7, 8, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 27, 38, 39, 40, 41, 45, 54, 59, 60, 73, 93, 102, 103, 111, 118], "where": [1, 4, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 32, 36, 41, 54, 56, 62, 63, 64, 67, 86, 102, 103], "whether": [0, 1, 2, 3, 4, 6, 7, 8, 9, 13, 14, 16, 17, 18, 20, 22, 23, 25, 26, 28, 29, 30, 32, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 51, 52, 53, 54, 56, 58, 59, 63, 64, 69, 73, 76, 77, 79, 86, 88, 89, 90, 99, 104, 110, 115], "whi": 41, "which": [0, 1, 2, 3, 4, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 32, 33, 35, 36, 37, 38, 39, 40, 41, 45, 46, 47, 54, 56, 67, 73, 81, 84, 85, 87, 103, 110, 118, 121], "while": [38, 40, 41, 45, 54, 73, 103, 109, 110, 111, 113, 115, 121], "whilelooppipelin": [0, 38, 39, 40, 122], "whilelooppipelinenod": [95, 100, 103], "who": [17, 18, 41, 54, 84, 110, 118], "whole": [32, 34, 35, 36, 37], "whose": 102, "width": [0, 54, 55, 56, 85], "wiki": [54, 67], "wiki_get_category_memb": [54, 87], "wikipedia": [54, 67, 80], "wikipedia_search": [0, 54, 80, 87], "wikipedia_search_categori": [0, 54, 80, 87], "will": [0, 1, 2, 4, 7, 8, 9, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 41, 45, 51, 52, 53, 54, 56, 59, 60, 62, 63, 64, 66, 67, 73, 79, 85, 86, 88, 89, 93, 101, 110, 112, 116, 118], "win": [41, 110], "window": [0, 54, 59, 108], "wise": 41, "wit": 41, "witch": 110, "witch_nam": 110, "witch_resurrect_pars": 110, "with": [0, 1, 2, 5, 6, 7, 8, 9, 11, 13, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 36, 37, 41, 42, 43, 44, 45, 46, 47, 49, 51, 52, 54, 56, 58, 59, 66, 67, 69, 73, 79, 81, 82, 84, 85, 86, 88, 89, 90, 91, 102, 103, 110, 111, 112, 113, 115, 117, 123], "within": [1, 7, 32, 36, 41, 54, 56, 59, 75, 76, 77, 103, 110], "without": [0, 1, 2, 8, 20, 26, 31, 32, 36, 41, 103, 112], "wolf": 110, "wolv": 110, "wolves_discuss_pars": 110, "wolves_vote_pars": 110, "won": [1, 7, 32, 36, 41, 110], "wonder": [20, 21], "word": 41, "work": [1, 4, 41, 42, 44, 54, 62, 69, 93, 110], "workflow": [35, 38, 40, 45, 95, 100, 102, 103, 104], "workflow_dag": [95, 100], "workflow_nod": [95, 100], "workflow_util": [95, 100], "workflownod": [95, 100, 103], "workflownodetyp": [95, 100, 103], "workshop": [54, 82], "workstat": [0, 95], "world": [41, 111, 115], "worldwid": 41, "wrap": [1, 2, 20, 22, 54, 67, 71, 117], "wrapper": [1, 8, 13, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 45, 116, 119, 123], "write": [14, 16, 41, 54, 62, 64, 103, 117, 123], "write_json_fil": [0, 54, 61, 63, 117], "write_review": [54, 85], "write_text_fil": [0, 54, 61, 64, 117], "writetextservicenod": [95, 100, 103], "written": [14, 16, 41, 54, 63, 64], "wrong": 111, "www": [54, 56, 84, 85, 125], "x1": [0, 31], "x2": [0, 31], "x_in": 102, "xiaohongshu": 41, "xxx": [20, 21, 109, 110, 114, 116, 117, 119, 120, 121, 122, 123], "xxx1": 119, "xxx2": 119, "xxxagent": [1, 2], "xxxxx": [54, 86], "year": [41, 54, 82], "yemen": [54, 85], "yes": 115, "yet": [41, 54, 60], "yi": [20, 29, 114], "yi_chat": [20, 29, 114], "yi_model": [0, 20], "yichatwrapp": [0, 20, 29, 114], "you": [1, 7, 14, 16, 20, 21, 22, 23, 24, 25, 26, 29, 30, 32, 33, 41, 51, 52, 54, 56, 58, 59, 60, 79, 86, 87, 88, 89, 109, 110, 111, 114, 115, 118, 119, 123], "young": 41, "your": [1, 2, 3, 20, 23, 24, 41, 51, 52, 54, 73, 84, 85, 87, 88, 89, 109, 110, 115, 119, 121, 123, 127], "your_": [32, 33], "your_api_key": [24, 54, 67, 85, 114], "your_config_nam": [114, 123], "your_cse_id": [54, 84], "your_embed_model_config_nam": 124, "your_google_api_key": [54, 84], "your_json_dictionari": [32, 34], "your_json_object": [32, 34], "your_knowledge_id": 124, "your_meta_prompt": 123, "your_model": 124, "your_organ": [24, 114], "your_prompt": 124, "your_python_cod": 115, "your_python_script_nam": 122, "your_save_path": 111, "yourag": 117, "yourself": 41, "youth": 41, "yu": [54, 82], "yusefi": [54, 82], "yutztch23": [54, 82], "ywjjzgvm": 119, "yyy": 114, "zh": [20, 21, 22, 54, 66, 85], "zhang": [54, 82], "zhichu": [54, 66], "zhipu_model": [0, 20], "zhipuai": [20, 30, 116, 119], "zhipuai_chat": [20, 30, 114, 116], "zhipuai_embed": [20, 30, 114], "zhipuaichatwrapp": [0, 20, 30, 114, 116], "zhipuaiembeddingwrapp": [0, 20, 30, 114], "zhipuaiwrapperbas": [0, 20, 30], "ziwei": [54, 82], "zsz0po": 120}, "titles": ["agentscope package", "agentscope.agents package", "agentscope.agents.agent module", "agentscope.agents.dialog_agent module", "agentscope.agents.dict_dialog_agent module", "agentscope.agents.operator module", "agentscope.agents.rag_agent module", "agentscope.agents.react_agent module", "agentscope.agents.rpc_agent module", "agentscope.agents.user_agent module", "agentscope.constants module", "agentscope.exception module", "agentscope.logging module", "agentscope.manager package", "agentscope.memory package", "agentscope.memory.memory module", "agentscope.memory.temporary_memory module", "agentscope.message package", "agentscope.message.msg module", "agentscope.message.placeholder module", "agentscope.models package", "agentscope.models.dashscope_model module", "agentscope.models.gemini_model module", "agentscope.models.litellm_model module", "agentscope.models.model module", "agentscope.models.ollama_model module", "agentscope.models.openai_model module", "agentscope.models.post_model module", "agentscope.models.response module", "agentscope.models.yi_model module", "agentscope.models.zhipu_model module", "agentscope.msghub module", "agentscope.parsers package", "agentscope.parsers.code_block_parser module", "agentscope.parsers.json_object_parser module", "agentscope.parsers.parser_base module", "agentscope.parsers.regex_tagged_content_parser module", "agentscope.parsers.tagged_content_parser module", "agentscope.pipelines package", "agentscope.pipelines.functional module", "agentscope.pipelines.pipeline module", "agentscope.prompt package", "agentscope.rag package", "agentscope.rag.knowledge module", "agentscope.rag.knowledge_bank module", "agentscope.rag.llama_index_knowledge module", "agentscope.rpc package", "agentscope.rpc.rpc_agent_client module", "agentscope.rpc.rpc_agent_pb2 module", "agentscope.rpc.rpc_agent_pb2_grpc module", "agentscope.serialize module", "agentscope.server package", "agentscope.server.launcher module", "agentscope.server.servicer module", "agentscope.service package", "agentscope.service.browser package", "agentscope.service.browser.web_browser module", "agentscope.service.execute_code package", "agentscope.service.execute_code.exec_notebook module", "agentscope.service.execute_code.exec_python module", "agentscope.service.execute_code.exec_shell module", "agentscope.service.file package", "agentscope.service.file.common module", "agentscope.service.file.json module", "agentscope.service.file.text module", "agentscope.service.multi_modality package", "agentscope.service.multi_modality.dashscope_services module", "agentscope.service.multi_modality.openai_services module", "agentscope.service.retrieval package", "agentscope.service.retrieval.retrieval_from_list module", "agentscope.service.retrieval.similarity module", "agentscope.service.service_response module", "agentscope.service.service_status module", "agentscope.service.service_toolkit module", "agentscope.service.sql_query package", "agentscope.service.sql_query.mongodb module", "agentscope.service.sql_query.mysql module", "agentscope.service.sql_query.sqlite module", "agentscope.service.text_processing package", "agentscope.service.text_processing.summarization module", "agentscope.service.web package", "agentscope.service.web.arxiv module", "agentscope.service.web.dblp module", "agentscope.service.web.download module", "agentscope.service.web.search module", "agentscope.service.web.tripadvisor module", "agentscope.service.web.web_digest module", "agentscope.service.web.wikipedia module", "agentscope.strategy package", "agentscope.strategy.mixture_of_agent module", "agentscope.studio package", "agentscope.studio.utils module", "agentscope.utils package", "agentscope.utils.common module", "agentscope.utils.token_utils module", "agentscope.web package", "agentscope.web.gradio package", "agentscope.web.gradio.constants module", "agentscope.web.gradio.studio module", "agentscope.web.gradio.utils module", "agentscope.web.workstation package", "agentscope.web.workstation.workflow module", "agentscope.web.workstation.workflow_dag module", "agentscope.web.workstation.workflow_node module", "agentscope.web.workstation.workflow_utils module", "AgentScope \u6587\u6863", "agentscope", "\u5173\u4e8eAgentScope", "\u5b89\u88c5", "\u5feb\u901f\u5f00\u59cb", "\u6837\u4f8b\uff1a\u72fc\u4eba\u6740\u6e38\u620f", "\u65e5\u5fd7", "Agent", "Pipeline\u548cMsgHub", "\u6a21\u578b", "\u7ed3\u679c\u89e3\u6790", "\u6d41\u5f0f\u8f93\u51fa", "\u5de5\u5177", "\u8bb0\u5fc6", "\u63d0\u793a\u5de5\u7a0b", "\u76d1\u63a7", "\u5206\u5e03\u5f0f", "AgentScope Studio", "\u7cfb\u7edf\u63d0\u793a\u4f18\u5316", "\u7b80\u8981\u4ecb\u7ecdAgentScope\u4e2d\u7684RAG", "\u9884\u5907", "\u52a0\u5165AgentScope\u793e\u533a", "\u8d21\u732e\u5230AgentScope", "\u53c2\u4e0e\u8d21\u732e", "\u6b22\u8fce\u6765\u5230 AgentScope \u6559\u7a0b"], "titleterms": {"actor": 121, "agent": [1, 2, 3, 4, 5, 6, 7, 8, 9, 107, 110, 112, 121, 122], "agentbas": 112, "agentpool": 112, "agentscop": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 110, 121, 122, 124, 126, 127, 129], "api": [105, 110, 114], "arxiv": 81, "bank": 124, "browser": [55, 56], "chat": [111, 114], "clone": 127, "code_block_pars": 33, "common": [62, 93], "compar": 123, "conda": 108, "constant": [10, 97], "content": [0, 1, 13, 14, 17, 20, 32, 38, 41, 42, 46, 51, 54, 55, 57, 61, 65, 68, 74, 78, 80, 88, 90, 92, 95, 96, 100], "context": 123, "dashboard": 122, "dashscop": 114, "dashscope_model": 21, "dashscope_servic": 66, "dashscopechatwrapp": 119, "dashscopemultimodalwrapp": 119, "dblp": 82, "dialog_ag": 3, "dialogag": 112, "dict_dialog_ag": 4, "dictfiltermixin": 115, "dingtalk": 126, "discord": 126, "download": 83, "embed": 124, "except": 11, "exec_notebook": 58, "exec_python": 59, "exec_shel": 60, "execute_cod": [57, 58, 59, 60], "file": [61, 62, 63, 64], "fork": 127, "forlooppipelin": 113, "function": 39, "gemini": 114, "gemini_model": 22, "geminichatwrapp": 119, "generat": 123, "github": 126, "gradio": [96, 97, 98, 99], "guidanc": 125, "ifelsepipelin": 113, "in": 123, "json": [63, 115], "json_object_pars": 34, "knowledg": [43, 124], "knowledge_bank": 44, "launcher": 52, "learn": 123, "litellm": 114, "litellm_model": 23, "litellmchatwrapp": 119, "llama_index_knowledg": 45, "llamaindexknowledg": 124, "log": [12, 111], "logger": 111, "manag": [13, 122], "markdowncodeblockpars": 115, "markdownjsondictpars": 115, "markdownjsonobjectpars": 115, "memori": [14, 15, 16, 118, 122], "memorybas": 118, "messag": [17, 18, 19, 107, 111, 118], "messagebas": 118, "mixture_of_ag": 89, "model": [20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 114, 124], "modul": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104], "mongodb": 75, "msg": [18, 118], "msghub": [31, 110, 113], "multi_mod": [65, 66, 67], "multitaggedcontentpars": 115, "mysql": 76, "ollama": 114, "ollama_model": 25, "ollamachatwrapp": 119, "ollamagenerationwrapp": 119, "openai": 114, "openai_model": 26, "openai_servic": 67, "openaichatwrapp": 119, "oper": 5, "optim": 123, "packag": [0, 1, 13, 14, 17, 20, 32, 38, 41, 42, 46, 51, 54, 55, 57, 61, 65, 68, 74, 78, 80, 88, 90, 92, 95, 96, 100], "parser": [32, 33, 34, 35, 36, 37, 110], "parser_bas": 35, "pip": 108, "pipelin": [38, 39, 40, 110, 113], "placehold": [19, 121], "post": 114, "post_model": 27, "prompt": [41, 123], "pull": 127, "python": 115, "rag": [42, 43, 44, 45, 124], "rag_ag": 6, "react": 115, "react_ag": 7, "regex_tagged_content_pars": 36, "regextaggedcontentpars": 115, "request": [114, 127], "respons": 28, "retriev": [68, 69, 70], "retrieval_from_list": 69, "rpc": [46, 47, 48, 49], "rpc_agent": 8, "rpc_agent_cli": 47, "rpc_agent_pb2": 48, "rpc_agent_pb2_grpc": 49, "search": 84, "sequentialpipelin": 113, "serial": 50, "server": [51, 52, 53, 121, 122], "servic": [53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 107, 117], "service_respons": 71, "service_status": 72, "service_toolkit": 73, "servicerespons": 117, "servicetoolkit": 117, "similar": 70, "sql_queri": [74, 75, 76, 77], "sqlite": 77, "str": 115, "strategi": [88, 89], "studio": [90, 91, 98, 121, 122], "submodul": [0, 1, 14, 17, 20, 32, 38, 42, 46, 51, 54, 55, 57, 61, 65, 68, 74, 78, 80, 88, 90, 92, 96, 100], "subpackag": [0, 54, 95], "summar": 79, "switchpipelin": 113, "system": 123, "tagged_content_pars": 37, "temporary_memori": 16, "temporarymemori": 118, "text": 64, "text_process": [78, 79], "to_dist": 121, "token_util": 94, "tripadvisor": 85, "user_ag": 9, "userag": 112, "util": [91, 92, 93, 94, 99], "virtualenv": 108, "vision": 119, "web": [80, 81, 82, 83, 84, 85, 86, 87, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104], "web_brows": 56, "web_digest": 86, "webui": 111, "whilelooppipelin": 113, "wikipedia": 87, "workflow": [101, 107], "workflow_dag": 102, "workflow_nod": 103, "workflow_util": 104, "workstat": [100, 101, 102, 103, 104, 122], "wrapper": 114, "yi_model": 29, "zhipu_model": 30, "zhipuai": 114, "zhipuaichatwrapp": 119}}) \ No newline at end of file +Search.setIndex({"alltitles": {"(\u62d3\u5c55) \u67b6\u8bbe\u81ea\u5df1\u7684embedding model\u670d\u52a1": [[124, "embedding-model"]], "Actor\u6a21\u5f0f": [[121, "actor"]], "Agent": [[112, null]], "Agent Server": [[121, "id9"]], "AgentScope API \u6587\u6863": [[105, null]], "AgentScope Studio": [[122, null]], "AgentScope \u6587\u6863": [[105, null]], "AgentScope\u4ee3\u7801\u7ed3\u6784": [[107, "id5"]], "AgentScope\u662f\u5982\u4f55\u8bbe\u8ba1\u7684\uff1f": [[107, "id4"]], "Agents \u5217\u8868": [[122, "agents"]], "DashScope API": [[114, "dashscope-api"]], "DashScopeChatWrapper": [[119, "dashscopechatwrapper"]], "DashScopeMultiModalWrapper": [[119, "dashscopemultimodalwrapper"]], "Dashboard": [[122, "dashboard"]], "DialogAgent": [[112, "dialogagent"]], "Discord": [[126, "discord"]], "ForLoopPipeline": [[113, "forlooppipeline"]], "Fork\u548cClone\u4ed3\u5e93": [[127, "forkclone"]], "Gemini API": [[114, "gemini-api"]], "GeminiChatWrapper": [[119, "geminichatwrapper"]], "GitHub": [[126, "github"]], "Guidance": [[125, "guidance"]], "IfElsePipeline": [[113, "ifelsepipeline"]], "JSON / Python \u5bf9\u8c61\u7c7b\u578b": [[115, "json-python"]], "Knowledge": [[124, "knowledge"]], "Knowledge Bank": [[124, "knowledge-bank"]], "LiteLLM Chat API": [[114, "litellm-chat-api"]], "LiteLLMChatWrapper": [[119, "litellmchatwrapper"]], "Logging": [[111, "logging"]], "Logging a Chat Message": [[111, "logging-a-chat-message"]], "Mac & Linux": [[108, "mac-linux"]], "MarkdownCodeBlockParser": [[115, "markdowncodeblockparser"]], "MarkdownJsonDictParser": [[115, "markdownjsondictparser"]], "MarkdownJsonObjectParser": [[115, "markdownjsonobjectparser"]], "Memory \u5217\u8868": [[122, "memory"]], "Module contents": [[0, "module-agentscope"], [1, "module-agentscope.agents"], [13, "module-agentscope.manager"], [14, "module-agentscope.memory"], [17, "module-agentscope.message"], [20, "module-agentscope.models"], [32, "module-agentscope.parsers"], [38, "module-agentscope.pipelines"], [41, "module-agentscope.prompt"], [42, "module-agentscope.rag"], [46, "module-agentscope.rpc"], [51, "module-agentscope.server"], [54, "module-agentscope.service"], [55, "module-agentscope.service.browser"], [57, "module-agentscope.service.execute_code"], [61, "module-agentscope.service.file"], [65, "module-agentscope.service.multi_modality"], [68, "module-agentscope.service.retrieval"], [74, "module-agentscope.service.sql_query"], [78, "module-agentscope.service.text_processing"], [80, "module-agentscope.service.web"], [88, "module-agentscope.strategy"], [90, "module-agentscope.studio"], [92, "module-agentscope.utils"], [95, "module-agentscope.web"], [96, "module-agentscope.web.gradio"], [100, "module-agentscope.web.workstation"]], "MsgHub": [[113, "msghub"]], "MultiTaggedContentParser": [[115, "multitaggedcontentparser"]], "Ollama API": [[114, "ollama-api"]], "OllamaChatWrapper": [[119, "ollamachatwrapper"]], "OllamaGenerationWrapper": [[119, "ollamagenerationwrapper"]], "OpenAI API": [[114, "openai-api"]], "OpenAIChatWrapper": [[119, "openaichatwrapper"]], "Pipeline": [[113, "pipeline"]], "Pipeline \u7ec4\u5408": [[113, "id3"]], "Pipeline\u548cMsgHub": [[113, null]], "Placeholder": [[121, "placeholder"]], "Post Request API": [[114, "post-request-api"]], "RAG \u667a\u80fd\u4f53": [[124, "rag"]], "ReAct \u667a\u80fd\u4f53\u548c\u5de5\u5177\u4f7f\u7528": [[115, "react"]], "RegexTaggedContentParser": [[115, "regextaggedcontentparser"]], "SequentialPipeline": [[113, "sequentialpipeline"]], "Server Manager": [[122, "server-manager"]], "Servers \u5217\u8868": [[122, "servers"]], "Service\u51fd\u6570\u6982\u89c8": [[117, "service"]], "Submodules": [[0, "submodules"], [1, "submodules"], [14, "submodules"], [17, "submodules"], [20, "submodules"], [32, "submodules"], [38, "submodules"], [42, "submodules"], [46, "submodules"], [51, "submodules"], [54, "submodules"], [55, "submodules"], [57, "submodules"], [61, "submodules"], [65, "submodules"], [68, "submodules"], [74, "submodules"], [78, "submodules"], [80, "submodules"], [88, "submodules"], [90, "submodules"], [92, "submodules"], [96, "submodules"], [100, "submodules"]], "Subpackages": [[0, "subpackages"], [54, "subpackages"], [95, "subpackages"]], "SwitchPipeline": [[113, "switchpipeline"]], "System Prompt Comparer": [[123, "system-prompt-comparer"]], "System Prompt Generator": [[123, "system-prompt-generator"]], "System Prompt Optimizer": [[123, "system-prompt-optimizer"]], "UserAgent": [[112, "useragent"]], "WhileLoopPipeline": [[113, "whilelooppipeline"]], "Windows": [[108, "windows"]], "Workstation": [[122, "workstation"]], "ZhipuAI API": [[114, "zhipuai-api"]], "ZhipuAIChatWrapper": [[119, "zhipuaichatwrapper"]], "agentscope": [[106, null]], "agentscope package": [[0, null]], "agentscope.agents package": [[1, null]], "agentscope.agents.agent module": [[2, null]], "agentscope.agents.dialog_agent module": [[3, null]], "agentscope.agents.dict_dialog_agent module": [[4, null]], "agentscope.agents.operator module": [[5, null]], "agentscope.agents.rag_agent module": [[6, null]], "agentscope.agents.react_agent module": [[7, null]], "agentscope.agents.rpc_agent module": [[8, null]], "agentscope.agents.user_agent module": [[9, null]], "agentscope.constants module": [[10, null]], "agentscope.exception module": [[11, null]], "agentscope.logging module": [[12, null]], "agentscope.manager package": [[13, null]], "agentscope.memory package": [[14, null]], "agentscope.memory.memory module": [[15, null]], "agentscope.memory.temporary_memory module": [[16, null]], "agentscope.message package": [[17, null]], "agentscope.message.msg module": [[18, null]], "agentscope.message.placeholder module": [[19, null]], "agentscope.models package": [[20, null]], "agentscope.models.dashscope_model module": [[21, null]], "agentscope.models.gemini_model module": [[22, null]], "agentscope.models.litellm_model module": [[23, null]], "agentscope.models.model module": [[24, null]], "agentscope.models.ollama_model module": [[25, null]], "agentscope.models.openai_model module": [[26, null]], "agentscope.models.post_model module": [[27, null]], "agentscope.models.response module": [[28, null]], "agentscope.models.yi_model module": [[29, null]], "agentscope.models.zhipu_model module": [[30, null]], "agentscope.msghub module": [[31, null]], "agentscope.parsers package": [[32, null]], "agentscope.parsers.code_block_parser module": [[33, null]], "agentscope.parsers.json_object_parser module": [[34, null]], "agentscope.parsers.parser_base module": [[35, null]], "agentscope.parsers.regex_tagged_content_parser module": [[36, null]], "agentscope.parsers.tagged_content_parser module": [[37, null]], "agentscope.pipelines package": [[38, null]], "agentscope.pipelines.functional module": [[39, null]], "agentscope.pipelines.pipeline module": [[40, null]], "agentscope.prompt package": [[41, null]], "agentscope.rag package": [[42, null]], "agentscope.rag.knowledge module": [[43, null]], "agentscope.rag.knowledge_bank module": [[44, null]], "agentscope.rag.llama_index_knowledge module": [[45, null]], "agentscope.rpc package": [[46, null]], "agentscope.rpc.rpc_agent_client module": [[47, null]], "agentscope.rpc.rpc_agent_pb2 module": [[48, null]], "agentscope.rpc.rpc_agent_pb2_grpc module": [[49, null]], "agentscope.serialize module": [[50, null]], "agentscope.server package": [[51, null]], "agentscope.server.launcher module": [[52, null]], "agentscope.server.servicer module": [[53, null]], "agentscope.service package": [[54, null]], "agentscope.service.browser package": [[55, null]], "agentscope.service.browser.web_browser module": [[56, null]], "agentscope.service.execute_code package": [[57, null]], "agentscope.service.execute_code.exec_notebook module": [[58, null]], "agentscope.service.execute_code.exec_python module": [[59, null]], "agentscope.service.execute_code.exec_shell module": [[60, null]], "agentscope.service.file package": [[61, null]], "agentscope.service.file.common module": [[62, null]], "agentscope.service.file.json module": [[63, null]], "agentscope.service.file.text module": [[64, null]], "agentscope.service.multi_modality package": [[65, null]], "agentscope.service.multi_modality.dashscope_services module": [[66, null]], "agentscope.service.multi_modality.openai_services module": [[67, null]], "agentscope.service.retrieval package": [[68, null]], "agentscope.service.retrieval.retrieval_from_list module": [[69, null]], "agentscope.service.retrieval.similarity module": [[70, null]], "agentscope.service.service_response module": [[71, null]], "agentscope.service.service_status module": [[72, null]], "agentscope.service.service_toolkit module": [[73, null]], "agentscope.service.sql_query package": [[74, null]], "agentscope.service.sql_query.mongodb module": [[75, null]], "agentscope.service.sql_query.mysql module": [[76, null]], "agentscope.service.sql_query.sqlite module": [[77, null]], "agentscope.service.text_processing package": [[78, null]], "agentscope.service.text_processing.summarization module": [[79, null]], "agentscope.service.web package": [[80, null]], "agentscope.service.web.arxiv module": [[81, null]], "agentscope.service.web.dblp module": [[82, null]], "agentscope.service.web.download module": [[83, null]], "agentscope.service.web.search module": [[84, null]], "agentscope.service.web.tripadvisor module": [[85, null]], "agentscope.service.web.web_digest module": [[86, null]], "agentscope.service.web.wikipedia module": [[87, null]], "agentscope.strategy package": [[88, null]], "agentscope.strategy.mixture_of_agent module": [[89, null]], "agentscope.studio package": [[90, null]], "agentscope.studio.utils module": [[91, null]], "agentscope.utils package": [[92, null]], "agentscope.utils.common module": [[93, null]], "agentscope.utils.token_utils module": [[94, null]], "agentscope.web package": [[95, null]], "agentscope.web.gradio package": [[96, null]], "agentscope.web.gradio.constants module": [[97, null]], "agentscope.web.gradio.studio module": [[98, null]], "agentscope.web.gradio.utils module": [[99, null]], "agentscope.web.workstation package": [[100, null]], "agentscope.web.workstation.workflow module": [[101, null]], "agentscope.web.workstation.workflow_dag module": [[102, null]], "agentscope.web.workstation.workflow_node module": [[103, null]], "agentscope.web.workstation.workflow_utils module": [[104, null]], "}": [[20, "id53"], [30, "id9"], [32, "id19"], [36, "id3"]], "\u4e0e\u667a\u80fd\u4f53\u7ed3\u5408": [[125, "id2"]], "\u4e3a\u4ec0\u4e48\u9009\u62e9AgentScope\uff1f": [[107, "id3"]], "\u4ec0\u4e48\u662fAgentScope\uff1f": [[107, "id1"]], "\u4eceAgent\u6c60\u4e2d\u5b9a\u5236Agent": [[112, "agentagent"]], "\u4ece\u6e90\u7801\u5b89\u88c5": [[108, "id3"]], "\u4ece\u96f6\u642d\u5efa\u6a21\u578b\u670d\u52a1": [[114, "id7"]], "\u4ee3\u7801\u5ba1\u67e5": [[127, "id6"]], "\u4ee5\u914d\u7f6e LlamaIndexKnowledge \u4e3a\u4f8b": [[124, "llamaindexknowledge"]], "\u4f7f\u7528 In Context Learning \u751f\u6210": [[123, "in-context-learning"]], "\u4f7f\u7528 Parser": [[110, "parser"]], "\u4f7f\u7528 Pipeline \u548c MsgHub": [[110, "pipeline-msghub"]], "\u4f7f\u7528Conda": [[108, "conda"]], "\u4f7f\u7528Pip\u5b89\u88c5": [[108, "pip"]], "\u4f7f\u7528Service\u51fd\u6570": [[117, "id2"]], "\u4f7f\u7528Virtualenv": [[108, "virtualenv"]], "\u4f7f\u7528\u65b9\u6cd5": [[121, "id2"]], "\u4f7f\u7528\u8bf4\u660e": [[113, "id2"], [113, "id4"]], "\u505a\u51fa\u4fee\u6539": [[127, "id4"]], "\u5173\u4e8e DictFilterMixin": [[115, "dictfiltermixin"]], "\u5173\u4e8eAgentScope": [[107, null]], "\u5173\u4e8eLlamaIndexKnowledge\u7684\u7ec6\u8282": [[124, "id4"]], "\u5173\u4e8eServiceResponse": [[117, "serviceresponse"]], "\u5173\u4e8eServiceToolkit": [[117, "servicetoolkit"]], "\u5173\u4e8eTemporaryMemory": [[118, "temporarymemory"]], "\u5173\u4e8e\u6d88\u606f\uff08Message\uff09": [[118, "message"]], "\u5173\u4e8e\u8bb0\u5fc6\u57fa\u7c7b\uff08MemoryBase\uff09": [[118, "memorybase"]], "\u5173\u4e8e\u8bb0\u5fc6\uff08Memory\uff09": [[118, "memory"]], "\u5173\u952e\u6982\u5ff5": [[107, "id2"]], "\u5178\u578b\u4f7f\u7528\u6837\u4f8b": [[115, "id18"]], "\u5185\u7f6e\u63d0\u793a\u7b56\u7565": [[119, "id3"]], "\u5185\u7f6e\u6837\u4f8b": [[122, "id6"]], "\u5206\u5e03\u5f0f": [[121, null]], "\u521b\u5efa\u4e00\u4e2a MsgHub": [[113, "id5"]], "\u521b\u5efa\u4e00\u4e2a\u65b0\u5206\u652f": [[127, "id3"]], "\u521b\u5efa\u65b0\u7684Service\u51fd\u6570": [[117, "id4"]], "\u521b\u5efa\u81ea\u5df1\u7684Model Wrapper": [[114, "model-wrapper"]], "\u521b\u5efa\u865a\u62df\u73af\u5883": [[108, "id2"]], "\u521d\u59cb\u5316": [[115, "id6"], [115, "id11"], [123, "id4"], [123, "id5"]], "\u521d\u59cb\u5316 & \u54cd\u5e94\u683c\u5f0f\u6a21\u7248": [[115, "id12"], [115, "id14"], [115, "id16"]], "\u529f\u80fd\u8bf4\u660e": [[115, "id5"]], "\u52a0\u5165AgentScope\u793e\u533a": [[126, null]], "\u53c2\u4e0e\u8d21\u732e": [[105, "id2"], [128, null], [129, "id2"]], "\u542f\u52a8 AgentScope Studio": [[122, "id1"]], "\u54cd\u5e94\u683c\u5f0f\u6a21\u7248": [[115, "id7"]], "\u5728 MsgHub \u4e2d\u5e7f\u64ad\u6d88\u606f": [[113, "id6"]], "\u57fa\u7840\u53c2\u6570": [[114, "id5"]], "\u5982\u4f55\u4f7f\u7528": [[117, "id3"]], "\u5982\u4f55\u4f7f\u7528\u4e00\u4e2a Knowledge \u5bf9\u8c61": [[124, "id3"]], "\u5982\u4f55\u521d\u59cb\u5316\u4e00\u4e2aKnowledge\u5bf9\u8c61": [[124, "id1"]], "\u5b50\u8fdb\u7a0b\u6a21\u5f0f": [[121, "id4"]], "\u5b57\u5178\u7c7b\u578b": [[115, "id9"]], "\u5b57\u7b26\u4e32\uff08str\uff09\u7c7b\u578b": [[115, "str"]], "\u5b89\u88c5": [[108, null]], "\u5b89\u88c5AgentScope": [[108, "agentscope"]], "\u5b9e\u73b0\u539f\u7406": [[121, "id8"]], "\u5b9e\u73b0\u72fc\u4eba\u6740\u7684\u6e38\u620f\u6d41\u7a0b": [[110, "id4"]], "\u5bf9\u4ee3\u7801\u5e93\u505a\u51fa\u8d21\u732e": [[127, "id2"]], "\u5bfc\u5165/\u5bfc\u51fa\u5e94\u7528\u7a0b\u5e8f": [[122, "id9"]], "\u5c06\u65e5\u5fd7\u4e0eWebUI\u96c6\u6210": [[111, "webui"]], "\u5de5\u4f5c\u6d41\uff08Workflow\uff09": [[107, "workflow"]], "\u5de5\u5177": [[117, null]], "\u5f00\u59cb": [[110, "id2"]], "\u5f15\u5165\u8fd0\u884c\u5386\u53f2": [[122, "id4"]], "\u5feb\u901f\u4f7f\u7528": [[122, "id5"]], "\u5feb\u901f\u5f00\u59cb": [[109, null]], "\u5feb\u901f\u8fd0\u884c": [[111, "id4"]], "\u62a5\u544a\u9519\u8bef\u548c\u63d0\u51fa\u65b0\u529f\u80fd": [[127, "id1"]], "\u63a2\u7d22AgentPool": [[112, "agentpool"]], "\u63d0\u4ea4 Pull Request": [[127, "pull-request"]], "\u63d0\u4ea4\u60a8\u7684\u4fee\u6539": [[127, "id5"]], "\u63d0\u793a\u5de5\u7a0b": [[119, null]], "\u63d0\u793a\u7684\u6784\u5efa\u7b56\u7565": [[119, "id4"], [119, "id6"], [119, "id7"], [119, "id9"], [119, "id10"], [119, "id11"], [119, "id12"]], "\u63d0\u793a\u7b56\u7565": [[119, "id8"]], "\u652f\u6301\u6a21\u578b": [[114, "id2"]], "\u6559\u7a0b\u5927\u7eb2": [[105, "id1"], [129, "id1"]], "\u65e5\u5fd7": [[111, null]], "\u667a\u80fd\u4f53\uff08Agent\uff09": [[107, "agent"]], "\u66f4\u4f4e\u6210\u672c\u7684 to_dist": [[121, "to-dist"]], "\u66f4\u591a\u5173\u4e8e knowledge \u914d\u7f6e": [[124, "id2"]], "\u670d\u52a1\uff08Service\uff09": [[107, "service"]], "\u6784\u5efa\u5e94\u7528\u7a0b\u5e8f": [[122, "id7"]], "\u6784\u5efa\u63d0\u793a\u9762\u4e34\u7684\u6311\u6218": [[119, "id2"]], "\u6837\u4f8b\uff1a\u72fc\u4eba\u6740\u6e38\u620f": [[110, null]], "\u68c0\u67e5\u5e94\u7528\u7a0b\u5e8f": [[122, "id10"]], "\u6a21\u578b": [[114, null]], "\u6a21\u578b\u8c03\u7528": [[116, "id4"]], "\u6a21\u578b\u914d\u7f6e": [[116, "id3"]], "\u6b22\u8fce\u6765\u5230 AgentScope \u6559\u7a0b": [[105, "agentscope"], [129, null]], "\u6b65\u9aa41: \u8f6c\u5316\u4e3a\u5206\u5e03\u5f0f\u7248\u672c": [[121, "id3"]], "\u6b65\u9aa42: \u7f16\u6392\u5206\u5e03\u5f0f\u5e94\u7528\u6d41\u7a0b": [[121, "id6"]], "\u6ce8\u518c Server \u8fdb\u7a0b": [[122, "server"]], "\u6ce8\u518c\u5e94\u7528\u7a0b\u5e8f": [[122, "id3"]], "\u6ce8\u610f": [[111, "id5"], [122, "id2"]], "\u6d41\u5f0f\u6253\u5370": [[116, "id5"]], "\u6d41\u5f0f\u8f93\u51fa": [[116, null]], "\u6d88\u606f\u57fa\u7c7b\uff08MessageBase\uff09": [[118, "messagebase"]], "\u6d88\u606f\u7c7b\uff08Msg\uff09": [[118, "msg"]], "\u6d88\u606f\uff08Message\uff09": [[107, "message"]], "\u6dfb\u52a0\u548c\u5220\u9664\u53c2\u4e0e\u8005": [[113, "id7"]], "\u72ec\u7acb\u8fdb\u7a0b\u6a21\u5f0f": [[121, "id5"]], "\u72fc\u4eba\u6740\u6e38\u620f": [[115, "id19"]], "\u7406\u89e3 AgentBase": [[112, "agentbase"]], "\u751f\u6210 System Prompt": [[123, "system-prompt"]], "\u76d1\u63a7": [[120, null]], "\u76ee\u5f55": [[115, "id2"], [123, "id3"]], "\u793a\u4f8b": [[117, "id5"]], "\u7b2c\u4e00\u6b65: \u51c6\u5907\u6a21\u578bAPI\u548c\u8bbe\u5b9a\u6a21\u578b\u914d\u7f6e": [[110, "api"]], "\u7b2c\u4e00\u6b65\uff1a\u51c6\u5907\u6a21\u578b": [[109, "id2"]], "\u7b2c\u4e09\u6b65\uff1a\u521d\u59cb\u5316AgentScope\u548cAgents": [[110, "agentscopeagents"]], "\u7b2c\u4e09\u6b65\uff1a\u667a\u80fd\u4f53\u5bf9\u8bdd": [[109, "id4"]], "\u7b2c\u4e8c\u6b65: \u521b\u5efa\u667a\u80fd\u4f53": [[109, "id3"]], "\u7b2c\u4e8c\u6b65\uff1a\u5b9a\u4e49\u6bcf\u4e2a\u667a\u80fd\u4f53\uff08Agent\uff09\u7684\u89d2\u8272": [[110, "agent"]], "\u7b2c\u4e94\u6b65\uff1a\u8fd0\u884c\u5e94\u7528": [[110, "id5"]], "\u7b2c\u56db\u6b65\uff1a\u6784\u5efa\u6e38\u620f\u903b\u8f91": [[110, "id3"]], "\u7b80\u8981\u4ecb\u7ecdAgentScope\u4e2d\u7684RAG": [[124, null]], "\u7ba1\u7406 Agent Server": [[121, "agent-server"]], "\u7ba1\u7406 Server \u8fdb\u7a0b": [[122, "id11"]], "\u7c7b\u522b": [[113, "id1"]], "\u7c7b\u578b\u6821\u9a8c": [[115, "id13"]], "\u7cfb\u7edf\u63d0\u793a\u4f18\u5316": [[123, null]], "\u7ed3\u679c\u89e3\u6790": [[115, null]], "\u80cc\u666f": [[115, "id3"], [123, "id2"]], "\u81ea\u5b9a\u4e49\u89e3\u6790\u5668": [[115, "id20"]], "\u89c6\u89c9\uff08Vision\uff09\u6a21\u578b": [[119, "id5"]], "\u89e3\u6790\u51fd\u6570": [[115, "id8"], [115, "id15"], [115, "id17"]], "\u89e3\u6790\u5668": [[115, "id10"]], "\u89e3\u6790\u5668\u6a21\u5757": [[115, "id4"]], "\u8bb0\u5f55\u5bf9\u8bdd\u6d88\u606f": [[111, "id2"]], "\u8bb0\u5f55\u7cfb\u7edf\u4fe1\u606f": [[111, "id3"]], "\u8bb0\u5fc6": [[118, null]], "\u8bbe\u7f6e\u65e5\u5fd7\u8bb0\u5f55\uff08Logger\uff09": [[111, "logger"]], "\u8bbe\u7f6e\u6d41\u5f0f\u8f93\u51fa": [[116, "id2"]], "\u8be6\u7ec6\u53c2\u6570": [[114, "id6"]], "\u8d21\u732e\u5230AgentScope": [[127, null]], "\u8fd0\u884c\u5e94\u7528\u7a0b\u5e8f": [[122, "id8"]], "\u8fdb\u9636\u7528\u6cd5": [[116, "id6"], [121, "id7"]], "\u8fde\u63a5 AgentScope Studio": [[121, "agentscope-studio"]], "\u914d\u7f6e\u65b9\u5f0f": [[114, "id3"]], "\u914d\u7f6e\u683c\u5f0f": [[114, "id4"]], "\u9489\u9489 (DingTalk)": [[126, "dingtalk"]], "\u975e\u89c6\u89c9\uff08Vision\uff09\u6a21\u578b": [[119, "vision"]], "\u9884\u5907": [[125, null]], "\u989d\u5916\u4f9d\u8d56": [[108, "id4"]]}, "docnames": ["agentscope", "agentscope.agents", "agentscope.agents.agent", "agentscope.agents.dialog_agent", "agentscope.agents.dict_dialog_agent", "agentscope.agents.operator", "agentscope.agents.rag_agent", "agentscope.agents.react_agent", "agentscope.agents.rpc_agent", "agentscope.agents.user_agent", "agentscope.constants", "agentscope.exception", "agentscope.logging", "agentscope.manager", "agentscope.memory", "agentscope.memory.memory", "agentscope.memory.temporary_memory", "agentscope.message", "agentscope.message.msg", "agentscope.message.placeholder", "agentscope.models", "agentscope.models.dashscope_model", "agentscope.models.gemini_model", "agentscope.models.litellm_model", "agentscope.models.model", "agentscope.models.ollama_model", "agentscope.models.openai_model", "agentscope.models.post_model", "agentscope.models.response", "agentscope.models.yi_model", "agentscope.models.zhipu_model", "agentscope.msghub", "agentscope.parsers", "agentscope.parsers.code_block_parser", "agentscope.parsers.json_object_parser", "agentscope.parsers.parser_base", "agentscope.parsers.regex_tagged_content_parser", "agentscope.parsers.tagged_content_parser", "agentscope.pipelines", "agentscope.pipelines.functional", "agentscope.pipelines.pipeline", "agentscope.prompt", "agentscope.rag", "agentscope.rag.knowledge", "agentscope.rag.knowledge_bank", "agentscope.rag.llama_index_knowledge", "agentscope.rpc", "agentscope.rpc.rpc_agent_client", "agentscope.rpc.rpc_agent_pb2", "agentscope.rpc.rpc_agent_pb2_grpc", "agentscope.serialize", "agentscope.server", "agentscope.server.launcher", "agentscope.server.servicer", "agentscope.service", "agentscope.service.browser", "agentscope.service.browser.web_browser", "agentscope.service.execute_code", "agentscope.service.execute_code.exec_notebook", "agentscope.service.execute_code.exec_python", "agentscope.service.execute_code.exec_shell", "agentscope.service.file", "agentscope.service.file.common", "agentscope.service.file.json", "agentscope.service.file.text", "agentscope.service.multi_modality", "agentscope.service.multi_modality.dashscope_services", "agentscope.service.multi_modality.openai_services", "agentscope.service.retrieval", "agentscope.service.retrieval.retrieval_from_list", "agentscope.service.retrieval.similarity", "agentscope.service.service_response", "agentscope.service.service_status", "agentscope.service.service_toolkit", "agentscope.service.sql_query", "agentscope.service.sql_query.mongodb", "agentscope.service.sql_query.mysql", "agentscope.service.sql_query.sqlite", "agentscope.service.text_processing", "agentscope.service.text_processing.summarization", "agentscope.service.web", "agentscope.service.web.arxiv", "agentscope.service.web.dblp", "agentscope.service.web.download", "agentscope.service.web.search", "agentscope.service.web.tripadvisor", "agentscope.service.web.web_digest", "agentscope.service.web.wikipedia", "agentscope.strategy", "agentscope.strategy.mixture_of_agent", "agentscope.studio", "agentscope.studio.utils", "agentscope.utils", "agentscope.utils.common", "agentscope.utils.token_utils", "agentscope.web", "agentscope.web.gradio", "agentscope.web.gradio.constants", "agentscope.web.gradio.studio", "agentscope.web.gradio.utils", "agentscope.web.workstation", "agentscope.web.workstation.workflow", "agentscope.web.workstation.workflow_dag", "agentscope.web.workstation.workflow_node", "agentscope.web.workstation.workflow_utils", "index", "modules", "tutorial/101-agentscope", "tutorial/102-installation", "tutorial/103-example", "tutorial/104-usecase", "tutorial/105-logging", "tutorial/201-agent", "tutorial/202-pipeline", "tutorial/203-model", "tutorial/203-parser", "tutorial/203-stream", "tutorial/204-service", "tutorial/205-memory", "tutorial/206-prompt", "tutorial/207-monitor", "tutorial/208-distribute", "tutorial/209-gui", "tutorial/209-prompt_opt", "tutorial/210-rag", "tutorial/211-web", "tutorial/301-community", "tutorial/302-contribute", "tutorial/contribute", "tutorial/main"], "envversion": {"sphinx": 62, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.viewcode": 1}, "filenames": ["agentscope.rst", "agentscope.agents.rst", "agentscope.agents.agent.rst", "agentscope.agents.dialog_agent.rst", "agentscope.agents.dict_dialog_agent.rst", "agentscope.agents.operator.rst", "agentscope.agents.rag_agent.rst", "agentscope.agents.react_agent.rst", "agentscope.agents.rpc_agent.rst", "agentscope.agents.user_agent.rst", "agentscope.constants.rst", "agentscope.exception.rst", "agentscope.logging.rst", "agentscope.manager.rst", "agentscope.memory.rst", "agentscope.memory.memory.rst", "agentscope.memory.temporary_memory.rst", "agentscope.message.rst", "agentscope.message.msg.rst", "agentscope.message.placeholder.rst", "agentscope.models.rst", "agentscope.models.dashscope_model.rst", "agentscope.models.gemini_model.rst", "agentscope.models.litellm_model.rst", "agentscope.models.model.rst", "agentscope.models.ollama_model.rst", "agentscope.models.openai_model.rst", "agentscope.models.post_model.rst", "agentscope.models.response.rst", "agentscope.models.yi_model.rst", "agentscope.models.zhipu_model.rst", "agentscope.msghub.rst", "agentscope.parsers.rst", "agentscope.parsers.code_block_parser.rst", "agentscope.parsers.json_object_parser.rst", "agentscope.parsers.parser_base.rst", "agentscope.parsers.regex_tagged_content_parser.rst", "agentscope.parsers.tagged_content_parser.rst", "agentscope.pipelines.rst", "agentscope.pipelines.functional.rst", "agentscope.pipelines.pipeline.rst", "agentscope.prompt.rst", "agentscope.rag.rst", "agentscope.rag.knowledge.rst", "agentscope.rag.knowledge_bank.rst", "agentscope.rag.llama_index_knowledge.rst", "agentscope.rpc.rst", "agentscope.rpc.rpc_agent_client.rst", "agentscope.rpc.rpc_agent_pb2.rst", "agentscope.rpc.rpc_agent_pb2_grpc.rst", "agentscope.serialize.rst", "agentscope.server.rst", "agentscope.server.launcher.rst", "agentscope.server.servicer.rst", "agentscope.service.rst", "agentscope.service.browser.rst", "agentscope.service.browser.web_browser.rst", "agentscope.service.execute_code.rst", "agentscope.service.execute_code.exec_notebook.rst", "agentscope.service.execute_code.exec_python.rst", "agentscope.service.execute_code.exec_shell.rst", "agentscope.service.file.rst", "agentscope.service.file.common.rst", "agentscope.service.file.json.rst", "agentscope.service.file.text.rst", "agentscope.service.multi_modality.rst", "agentscope.service.multi_modality.dashscope_services.rst", "agentscope.service.multi_modality.openai_services.rst", "agentscope.service.retrieval.rst", "agentscope.service.retrieval.retrieval_from_list.rst", "agentscope.service.retrieval.similarity.rst", "agentscope.service.service_response.rst", "agentscope.service.service_status.rst", "agentscope.service.service_toolkit.rst", "agentscope.service.sql_query.rst", "agentscope.service.sql_query.mongodb.rst", "agentscope.service.sql_query.mysql.rst", "agentscope.service.sql_query.sqlite.rst", "agentscope.service.text_processing.rst", "agentscope.service.text_processing.summarization.rst", "agentscope.service.web.rst", "agentscope.service.web.arxiv.rst", "agentscope.service.web.dblp.rst", "agentscope.service.web.download.rst", "agentscope.service.web.search.rst", "agentscope.service.web.tripadvisor.rst", "agentscope.service.web.web_digest.rst", "agentscope.service.web.wikipedia.rst", "agentscope.strategy.rst", "agentscope.strategy.mixture_of_agent.rst", "agentscope.studio.rst", "agentscope.studio.utils.rst", "agentscope.utils.rst", "agentscope.utils.common.rst", "agentscope.utils.token_utils.rst", "agentscope.web.rst", "agentscope.web.gradio.rst", "agentscope.web.gradio.constants.rst", "agentscope.web.gradio.studio.rst", "agentscope.web.gradio.utils.rst", "agentscope.web.workstation.rst", "agentscope.web.workstation.workflow.rst", "agentscope.web.workstation.workflow_dag.rst", "agentscope.web.workstation.workflow_node.rst", "agentscope.web.workstation.workflow_utils.rst", "index.rst", "modules.rst", "tutorial/101-agentscope.md", "tutorial/102-installation.md", "tutorial/103-example.md", "tutorial/104-usecase.md", "tutorial/105-logging.md", "tutorial/201-agent.md", "tutorial/202-pipeline.md", "tutorial/203-model.md", "tutorial/203-parser.md", "tutorial/203-stream.md", "tutorial/204-service.md", "tutorial/205-memory.md", "tutorial/206-prompt.md", "tutorial/207-monitor.md", "tutorial/208-distribute.md", "tutorial/209-gui.md", "tutorial/209-prompt_opt.md", "tutorial/210-rag.md", "tutorial/211-web.md", "tutorial/301-community.md", "tutorial/302-contribute.md", "tutorial/contribute.rst", "tutorial/main.md"], "indexentries": {"__init__() \uff08agentscope.agents.agent.agentbase \u65b9\u6cd5\uff09": [[2, "agentscope.agents.agent.AgentBase.__init__", false]], "__init__() \uff08agentscope.agents.agent.distconf \u65b9\u6cd5\uff09": [[2, "agentscope.agents.agent.DistConf.__init__", false]], "__init__() \uff08agentscope.agents.agentbase \u65b9\u6cd5\uff09": [[1, "agentscope.agents.AgentBase.__init__", false]], "__init__() \uff08agentscope.agents.dialog_agent.dialogagent \u65b9\u6cd5\uff09": [[3, "agentscope.agents.dialog_agent.DialogAgent.__init__", false]], "__init__() \uff08agentscope.agents.dialogagent \u65b9\u6cd5\uff09": [[1, "agentscope.agents.DialogAgent.__init__", false]], "__init__() \uff08agentscope.agents.dict_dialog_agent.dictdialogagent \u65b9\u6cd5\uff09": [[4, "agentscope.agents.dict_dialog_agent.DictDialogAgent.__init__", false]], "__init__() \uff08agentscope.agents.dictdialogagent \u65b9\u6cd5\uff09": [[1, "agentscope.agents.DictDialogAgent.__init__", false]], "__init__() \uff08agentscope.agents.distconf \u65b9\u6cd5\uff09": [[1, "agentscope.agents.DistConf.__init__", false]], "__init__() \uff08agentscope.agents.llamaindexagent \u65b9\u6cd5\uff09": [[1, "agentscope.agents.LlamaIndexAgent.__init__", false]], "__init__() \uff08agentscope.agents.rag_agent.llamaindexagent \u65b9\u6cd5\uff09": [[6, "agentscope.agents.rag_agent.LlamaIndexAgent.__init__", false]], "__init__() \uff08agentscope.agents.react_agent.reactagent \u65b9\u6cd5\uff09": [[7, "agentscope.agents.react_agent.ReActAgent.__init__", false]], "__init__() \uff08agentscope.agents.reactagent \u65b9\u6cd5\uff09": [[1, "agentscope.agents.ReActAgent.__init__", false]], "__init__() \uff08agentscope.agents.rpc_agent.rpcagent \u65b9\u6cd5\uff09": [[8, "agentscope.agents.rpc_agent.RpcAgent.__init__", false]], "__init__() \uff08agentscope.agents.user_agent.useragent \u65b9\u6cd5\uff09": [[9, "agentscope.agents.user_agent.UserAgent.__init__", false]], "__init__() \uff08agentscope.agents.useragent \u65b9\u6cd5\uff09": [[1, "agentscope.agents.UserAgent.__init__", false]], "__init__() \uff08agentscope.exception.agentservererror \u65b9\u6cd5\uff09": [[11, "agentscope.exception.AgentServerError.__init__", false]], "__init__() \uff08agentscope.exception.functioncallerror \u65b9\u6cd5\uff09": [[11, "agentscope.exception.FunctionCallError.__init__", false]], "__init__() \uff08agentscope.exception.quotaexceedederror \u65b9\u6cd5\uff09": [[11, "agentscope.exception.QuotaExceededError.__init__", false]], "__init__() \uff08agentscope.exception.responseparsingerror \u65b9\u6cd5\uff09": [[11, "agentscope.exception.ResponseParsingError.__init__", false]], "__init__() \uff08agentscope.exception.studioerror \u65b9\u6cd5\uff09": [[11, "agentscope.exception.StudioError.__init__", false]], "__init__() \uff08agentscope.exception.tagnotfounderror \u65b9\u6cd5\uff09": [[11, "agentscope.exception.TagNotFoundError.__init__", false]], "__init__() \uff08agentscope.manager.asmanager \u65b9\u6cd5\uff09": [[13, "agentscope.manager.ASManager.__init__", false]], "__init__() \uff08agentscope.manager.filemanager \u65b9\u6cd5\uff09": [[13, "agentscope.manager.FileManager.__init__", false]], "__init__() \uff08agentscope.manager.modelmanager \u65b9\u6cd5\uff09": [[13, "agentscope.manager.ModelManager.__init__", false]], "__init__() \uff08agentscope.manager.monitormanager \u65b9\u6cd5\uff09": [[13, "agentscope.manager.MonitorManager.__init__", false]], "__init__() \uff08agentscope.memory.temporary_memory.temporarymemory \u65b9\u6cd5\uff09": [[16, "agentscope.memory.temporary_memory.TemporaryMemory.__init__", false]], "__init__() \uff08agentscope.memory.temporarymemory \u65b9\u6cd5\uff09": [[14, "agentscope.memory.TemporaryMemory.__init__", false]], "__init__() \uff08agentscope.message.msg \u65b9\u6cd5\uff09": [[17, "agentscope.message.Msg.__init__", false]], "__init__() \uff08agentscope.message.msg.msg \u65b9\u6cd5\uff09": [[18, "agentscope.message.msg.Msg.__init__", false]], "__init__() \uff08agentscope.message.placeholder.placeholdermessage \u65b9\u6cd5\uff09": [[19, "agentscope.message.placeholder.PlaceholderMessage.__init__", false]], "__init__() \uff08agentscope.message.placeholdermessage \u65b9\u6cd5\uff09": [[17, "agentscope.message.PlaceholderMessage.__init__", false]], "__init__() \uff08agentscope.models.dashscope_model.dashscopechatwrapper \u65b9\u6cd5\uff09": [[21, "agentscope.models.dashscope_model.DashScopeChatWrapper.__init__", false]], "__init__() \uff08agentscope.models.dashscope_model.dashscopewrapperbase \u65b9\u6cd5\uff09": [[21, "agentscope.models.dashscope_model.DashScopeWrapperBase.__init__", false]], "__init__() \uff08agentscope.models.dashscopechatwrapper \u65b9\u6cd5\uff09": [[20, "agentscope.models.DashScopeChatWrapper.__init__", false]], "__init__() \uff08agentscope.models.gemini_model.geminichatwrapper \u65b9\u6cd5\uff09": [[22, "agentscope.models.gemini_model.GeminiChatWrapper.__init__", false]], "__init__() \uff08agentscope.models.gemini_model.geminiwrapperbase \u65b9\u6cd5\uff09": [[22, "agentscope.models.gemini_model.GeminiWrapperBase.__init__", false]], "__init__() \uff08agentscope.models.geminichatwrapper \u65b9\u6cd5\uff09": [[20, "agentscope.models.GeminiChatWrapper.__init__", false]], "__init__() \uff08agentscope.models.litellm_model.litellmchatwrapper \u65b9\u6cd5\uff09": [[23, "agentscope.models.litellm_model.LiteLLMChatWrapper.__init__", false]], "__init__() \uff08agentscope.models.litellm_model.litellmwrapperbase \u65b9\u6cd5\uff09": [[23, "agentscope.models.litellm_model.LiteLLMWrapperBase.__init__", false]], "__init__() \uff08agentscope.models.litellmchatwrapper \u65b9\u6cd5\uff09": [[20, "agentscope.models.LiteLLMChatWrapper.__init__", false]], "__init__() \uff08agentscope.models.model.modelwrapperbase \u65b9\u6cd5\uff09": [[24, "agentscope.models.model.ModelWrapperBase.__init__", false]], "__init__() \uff08agentscope.models.modelresponse \u65b9\u6cd5\uff09": [[20, "agentscope.models.ModelResponse.__init__", false]], "__init__() \uff08agentscope.models.modelwrapperbase \u65b9\u6cd5\uff09": [[20, "agentscope.models.ModelWrapperBase.__init__", false]], "__init__() \uff08agentscope.models.ollama_model.ollamachatwrapper \u65b9\u6cd5\uff09": [[25, "agentscope.models.ollama_model.OllamaChatWrapper.__init__", false]], "__init__() \uff08agentscope.models.ollama_model.ollamawrapperbase \u65b9\u6cd5\uff09": [[25, "agentscope.models.ollama_model.OllamaWrapperBase.__init__", false]], "__init__() \uff08agentscope.models.ollamachatwrapper \u65b9\u6cd5\uff09": [[20, "agentscope.models.OllamaChatWrapper.__init__", false]], "__init__() \uff08agentscope.models.openai_model.openaichatwrapper \u65b9\u6cd5\uff09": [[26, "agentscope.models.openai_model.OpenAIChatWrapper.__init__", false]], "__init__() \uff08agentscope.models.openai_model.openaiwrapperbase \u65b9\u6cd5\uff09": [[26, "agentscope.models.openai_model.OpenAIWrapperBase.__init__", false]], "__init__() \uff08agentscope.models.openaichatwrapper \u65b9\u6cd5\uff09": [[20, "agentscope.models.OpenAIChatWrapper.__init__", false]], "__init__() \uff08agentscope.models.openaiwrapperbase \u65b9\u6cd5\uff09": [[20, "agentscope.models.OpenAIWrapperBase.__init__", false]], "__init__() \uff08agentscope.models.post_model.postapimodelwrapperbase \u65b9\u6cd5\uff09": [[27, "agentscope.models.post_model.PostAPIModelWrapperBase.__init__", false]], "__init__() \uff08agentscope.models.postapimodelwrapperbase \u65b9\u6cd5\uff09": [[20, "agentscope.models.PostAPIModelWrapperBase.__init__", false]], "__init__() \uff08agentscope.models.response.modelresponse \u65b9\u6cd5\uff09": [[28, "agentscope.models.response.ModelResponse.__init__", false]], "__init__() \uff08agentscope.models.yi_model.yichatwrapper \u65b9\u6cd5\uff09": [[29, "agentscope.models.yi_model.YiChatWrapper.__init__", false]], "__init__() \uff08agentscope.models.yichatwrapper \u65b9\u6cd5\uff09": [[20, "agentscope.models.YiChatWrapper.__init__", false]], "__init__() \uff08agentscope.models.zhipu_model.zhipuaichatwrapper \u65b9\u6cd5\uff09": [[30, "agentscope.models.zhipu_model.ZhipuAIChatWrapper.__init__", false]], "__init__() \uff08agentscope.models.zhipu_model.zhipuaiwrapperbase \u65b9\u6cd5\uff09": [[30, "agentscope.models.zhipu_model.ZhipuAIWrapperBase.__init__", false]], "__init__() \uff08agentscope.models.zhipuaichatwrapper \u65b9\u6cd5\uff09": [[20, "agentscope.models.ZhipuAIChatWrapper.__init__", false]], "__init__() \uff08agentscope.msghub.msghubmanager \u65b9\u6cd5\uff09": [[31, "agentscope.msghub.MsgHubManager.__init__", false]], "__init__() \uff08agentscope.parsers.code_block_parser.markdowncodeblockparser \u65b9\u6cd5\uff09": [[33, "agentscope.parsers.code_block_parser.MarkdownCodeBlockParser.__init__", false]], "__init__() \uff08agentscope.parsers.json_object_parser.markdownjsondictparser \u65b9\u6cd5\uff09": [[34, "agentscope.parsers.json_object_parser.MarkdownJsonDictParser.__init__", false]], "__init__() \uff08agentscope.parsers.json_object_parser.markdownjsonobjectparser \u65b9\u6cd5\uff09": [[34, "agentscope.parsers.json_object_parser.MarkdownJsonObjectParser.__init__", false]], "__init__() \uff08agentscope.parsers.markdowncodeblockparser \u65b9\u6cd5\uff09": [[32, "agentscope.parsers.MarkdownCodeBlockParser.__init__", false]], "__init__() \uff08agentscope.parsers.markdownjsondictparser \u65b9\u6cd5\uff09": [[32, "agentscope.parsers.MarkdownJsonDictParser.__init__", false]], "__init__() \uff08agentscope.parsers.markdownjsonobjectparser \u65b9\u6cd5\uff09": [[32, "agentscope.parsers.MarkdownJsonObjectParser.__init__", false]], "__init__() \uff08agentscope.parsers.multitaggedcontentparser \u65b9\u6cd5\uff09": [[32, "agentscope.parsers.MultiTaggedContentParser.__init__", false]], "__init__() \uff08agentscope.parsers.parser_base.dictfiltermixin \u65b9\u6cd5\uff09": [[35, "agentscope.parsers.parser_base.DictFilterMixin.__init__", false]], "__init__() \uff08agentscope.parsers.regex_tagged_content_parser.regextaggedcontentparser \u65b9\u6cd5\uff09": [[36, "agentscope.parsers.regex_tagged_content_parser.RegexTaggedContentParser.__init__", false]], "__init__() \uff08agentscope.parsers.regextaggedcontentparser \u65b9\u6cd5\uff09": [[32, "agentscope.parsers.RegexTaggedContentParser.__init__", false]], "__init__() \uff08agentscope.parsers.tagged_content_parser.multitaggedcontentparser \u65b9\u6cd5\uff09": [[37, "agentscope.parsers.tagged_content_parser.MultiTaggedContentParser.__init__", false]], "__init__() \uff08agentscope.parsers.tagged_content_parser.taggedcontent \u65b9\u6cd5\uff09": [[37, "agentscope.parsers.tagged_content_parser.TaggedContent.__init__", false]], "__init__() \uff08agentscope.parsers.taggedcontent \u65b9\u6cd5\uff09": [[32, "agentscope.parsers.TaggedContent.__init__", false]], "__init__() \uff08agentscope.pipelines.forlooppipeline \u65b9\u6cd5\uff09": [[38, "agentscope.pipelines.ForLoopPipeline.__init__", false]], "__init__() \uff08agentscope.pipelines.ifelsepipeline \u65b9\u6cd5\uff09": [[38, "agentscope.pipelines.IfElsePipeline.__init__", false]], "__init__() \uff08agentscope.pipelines.pipeline.forlooppipeline \u65b9\u6cd5\uff09": [[40, "agentscope.pipelines.pipeline.ForLoopPipeline.__init__", false]], "__init__() \uff08agentscope.pipelines.pipeline.ifelsepipeline \u65b9\u6cd5\uff09": [[40, "agentscope.pipelines.pipeline.IfElsePipeline.__init__", false]], "__init__() \uff08agentscope.pipelines.pipeline.pipelinebase \u65b9\u6cd5\uff09": [[40, "agentscope.pipelines.pipeline.PipelineBase.__init__", false]], "__init__() \uff08agentscope.pipelines.pipeline.sequentialpipeline \u65b9\u6cd5\uff09": [[40, "agentscope.pipelines.pipeline.SequentialPipeline.__init__", false]], "__init__() \uff08agentscope.pipelines.pipeline.switchpipeline \u65b9\u6cd5\uff09": [[40, "agentscope.pipelines.pipeline.SwitchPipeline.__init__", false]], "__init__() \uff08agentscope.pipelines.pipeline.whilelooppipeline \u65b9\u6cd5\uff09": [[40, "agentscope.pipelines.pipeline.WhileLoopPipeline.__init__", false]], "__init__() \uff08agentscope.pipelines.pipelinebase \u65b9\u6cd5\uff09": [[38, "agentscope.pipelines.PipelineBase.__init__", false]], "__init__() \uff08agentscope.pipelines.sequentialpipeline \u65b9\u6cd5\uff09": [[38, "agentscope.pipelines.SequentialPipeline.__init__", false]], "__init__() \uff08agentscope.pipelines.switchpipeline \u65b9\u6cd5\uff09": [[38, "agentscope.pipelines.SwitchPipeline.__init__", false]], "__init__() \uff08agentscope.pipelines.whilelooppipeline \u65b9\u6cd5\uff09": [[38, "agentscope.pipelines.WhileLoopPipeline.__init__", false]], "__init__() \uff08agentscope.prompt.chinesesystempromptgenerator \u65b9\u6cd5\uff09": [[41, "agentscope.prompt.ChineseSystemPromptGenerator.__init__", false]], "__init__() \uff08agentscope.prompt.englishsystempromptgenerator \u65b9\u6cd5\uff09": [[41, "agentscope.prompt.EnglishSystemPromptGenerator.__init__", false]], "__init__() \uff08agentscope.prompt.systempromptcomparer \u65b9\u6cd5\uff09": [[41, "agentscope.prompt.SystemPromptComparer.__init__", false]], "__init__() \uff08agentscope.prompt.systempromptgeneratorbase \u65b9\u6cd5\uff09": [[41, "agentscope.prompt.SystemPromptGeneratorBase.__init__", false]], "__init__() \uff08agentscope.prompt.systempromptoptimizer \u65b9\u6cd5\uff09": [[41, "agentscope.prompt.SystemPromptOptimizer.__init__", false]], "__init__() \uff08agentscope.rag.knowledge \u65b9\u6cd5\uff09": [[42, "agentscope.rag.Knowledge.__init__", false]], "__init__() \uff08agentscope.rag.knowledge.knowledge \u65b9\u6cd5\uff09": [[43, "agentscope.rag.knowledge.Knowledge.__init__", false]], "__init__() \uff08agentscope.rag.knowledge_bank.knowledgebank \u65b9\u6cd5\uff09": [[44, "agentscope.rag.knowledge_bank.KnowledgeBank.__init__", false]], "__init__() \uff08agentscope.rag.knowledgebank \u65b9\u6cd5\uff09": [[42, "agentscope.rag.KnowledgeBank.__init__", false]], "__init__() \uff08agentscope.rag.llama_index_knowledge.llamaindexknowledge \u65b9\u6cd5\uff09": [[45, "agentscope.rag.llama_index_knowledge.LlamaIndexKnowledge.__init__", false]], "__init__() \uff08agentscope.rpc.responsestub \u65b9\u6cd5\uff09": [[46, "agentscope.rpc.ResponseStub.__init__", false]], "__init__() \uff08agentscope.rpc.rpc_agent_client.responsestub \u65b9\u6cd5\uff09": [[47, "agentscope.rpc.rpc_agent_client.ResponseStub.__init__", false]], "__init__() \uff08agentscope.rpc.rpc_agent_client.rpcagentclient \u65b9\u6cd5\uff09": [[47, "agentscope.rpc.rpc_agent_client.RpcAgentClient.__init__", false]], "__init__() \uff08agentscope.rpc.rpc_agent_pb2_grpc.rpcagentstub \u65b9\u6cd5\uff09": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgentStub.__init__", false]], "__init__() \uff08agentscope.rpc.rpcagentclient \u65b9\u6cd5\uff09": [[46, "agentscope.rpc.RpcAgentClient.__init__", false]], "__init__() \uff08agentscope.rpc.rpcagentstub \u65b9\u6cd5\uff09": [[46, "agentscope.rpc.RpcAgentStub.__init__", false]], "__init__() \uff08agentscope.server.agentserverservicer \u65b9\u6cd5\uff09": [[51, "agentscope.server.AgentServerServicer.__init__", false]], "__init__() \uff08agentscope.server.launcher.rpcagentserverlauncher \u65b9\u6cd5\uff09": [[52, "agentscope.server.launcher.RpcAgentServerLauncher.__init__", false]], "__init__() \uff08agentscope.server.rpcagentserverlauncher \u65b9\u6cd5\uff09": [[51, "agentscope.server.RpcAgentServerLauncher.__init__", false]], "__init__() \uff08agentscope.server.servicer.agentserverservicer \u65b9\u6cd5\uff09": [[53, "agentscope.server.servicer.AgentServerServicer.__init__", false]], "__init__() \uff08agentscope.service.browser.web_browser.webbrowser \u65b9\u6cd5\uff09": [[56, "agentscope.service.browser.web_browser.WebBrowser.__init__", false]], "__init__() \uff08agentscope.service.execute_code.exec_notebook.notebookexecutor \u65b9\u6cd5\uff09": [[58, "agentscope.service.execute_code.exec_notebook.NoteBookExecutor.__init__", false]], "__init__() \uff08agentscope.service.notebookexecutor \u65b9\u6cd5\uff09": [[54, "agentscope.service.NoteBookExecutor.__init__", false]], "__init__() \uff08agentscope.service.service_response.serviceresponse \u65b9\u6cd5\uff09": [[71, "agentscope.service.service_response.ServiceResponse.__init__", false]], "__init__() \uff08agentscope.service.service_toolkit.servicefunction \u65b9\u6cd5\uff09": [[73, "agentscope.service.service_toolkit.ServiceFunction.__init__", false]], "__init__() \uff08agentscope.service.service_toolkit.servicetoolkit \u65b9\u6cd5\uff09": [[73, "agentscope.service.service_toolkit.ServiceToolkit.__init__", false]], "__init__() \uff08agentscope.service.serviceresponse \u65b9\u6cd5\uff09": [[54, "agentscope.service.ServiceResponse.__init__", false]], "__init__() \uff08agentscope.service.servicetoolkit \u65b9\u6cd5\uff09": [[54, "agentscope.service.ServiceToolkit.__init__", false]], "__init__() \uff08agentscope.service.webbrowser \u65b9\u6cd5\uff09": [[54, "agentscope.service.WebBrowser.__init__", false]], "__init__() \uff08agentscope.strategy.mixture_of_agent.mixtureofagents \u65b9\u6cd5\uff09": [[89, "agentscope.strategy.mixture_of_agent.MixtureOfAgents.__init__", false]], "__init__() \uff08agentscope.strategy.mixtureofagents \u65b9\u6cd5\uff09": [[88, "agentscope.strategy.MixtureOfAgents.__init__", false]], "__init__() \uff08agentscope.utils.common.importerrorreporter \u65b9\u6cd5\uff09": [[93, "agentscope.utils.common.ImportErrorReporter.__init__", false]], "__init__() \uff08agentscope.web.workstation.workflow_dag.asdigraph \u65b9\u6cd5\uff09": [[102, "agentscope.web.workstation.workflow_dag.ASDiGraph.__init__", false]], "__init__() \uff08agentscope.web.workstation.workflow_node.bingsearchservicenode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.BingSearchServiceNode.__init__", false]], "__init__() \uff08agentscope.web.workstation.workflow_node.copynode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.CopyNode.__init__", false]], "__init__() \uff08agentscope.web.workstation.workflow_node.dialogagentnode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.DialogAgentNode.__init__", false]], "__init__() \uff08agentscope.web.workstation.workflow_node.dictdialogagentnode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.DictDialogAgentNode.__init__", false]], "__init__() \uff08agentscope.web.workstation.workflow_node.forlooppipelinenode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.ForLoopPipelineNode.__init__", false]], "__init__() \uff08agentscope.web.workstation.workflow_node.googlesearchservicenode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.GoogleSearchServiceNode.__init__", false]], "__init__() \uff08agentscope.web.workstation.workflow_node.ifelsepipelinenode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.IfElsePipelineNode.__init__", false]], "__init__() \uff08agentscope.web.workstation.workflow_node.modelnode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.ModelNode.__init__", false]], "__init__() \uff08agentscope.web.workstation.workflow_node.msghubnode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.MsgHubNode.__init__", false]], "__init__() \uff08agentscope.web.workstation.workflow_node.msgnode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.MsgNode.__init__", false]], "__init__() \uff08agentscope.web.workstation.workflow_node.placeholdernode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.PlaceHolderNode.__init__", false]], "__init__() \uff08agentscope.web.workstation.workflow_node.pythonservicenode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.PythonServiceNode.__init__", false]], "__init__() \uff08agentscope.web.workstation.workflow_node.reactagentnode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.ReActAgentNode.__init__", false]], "__init__() \uff08agentscope.web.workstation.workflow_node.readtextservicenode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.ReadTextServiceNode.__init__", false]], "__init__() \uff08agentscope.web.workstation.workflow_node.sequentialpipelinenode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.SequentialPipelineNode.__init__", false]], "__init__() \uff08agentscope.web.workstation.workflow_node.switchpipelinenode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.SwitchPipelineNode.__init__", false]], "__init__() \uff08agentscope.web.workstation.workflow_node.useragentnode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.UserAgentNode.__init__", false]], "__init__() \uff08agentscope.web.workstation.workflow_node.whilelooppipelinenode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.WhileLoopPipelineNode.__init__", false]], "__init__() \uff08agentscope.web.workstation.workflow_node.workflownode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.WorkflowNode.__init__", false]], "__init__() \uff08agentscope.web.workstation.workflow_node.writetextservicenode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.WriteTextServiceNode.__init__", false]], "action_click() \uff08agentscope.service.browser.web_browser.webbrowser \u65b9\u6cd5\uff09": [[56, "agentscope.service.browser.web_browser.WebBrowser.action_click", false]], "action_click() \uff08agentscope.service.webbrowser \u65b9\u6cd5\uff09": [[54, "agentscope.service.WebBrowser.action_click", false]], "action_press_key() \uff08agentscope.service.browser.web_browser.webbrowser \u65b9\u6cd5\uff09": [[56, "agentscope.service.browser.web_browser.WebBrowser.action_press_key", false]], "action_press_key() \uff08agentscope.service.webbrowser \u65b9\u6cd5\uff09": [[54, "agentscope.service.WebBrowser.action_press_key", false]], "action_scroll_down() \uff08agentscope.service.browser.web_browser.webbrowser \u65b9\u6cd5\uff09": [[56, "agentscope.service.browser.web_browser.WebBrowser.action_scroll_down", false]], "action_scroll_down() \uff08agentscope.service.webbrowser \u65b9\u6cd5\uff09": [[54, "agentscope.service.WebBrowser.action_scroll_down", false]], "action_scroll_up() \uff08agentscope.service.browser.web_browser.webbrowser \u65b9\u6cd5\uff09": [[56, "agentscope.service.browser.web_browser.WebBrowser.action_scroll_up", false]], "action_scroll_up() \uff08agentscope.service.webbrowser \u65b9\u6cd5\uff09": [[54, "agentscope.service.WebBrowser.action_scroll_up", false]], "action_type() \uff08agentscope.service.browser.web_browser.webbrowser \u65b9\u6cd5\uff09": [[56, "agentscope.service.browser.web_browser.WebBrowser.action_type", false]], "action_type() \uff08agentscope.service.webbrowser \u65b9\u6cd5\uff09": [[54, "agentscope.service.WebBrowser.action_type", false]], "action_visit_url() \uff08agentscope.service.browser.web_browser.webbrowser \u65b9\u6cd5\uff09": [[56, "agentscope.service.browser.web_browser.WebBrowser.action_visit_url", false]], "action_visit_url() \uff08agentscope.service.webbrowser \u65b9\u6cd5\uff09": [[54, "agentscope.service.WebBrowser.action_visit_url", false]], "add() \uff08agentscope.memory.memory.memorybase \u65b9\u6cd5\uff09": [[15, "agentscope.memory.memory.MemoryBase.add", false]], "add() \uff08agentscope.memory.memorybase \u65b9\u6cd5\uff09": [[14, "agentscope.memory.MemoryBase.add", false]], "add() \uff08agentscope.memory.temporary_memory.temporarymemory \u65b9\u6cd5\uff09": [[16, "agentscope.memory.temporary_memory.TemporaryMemory.add", false]], "add() \uff08agentscope.memory.temporarymemory \u65b9\u6cd5\uff09": [[14, "agentscope.memory.TemporaryMemory.add", false]], "add() \uff08agentscope.msghub.msghubmanager \u65b9\u6cd5\uff09": [[31, "agentscope.msghub.MsgHubManager.add", false]], "add() \uff08agentscope.service.service_toolkit.servicetoolkit \u65b9\u6cd5\uff09": [[73, "agentscope.service.service_toolkit.ServiceToolkit.add", false]], "add() \uff08agentscope.service.servicetoolkit \u65b9\u6cd5\uff09": [[54, "agentscope.service.ServiceToolkit.add", false]], "add_as_node() \uff08agentscope.web.workstation.workflow_dag.asdigraph \u65b9\u6cd5\uff09": [[102, "agentscope.web.workstation.workflow_dag.ASDiGraph.add_as_node", false]], "add_data_as_knowledge() \uff08agentscope.rag.knowledge_bank.knowledgebank \u65b9\u6cd5\uff09": [[44, "agentscope.rag.knowledge_bank.KnowledgeBank.add_data_as_knowledge", false]], "add_data_as_knowledge() \uff08agentscope.rag.knowledgebank \u65b9\u6cd5\uff09": [[42, "agentscope.rag.KnowledgeBank.add_data_as_knowledge", false]], "add_rpcagentservicer_to_server()\uff08\u5728 agentscope.rpc \u6a21\u5757\u4e2d\uff09": [[46, "agentscope.rpc.add_RpcAgentServicer_to_server", false]], "add_rpcagentservicer_to_server()\uff08\u5728 agentscope.rpc.rpc_agent_pb2_grpc \u6a21\u5757\u4e2d\uff09": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.add_RpcAgentServicer_to_server", false]], "agent_exists() \uff08agentscope.server.agentserverservicer \u65b9\u6cd5\uff09": [[51, "agentscope.server.AgentServerServicer.agent_exists", false]], "agent_exists() \uff08agentscope.server.servicer.agentserverservicer \u65b9\u6cd5\uff09": [[53, "agentscope.server.servicer.AgentServerServicer.agent_exists", false]], "agent_id\uff08agentscope.agents.agent.agentbase \u5c5e\u6027\uff09": [[2, "agentscope.agents.agent.AgentBase.agent_id", false]], "agent_id\uff08agentscope.agents.agentbase \u5c5e\u6027\uff09": [[1, "agentscope.agents.AgentBase.agent_id", false]], "agentbase\uff08agentscope.agents \u4e2d\u7684\u7c7b\uff09": [[1, "agentscope.agents.AgentBase", false]], "agentbase\uff08agentscope.agents.agent \u4e2d\u7684\u7c7b\uff09": [[2, "agentscope.agents.agent.AgentBase", false]], "agentcallerror": [[11, "agentscope.exception.AgentCallError", false]], "agentcreationerror": [[11, "agentscope.exception.AgentCreationError", false]], "agentscope": [[0, "module-agentscope", false]], "agentscope.agents": [[1, "module-agentscope.agents", false]], "agentscope.agents.agent": [[2, "module-agentscope.agents.agent", false]], "agentscope.agents.dialog_agent": [[3, "module-agentscope.agents.dialog_agent", false]], "agentscope.agents.dict_dialog_agent": [[4, "module-agentscope.agents.dict_dialog_agent", false]], "agentscope.agents.operator": [[5, "module-agentscope.agents.operator", false]], "agentscope.agents.rag_agent": [[6, "module-agentscope.agents.rag_agent", false]], "agentscope.agents.react_agent": [[7, "module-agentscope.agents.react_agent", false]], "agentscope.agents.rpc_agent": [[8, "module-agentscope.agents.rpc_agent", false]], "agentscope.agents.user_agent": [[9, "module-agentscope.agents.user_agent", false]], "agentscope.constants": [[10, "module-agentscope.constants", false]], "agentscope.exception": [[11, "module-agentscope.exception", false]], "agentscope.logging": [[12, "module-agentscope.logging", false]], "agentscope.manager": [[13, "module-agentscope.manager", false]], "agentscope.memory": [[14, "module-agentscope.memory", false]], "agentscope.memory.memory": [[15, "module-agentscope.memory.memory", false]], "agentscope.memory.temporary_memory": [[16, "module-agentscope.memory.temporary_memory", false]], "agentscope.message": [[17, "module-agentscope.message", false]], "agentscope.message.msg": [[18, "module-agentscope.message.msg", false]], "agentscope.message.placeholder": [[19, "module-agentscope.message.placeholder", false]], "agentscope.models": [[20, "module-agentscope.models", false]], "agentscope.models.dashscope_model": [[21, "module-agentscope.models.dashscope_model", false]], "agentscope.models.gemini_model": [[22, "module-agentscope.models.gemini_model", false]], "agentscope.models.litellm_model": [[23, "module-agentscope.models.litellm_model", false]], "agentscope.models.model": [[24, "module-agentscope.models.model", false]], "agentscope.models.ollama_model": [[25, "module-agentscope.models.ollama_model", false]], "agentscope.models.openai_model": [[26, "module-agentscope.models.openai_model", false]], "agentscope.models.post_model": [[27, "module-agentscope.models.post_model", false]], "agentscope.models.response": [[28, "module-agentscope.models.response", false]], "agentscope.models.yi_model": [[29, "module-agentscope.models.yi_model", false]], "agentscope.models.zhipu_model": [[30, "module-agentscope.models.zhipu_model", false]], "agentscope.msghub": [[31, "module-agentscope.msghub", false]], "agentscope.parsers": [[32, "module-agentscope.parsers", false]], "agentscope.parsers.code_block_parser": [[33, "module-agentscope.parsers.code_block_parser", false]], "agentscope.parsers.json_object_parser": [[34, "module-agentscope.parsers.json_object_parser", false]], "agentscope.parsers.parser_base": [[35, "module-agentscope.parsers.parser_base", false]], "agentscope.parsers.regex_tagged_content_parser": [[36, "module-agentscope.parsers.regex_tagged_content_parser", false]], "agentscope.parsers.tagged_content_parser": [[37, "module-agentscope.parsers.tagged_content_parser", false]], "agentscope.pipelines": [[38, "module-agentscope.pipelines", false]], "agentscope.pipelines.functional": [[39, "module-agentscope.pipelines.functional", false]], "agentscope.pipelines.pipeline": [[40, "module-agentscope.pipelines.pipeline", false]], "agentscope.prompt": [[41, "module-agentscope.prompt", false]], "agentscope.rag": [[42, "module-agentscope.rag", false]], "agentscope.rag.knowledge": [[43, "module-agentscope.rag.knowledge", false]], "agentscope.rag.knowledge_bank": [[44, "module-agentscope.rag.knowledge_bank", false]], "agentscope.rag.llama_index_knowledge": [[45, "module-agentscope.rag.llama_index_knowledge", false]], "agentscope.rpc": [[46, "module-agentscope.rpc", false]], "agentscope.rpc.rpc_agent_client": [[47, "module-agentscope.rpc.rpc_agent_client", false]], "agentscope.rpc.rpc_agent_pb2": [[48, "module-agentscope.rpc.rpc_agent_pb2", false]], "agentscope.rpc.rpc_agent_pb2_grpc": [[49, "module-agentscope.rpc.rpc_agent_pb2_grpc", false]], "agentscope.serialize": [[50, "module-agentscope.serialize", false]], "agentscope.server": [[51, "module-agentscope.server", false]], "agentscope.server.launcher": [[52, "module-agentscope.server.launcher", false]], "agentscope.server.servicer": [[53, "module-agentscope.server.servicer", false]], "agentscope.service": [[54, "module-agentscope.service", false]], "agentscope.service.browser": [[55, "module-agentscope.service.browser", false]], "agentscope.service.browser.web_browser": [[56, "module-agentscope.service.browser.web_browser", false]], "agentscope.service.execute_code": [[57, "module-agentscope.service.execute_code", false]], "agentscope.service.execute_code.exec_notebook": [[58, "module-agentscope.service.execute_code.exec_notebook", false]], "agentscope.service.execute_code.exec_python": [[59, "module-agentscope.service.execute_code.exec_python", false]], "agentscope.service.execute_code.exec_shell": [[60, "module-agentscope.service.execute_code.exec_shell", false]], "agentscope.service.file": [[61, "module-agentscope.service.file", false]], "agentscope.service.file.common": [[62, "module-agentscope.service.file.common", false]], "agentscope.service.file.json": [[63, "module-agentscope.service.file.json", false]], "agentscope.service.file.text": [[64, "module-agentscope.service.file.text", false]], "agentscope.service.multi_modality": [[65, "module-agentscope.service.multi_modality", false]], "agentscope.service.multi_modality.dashscope_services": [[66, "module-agentscope.service.multi_modality.dashscope_services", false]], "agentscope.service.multi_modality.openai_services": [[67, "module-agentscope.service.multi_modality.openai_services", false]], "agentscope.service.retrieval": [[68, "module-agentscope.service.retrieval", false]], "agentscope.service.retrieval.retrieval_from_list": [[69, "module-agentscope.service.retrieval.retrieval_from_list", false]], "agentscope.service.retrieval.similarity": [[70, "module-agentscope.service.retrieval.similarity", false]], "agentscope.service.service_response": [[71, "module-agentscope.service.service_response", false]], "agentscope.service.service_status": [[72, "module-agentscope.service.service_status", false]], "agentscope.service.service_toolkit": [[73, "module-agentscope.service.service_toolkit", false]], "agentscope.service.sql_query": [[74, "module-agentscope.service.sql_query", false]], "agentscope.service.sql_query.mongodb": [[75, "module-agentscope.service.sql_query.mongodb", false]], "agentscope.service.sql_query.mysql": [[76, "module-agentscope.service.sql_query.mysql", false]], "agentscope.service.sql_query.sqlite": [[77, "module-agentscope.service.sql_query.sqlite", false]], "agentscope.service.text_processing": [[78, "module-agentscope.service.text_processing", false]], "agentscope.service.text_processing.summarization": [[79, "module-agentscope.service.text_processing.summarization", false]], "agentscope.service.web": [[80, "module-agentscope.service.web", false]], "agentscope.service.web.arxiv": [[81, "module-agentscope.service.web.arxiv", false]], "agentscope.service.web.dblp": [[82, "module-agentscope.service.web.dblp", false]], "agentscope.service.web.download": [[83, "module-agentscope.service.web.download", false]], "agentscope.service.web.search": [[84, "module-agentscope.service.web.search", false]], "agentscope.service.web.tripadvisor": [[85, "module-agentscope.service.web.tripadvisor", false]], "agentscope.service.web.web_digest": [[86, "module-agentscope.service.web.web_digest", false]], "agentscope.service.web.wikipedia": [[87, "module-agentscope.service.web.wikipedia", false]], "agentscope.strategy": [[88, "module-agentscope.strategy", false]], "agentscope.strategy.mixture_of_agent": [[89, "module-agentscope.strategy.mixture_of_agent", false]], "agentscope.studio": [[90, "module-agentscope.studio", false]], "agentscope.studio.utils": [[91, "module-agentscope.studio.utils", false]], "agentscope.utils": [[92, "module-agentscope.utils", false]], "agentscope.utils.common": [[93, "module-agentscope.utils.common", false]], "agentscope.utils.token_utils": [[94, "module-agentscope.utils.token_utils", false]], "agentscope.web": [[95, "module-agentscope.web", false]], "agentscope.web.gradio": [[96, "module-agentscope.web.gradio", false]], "agentscope.web.gradio.constants": [[97, "module-agentscope.web.gradio.constants", false]], "agentscope.web.gradio.studio": [[98, "module-agentscope.web.gradio.studio", false]], "agentscope.web.gradio.utils": [[99, "module-agentscope.web.gradio.utils", false]], "agentscope.web.workstation": [[100, "module-agentscope.web.workstation", false]], "agentscope.web.workstation.workflow": [[101, "module-agentscope.web.workstation.workflow", false]], "agentscope.web.workstation.workflow_dag": [[102, "module-agentscope.web.workstation.workflow_dag", false]], "agentscope.web.workstation.workflow_node": [[103, "module-agentscope.web.workstation.workflow_node", false]], "agentscope.web.workstation.workflow_utils": [[104, "module-agentscope.web.workstation.workflow_utils", false]], "agentservererror": [[11, "agentscope.exception.AgentServerError", false]], "agentservernotaliveerror": [[11, "agentscope.exception.AgentServerNotAliveError", false]], "agentserverservicer\uff08agentscope.server \u4e2d\u7684\u7c7b\uff09": [[51, "agentscope.server.AgentServerServicer", false]], "agentserverservicer\uff08agentscope.server.servicer \u4e2d\u7684\u7c7b\uff09": [[53, "agentscope.server.servicer.AgentServerServicer", false]], "agent\uff08agentscope.web.workstation.workflow_node.workflownodetype \u5c5e\u6027\uff09": [[103, "agentscope.web.workstation.workflow_node.WorkflowNodeType.AGENT", false]], "argumentnotfounderror": [[11, "agentscope.exception.ArgumentNotFoundError", false]], "argumenttypeerror": [[11, "agentscope.exception.ArgumentTypeError", false]], "aria_label\uff08agentscope.service.browser.web_browser.webelementinfo \u5c5e\u6027\uff09": [[56, "agentscope.service.browser.web_browser.WebElementInfo.aria_label", false]], "aria_label\uff08agentscope.service.webelementinfo \u5c5e\u6027\uff09": [[54, "agentscope.service.WebElementInfo.aria_label", false]], "arxiv_search()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.arxiv_search", false]], "arxiv_search()\uff08\u5728 agentscope.service.web.arxiv \u6a21\u5757\u4e2d\uff09": [[81, "agentscope.service.web.arxiv.arxiv_search", false]], "as_server()\uff08\u5728 agentscope.server \u6a21\u5757\u4e2d\uff09": [[51, "agentscope.server.as_server", false]], "as_server()\uff08\u5728 agentscope.server.launcher \u6a21\u5757\u4e2d\uff09": [[52, "agentscope.server.launcher.as_server", false]], "asdigraph\uff08agentscope.web.workstation.workflow_dag \u4e2d\u7684\u7c7b\uff09": [[102, "agentscope.web.workstation.workflow_dag.ASDiGraph", false]], "asmanager\uff08agentscope.manager \u4e2d\u7684\u7c7b\uff09": [[13, "agentscope.manager.ASManager", false]], "async_run_code_on_notebook() \uff08agentscope.service.execute_code.exec_notebook.notebookexecutor \u65b9\u6cd5\uff09": [[58, "agentscope.service.execute_code.exec_notebook.NoteBookExecutor.async_run_code_on_notebook", false]], "async_run_code_on_notebook() \uff08agentscope.service.notebookexecutor \u65b9\u6cd5\uff09": [[54, "agentscope.service.NoteBookExecutor.async_run_code_on_notebook", false]], "audio2text()\uff08\u5728 agentscope.web.gradio.utils \u6a21\u5757\u4e2d\uff09": [[99, "agentscope.web.gradio.utils.audio2text", false]], "bing_search()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.bing_search", false]], "bing_search()\uff08\u5728 agentscope.service.web.search \u6a21\u5757\u4e2d\uff09": [[84, "agentscope.service.web.search.bing_search", false]], "bingsearchservicenode\uff08agentscope.web.workstation.workflow_node \u4e2d\u7684\u7c7b\uff09": [[103, "agentscope.web.workstation.workflow_node.BingSearchServiceNode", false]], "broadcast() \uff08agentscope.msghub.msghubmanager \u65b9\u6cd5\uff09": [[31, "agentscope.msghub.MsgHubManager.broadcast", false]], "build_dag()\uff08\u5728 agentscope.web.workstation.workflow_dag \u6a21\u5757\u4e2d\uff09": [[102, "agentscope.web.workstation.workflow_dag.build_dag", false]], "cache_text_embedding() \uff08agentscope.manager.filemanager \u65b9\u6cd5\uff09": [[13, "agentscope.manager.FileManager.cache_text_embedding", false]], "call_agent_func() \uff08agentscope.rpc.rpc_agent_client.rpcagentclient \u65b9\u6cd5\uff09": [[47, "agentscope.rpc.rpc_agent_client.RpcAgentClient.call_agent_func", false]], "call_agent_func() \uff08agentscope.rpc.rpc_agent_pb2_grpc.rpcagentservicer \u65b9\u6cd5\uff09": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgentServicer.call_agent_func", false]], "call_agent_func() \uff08agentscope.rpc.rpcagentclient \u65b9\u6cd5\uff09": [[46, "agentscope.rpc.RpcAgentClient.call_agent_func", false]], "call_agent_func() \uff08agentscope.rpc.rpcagentservicer \u65b9\u6cd5\uff09": [[46, "agentscope.rpc.RpcAgentServicer.call_agent_func", false]], "call_agent_func() \uff08agentscope.server.agentserverservicer \u65b9\u6cd5\uff09": [[51, "agentscope.server.AgentServerServicer.call_agent_func", false]], "call_agent_func() \uff08agentscope.server.servicer.agentserverservicer \u65b9\u6cd5\uff09": [[53, "agentscope.server.servicer.AgentServerServicer.call_agent_func", false]], "call_agent_func()\uff08agentscope.rpc.rpc_agent_pb2_grpc.rpcagent \u9759\u6001\u65b9\u6cd5\uff09": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgent.call_agent_func", false]], "call_in_thread()\uff08\u5728 agentscope.rpc \u6a21\u5757\u4e2d\uff09": [[46, "agentscope.rpc.call_in_thread", false]], "call_in_thread()\uff08\u5728 agentscope.rpc.rpc_agent_client \u6a21\u5757\u4e2d\uff09": [[47, "agentscope.rpc.rpc_agent_client.call_in_thread", false]], "cells_length\uff08agentscope.service.execute_code.exec_notebook.notebookexecutor \u5c5e\u6027\uff09": [[58, "agentscope.service.execute_code.exec_notebook.NoteBookExecutor.cells_length", false]], "cells_length\uff08agentscope.service.notebookexecutor \u5c5e\u6027\uff09": [[54, "agentscope.service.NoteBookExecutor.cells_length", false]], "check_uuid()\uff08\u5728 agentscope.web.gradio.utils \u6a21\u5757\u4e2d\uff09": [[99, "agentscope.web.gradio.utils.check_uuid", false]], "chinesesystempromptgenerator\uff08agentscope.prompt \u4e2d\u7684\u7c7b\uff09": [[41, "agentscope.prompt.ChineseSystemPromptGenerator", false]], "clear() \uff08agentscope.memory.memory.memorybase \u65b9\u6cd5\uff09": [[15, "agentscope.memory.memory.MemoryBase.clear", false]], "clear() \uff08agentscope.memory.memorybase \u65b9\u6cd5\uff09": [[14, "agentscope.memory.MemoryBase.clear", false]], "clear() \uff08agentscope.memory.temporary_memory.temporarymemory \u65b9\u6cd5\uff09": [[16, "agentscope.memory.temporary_memory.TemporaryMemory.clear", false]], "clear() \uff08agentscope.memory.temporarymemory \u65b9\u6cd5\uff09": [[14, "agentscope.memory.TemporaryMemory.clear", false]], "clear_audience() \uff08agentscope.agents.agent.agentbase \u65b9\u6cd5\uff09": [[2, "agentscope.agents.agent.AgentBase.clear_audience", false]], "clear_audience() \uff08agentscope.agents.agentbase \u65b9\u6cd5\uff09": [[1, "agentscope.agents.AgentBase.clear_audience", false]], "clear_model_configs() \uff08agentscope.manager.modelmanager \u65b9\u6cd5\uff09": [[13, "agentscope.manager.ModelManager.clear_model_configs", false]], "clone_agent() \uff08agentscope.rpc.rpc_agent_client.rpcagentclient \u65b9\u6cd5\uff09": [[47, "agentscope.rpc.rpc_agent_client.RpcAgentClient.clone_agent", false]], "clone_agent() \uff08agentscope.rpc.rpc_agent_pb2_grpc.rpcagentservicer \u65b9\u6cd5\uff09": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgentServicer.clone_agent", false]], "clone_agent() \uff08agentscope.rpc.rpcagentclient \u65b9\u6cd5\uff09": [[46, "agentscope.rpc.RpcAgentClient.clone_agent", false]], "clone_agent() \uff08agentscope.rpc.rpcagentservicer \u65b9\u6cd5\uff09": [[46, "agentscope.rpc.RpcAgentServicer.clone_agent", false]], "clone_agent() \uff08agentscope.server.agentserverservicer \u65b9\u6cd5\uff09": [[51, "agentscope.server.AgentServerServicer.clone_agent", false]], "clone_agent() \uff08agentscope.server.servicer.agentserverservicer \u65b9\u6cd5\uff09": [[53, "agentscope.server.servicer.AgentServerServicer.clone_agent", false]], "clone_agent()\uff08agentscope.rpc.rpc_agent_pb2_grpc.rpcagent \u9759\u6001\u65b9\u6cd5\uff09": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgent.clone_agent", false]], "clone_instances() \uff08agentscope.agents.rpc_agent.rpcagent \u65b9\u6cd5\uff09": [[8, "agentscope.agents.rpc_agent.RpcAgent.clone_instances", false]], "close() \uff08agentscope.service.browser.web_browser.webbrowser \u65b9\u6cd5\uff09": [[56, "agentscope.service.browser.web_browser.WebBrowser.close", false]], "close() \uff08agentscope.service.webbrowser \u65b9\u6cd5\uff09": [[54, "agentscope.service.WebBrowser.close", false]], "code_dir\uff08agentscope.manager.filemanager \u5c5e\u6027\uff09": [[13, "agentscope.manager.FileManager.code_dir", false]], "compare_in_dialog() \uff08agentscope.prompt.systempromptcomparer \u65b9\u6cd5\uff09": [[41, "agentscope.prompt.SystemPromptComparer.compare_in_dialog", false]], "compare_with_queries() \uff08agentscope.prompt.systempromptcomparer \u65b9\u6cd5\uff09": [[41, "agentscope.prompt.SystemPromptComparer.compare_with_queries", false]], "compile() \uff08agentscope.web.workstation.workflow_dag.asdigraph \u65b9\u6cd5\uff09": [[102, "agentscope.web.workstation.workflow_dag.ASDiGraph.compile", false]], "compile() \uff08agentscope.web.workstation.workflow_node.bingsearchservicenode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.BingSearchServiceNode.compile", false]], "compile() \uff08agentscope.web.workstation.workflow_node.copynode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.CopyNode.compile", false]], "compile() \uff08agentscope.web.workstation.workflow_node.dialogagentnode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.DialogAgentNode.compile", false]], "compile() \uff08agentscope.web.workstation.workflow_node.dictdialogagentnode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.DictDialogAgentNode.compile", false]], "compile() \uff08agentscope.web.workstation.workflow_node.forlooppipelinenode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.ForLoopPipelineNode.compile", false]], "compile() \uff08agentscope.web.workstation.workflow_node.googlesearchservicenode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.GoogleSearchServiceNode.compile", false]], "compile() \uff08agentscope.web.workstation.workflow_node.ifelsepipelinenode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.IfElsePipelineNode.compile", false]], "compile() \uff08agentscope.web.workstation.workflow_node.modelnode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.ModelNode.compile", false]], "compile() \uff08agentscope.web.workstation.workflow_node.msghubnode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.MsgHubNode.compile", false]], "compile() \uff08agentscope.web.workstation.workflow_node.msgnode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.MsgNode.compile", false]], "compile() \uff08agentscope.web.workstation.workflow_node.placeholdernode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.PlaceHolderNode.compile", false]], "compile() \uff08agentscope.web.workstation.workflow_node.pythonservicenode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.PythonServiceNode.compile", false]], "compile() \uff08agentscope.web.workstation.workflow_node.reactagentnode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.ReActAgentNode.compile", false]], "compile() \uff08agentscope.web.workstation.workflow_node.readtextservicenode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.ReadTextServiceNode.compile", false]], "compile() \uff08agentscope.web.workstation.workflow_node.sequentialpipelinenode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.SequentialPipelineNode.compile", false]], "compile() \uff08agentscope.web.workstation.workflow_node.switchpipelinenode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.SwitchPipelineNode.compile", false]], "compile() \uff08agentscope.web.workstation.workflow_node.useragentnode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.UserAgentNode.compile", false]], "compile() \uff08agentscope.web.workstation.workflow_node.whilelooppipelinenode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.WhileLoopPipelineNode.compile", false]], "compile() \uff08agentscope.web.workstation.workflow_node.workflownode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.WorkflowNode.compile", false]], "compile() \uff08agentscope.web.workstation.workflow_node.writetextservicenode \u65b9\u6cd5\uff09": [[103, "agentscope.web.workstation.workflow_node.WriteTextServiceNode.compile", false]], "compile_workflow()\uff08\u5728 agentscope.web.workstation.workflow \u6a21\u5757\u4e2d\uff09": [[101, "agentscope.web.workstation.workflow.compile_workflow", false]], "config_name\uff08agentscope.models.dashscope_model.dashscopechatwrapper \u5c5e\u6027\uff09": [[21, "agentscope.models.dashscope_model.DashScopeChatWrapper.config_name", false]], "config_name\uff08agentscope.models.dashscope_model.dashscopeimagesynthesiswrapper \u5c5e\u6027\uff09": [[21, "agentscope.models.dashscope_model.DashScopeImageSynthesisWrapper.config_name", false]], "config_name\uff08agentscope.models.dashscope_model.dashscopemultimodalwrapper \u5c5e\u6027\uff09": [[21, "agentscope.models.dashscope_model.DashScopeMultiModalWrapper.config_name", false]], "config_name\uff08agentscope.models.dashscope_model.dashscopetextembeddingwrapper \u5c5e\u6027\uff09": [[21, "agentscope.models.dashscope_model.DashScopeTextEmbeddingWrapper.config_name", false]], "config_name\uff08agentscope.models.gemini_model.geminichatwrapper \u5c5e\u6027\uff09": [[22, "agentscope.models.gemini_model.GeminiChatWrapper.config_name", false]], "config_name\uff08agentscope.models.gemini_model.geminiembeddingwrapper \u5c5e\u6027\uff09": [[22, "agentscope.models.gemini_model.GeminiEmbeddingWrapper.config_name", false]], "config_name\uff08agentscope.models.litellm_model.litellmchatwrapper \u5c5e\u6027\uff09": [[23, "agentscope.models.litellm_model.LiteLLMChatWrapper.config_name", false]], "config_name\uff08agentscope.models.model.modelwrapperbase \u5c5e\u6027\uff09": [[24, "agentscope.models.model.ModelWrapperBase.config_name", false]], "config_name\uff08agentscope.models.modelwrapperbase \u5c5e\u6027\uff09": [[20, "agentscope.models.ModelWrapperBase.config_name", false]], "config_name\uff08agentscope.models.ollama_model.ollamachatwrapper \u5c5e\u6027\uff09": [[25, "agentscope.models.ollama_model.OllamaChatWrapper.config_name", false]], "config_name\uff08agentscope.models.ollama_model.ollamaembeddingwrapper \u5c5e\u6027\uff09": [[25, "agentscope.models.ollama_model.OllamaEmbeddingWrapper.config_name", false]], "config_name\uff08agentscope.models.ollama_model.ollamagenerationwrapper \u5c5e\u6027\uff09": [[25, "agentscope.models.ollama_model.OllamaGenerationWrapper.config_name", false]], "config_name\uff08agentscope.models.openai_model.openaichatwrapper \u5c5e\u6027\uff09": [[26, "agentscope.models.openai_model.OpenAIChatWrapper.config_name", false]], "config_name\uff08agentscope.models.openai_model.openaidallewrapper \u5c5e\u6027\uff09": [[26, "agentscope.models.openai_model.OpenAIDALLEWrapper.config_name", false]], "config_name\uff08agentscope.models.openai_model.openaiembeddingwrapper \u5c5e\u6027\uff09": [[26, "agentscope.models.openai_model.OpenAIEmbeddingWrapper.config_name", false]], "config_name\uff08agentscope.models.post_model.postapichatwrapper \u5c5e\u6027\uff09": [[27, "agentscope.models.post_model.PostAPIChatWrapper.config_name", false]], "config_name\uff08agentscope.models.post_model.postapimodelwrapperbase \u5c5e\u6027\uff09": [[27, "agentscope.models.post_model.PostAPIModelWrapperBase.config_name", false]], "config_name\uff08agentscope.models.yi_model.yichatwrapper \u5c5e\u6027\uff09": [[29, "agentscope.models.yi_model.YiChatWrapper.config_name", false]], "config_name\uff08agentscope.models.zhipu_model.zhipuaichatwrapper \u5c5e\u6027\uff09": [[30, "agentscope.models.zhipu_model.ZhipuAIChatWrapper.config_name", false]], "config_name\uff08agentscope.models.zhipu_model.zhipuaiembeddingwrapper \u5c5e\u6027\uff09": [[30, "agentscope.models.zhipu_model.ZhipuAIEmbeddingWrapper.config_name", false]], "content_hint\uff08agentscope.parsers.code_block_parser.markdowncodeblockparser \u5c5e\u6027\uff09": [[33, "agentscope.parsers.code_block_parser.MarkdownCodeBlockParser.content_hint", false]], "content_hint\uff08agentscope.parsers.json_object_parser.markdownjsondictparser \u5c5e\u6027\uff09": [[34, "agentscope.parsers.json_object_parser.MarkdownJsonDictParser.content_hint", false]], "content_hint\uff08agentscope.parsers.json_object_parser.markdownjsonobjectparser \u5c5e\u6027\uff09": [[34, "agentscope.parsers.json_object_parser.MarkdownJsonObjectParser.content_hint", false]], "content_hint\uff08agentscope.parsers.markdowncodeblockparser \u5c5e\u6027\uff09": [[32, "agentscope.parsers.MarkdownCodeBlockParser.content_hint", false]], "content_hint\uff08agentscope.parsers.markdownjsondictparser \u5c5e\u6027\uff09": [[32, "agentscope.parsers.MarkdownJsonDictParser.content_hint", false]], "content_hint\uff08agentscope.parsers.markdownjsonobjectparser \u5c5e\u6027\uff09": [[32, "agentscope.parsers.MarkdownJsonObjectParser.content_hint", false]], "content_hint\uff08agentscope.parsers.tagged_content_parser.taggedcontent \u5c5e\u6027\uff09": [[37, "agentscope.parsers.tagged_content_parser.TaggedContent.content_hint", false]], "content_hint\uff08agentscope.parsers.taggedcontent \u5c5e\u6027\uff09": [[32, "agentscope.parsers.TaggedContent.content_hint", false]], "content\uff08agentscope.message.msg \u5c5e\u6027\uff09": [[17, "agentscope.message.Msg.content", false]], "content\uff08agentscope.message.msg.msg \u5c5e\u6027\uff09": [[18, "agentscope.message.msg.Msg.content", false]], "content\uff08agentscope.message.placeholder.placeholdermessage \u5c5e\u6027\uff09": [[19, "agentscope.message.placeholder.PlaceholderMessage.content", false]], "content\uff08agentscope.message.placeholdermessage \u5c5e\u6027\uff09": [[17, "agentscope.message.PlaceholderMessage.content", false]], "convert_url() \uff08agentscope.models.dashscope_model.dashscopemultimodalwrapper \u65b9\u6cd5\uff09": [[21, "agentscope.models.dashscope_model.DashScopeMultiModalWrapper.convert_url", false]], "convert_url() \uff08agentscope.models.dashscopemultimodalwrapper \u65b9\u6cd5\uff09": [[20, "agentscope.models.DashScopeMultiModalWrapper.convert_url", false]], "copynode\uff08agentscope.web.workstation.workflow_node \u4e2d\u7684\u7c7b\uff09": [[103, "agentscope.web.workstation.workflow_node.CopyNode", false]], "copy\uff08agentscope.web.workstation.workflow_node.workflownodetype \u5c5e\u6027\uff09": [[103, "agentscope.web.workstation.workflow_node.WorkflowNodeType.COPY", false]], "cos_sim()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.cos_sim", false]], "cos_sim()\uff08\u5728 agentscope.service.retrieval.similarity \u6a21\u5757\u4e2d\uff09": [[70, "agentscope.service.retrieval.similarity.cos_sim", false]], "count_openai_token()\uff08\u5728 agentscope.utils.token_utils \u6a21\u5757\u4e2d\uff09": [[94, "agentscope.utils.token_utils.count_openai_token", false]], "create_agent() \uff08agentscope.rpc.rpc_agent_client.rpcagentclient \u65b9\u6cd5\uff09": [[47, "agentscope.rpc.rpc_agent_client.RpcAgentClient.create_agent", false]], "create_agent() \uff08agentscope.rpc.rpc_agent_pb2_grpc.rpcagentservicer \u65b9\u6cd5\uff09": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgentServicer.create_agent", false]], "create_agent() \uff08agentscope.rpc.rpcagentclient \u65b9\u6cd5\uff09": [[46, "agentscope.rpc.RpcAgentClient.create_agent", false]], "create_agent() \uff08agentscope.rpc.rpcagentservicer \u65b9\u6cd5\uff09": [[46, "agentscope.rpc.RpcAgentServicer.create_agent", false]], "create_agent() \uff08agentscope.server.agentserverservicer \u65b9\u6cd5\uff09": [[51, "agentscope.server.AgentServerServicer.create_agent", false]], "create_agent() \uff08agentscope.server.servicer.agentserverservicer \u65b9\u6cd5\uff09": [[53, "agentscope.server.servicer.AgentServerServicer.create_agent", false]], "create_agent()\uff08agentscope.rpc.rpc_agent_pb2_grpc.rpcagent \u9759\u6001\u65b9\u6cd5\uff09": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgent.create_agent", false]], "create_directory()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.create_directory", false]], "create_directory()\uff08\u5728 agentscope.service.file.common \u6a21\u5757\u4e2d\uff09": [[62, "agentscope.service.file.common.create_directory", false]], "create_file()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.create_file", false]], "create_file()\uff08\u5728 agentscope.service.file.common \u6a21\u5757\u4e2d\uff09": [[62, "agentscope.service.file.common.create_file", false]], "create_tempdir()\uff08\u5728 agentscope.utils.common \u6a21\u5757\u4e2d\uff09": [[93, "agentscope.utils.common.create_tempdir", false]], "cycle_dots()\uff08\u5728 agentscope.web.gradio.utils \u6a21\u5757\u4e2d\uff09": [[99, "agentscope.web.gradio.utils.cycle_dots", false]], "dashscope_image_to_text()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.dashscope_image_to_text", false]], "dashscope_image_to_text()\uff08\u5728 agentscope.service.multi_modality.dashscope_services \u6a21\u5757\u4e2d\uff09": [[66, "agentscope.service.multi_modality.dashscope_services.dashscope_image_to_text", false]], "dashscope_text_to_audio()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.dashscope_text_to_audio", false]], "dashscope_text_to_audio()\uff08\u5728 agentscope.service.multi_modality.dashscope_services \u6a21\u5757\u4e2d\uff09": [[66, "agentscope.service.multi_modality.dashscope_services.dashscope_text_to_audio", false]], "dashscope_text_to_image()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.dashscope_text_to_image", false]], "dashscope_text_to_image()\uff08\u5728 agentscope.service.multi_modality.dashscope_services \u6a21\u5757\u4e2d\uff09": [[66, "agentscope.service.multi_modality.dashscope_services.dashscope_text_to_image", false]], "dashscopechatwrapper\uff08agentscope.models \u4e2d\u7684\u7c7b\uff09": [[20, "agentscope.models.DashScopeChatWrapper", false]], "dashscopechatwrapper\uff08agentscope.models.dashscope_model \u4e2d\u7684\u7c7b\uff09": [[21, "agentscope.models.dashscope_model.DashScopeChatWrapper", false]], "dashscopeimagesynthesiswrapper\uff08agentscope.models \u4e2d\u7684\u7c7b\uff09": [[20, "agentscope.models.DashScopeImageSynthesisWrapper", false]], "dashscopeimagesynthesiswrapper\uff08agentscope.models.dashscope_model \u4e2d\u7684\u7c7b\uff09": [[21, "agentscope.models.dashscope_model.DashScopeImageSynthesisWrapper", false]], "dashscopemultimodalwrapper\uff08agentscope.models \u4e2d\u7684\u7c7b\uff09": [[20, "agentscope.models.DashScopeMultiModalWrapper", false]], "dashscopemultimodalwrapper\uff08agentscope.models.dashscope_model \u4e2d\u7684\u7c7b\uff09": [[21, "agentscope.models.dashscope_model.DashScopeMultiModalWrapper", false]], "dashscopetextembeddingwrapper\uff08agentscope.models \u4e2d\u7684\u7c7b\uff09": [[20, "agentscope.models.DashScopeTextEmbeddingWrapper", false]], "dashscopetextembeddingwrapper\uff08agentscope.models.dashscope_model \u4e2d\u7684\u7c7b\uff09": [[21, "agentscope.models.dashscope_model.DashScopeTextEmbeddingWrapper", false]], "dashscopewrapperbase\uff08agentscope.models.dashscope_model \u4e2d\u7684\u7c7b\uff09": [[21, "agentscope.models.dashscope_model.DashScopeWrapperBase", false]], "dblp_search_authors()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.dblp_search_authors", false]], "dblp_search_authors()\uff08\u5728 agentscope.service.web.dblp \u6a21\u5757\u4e2d\uff09": [[82, "agentscope.service.web.dblp.dblp_search_authors", false]], "dblp_search_publications()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.dblp_search_publications", false]], "dblp_search_publications()\uff08\u5728 agentscope.service.web.dblp \u6a21\u5757\u4e2d\uff09": [[82, "agentscope.service.web.dblp.dblp_search_publications", false]], "dblp_search_venues()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.dblp_search_venues", false]], "dblp_search_venues()\uff08\u5728 agentscope.service.web.dblp \u6a21\u5757\u4e2d\uff09": [[82, "agentscope.service.web.dblp.dblp_search_venues", false]], "decode_jwt()\uff08\u5728 agentscope.studio.utils \u6a21\u5757\u4e2d\uff09": [[91, "agentscope.studio.utils.decode_jwt", false]], "delete() \uff08agentscope.memory.memory.memorybase \u65b9\u6cd5\uff09": [[15, "agentscope.memory.memory.MemoryBase.delete", false]], "delete() \uff08agentscope.memory.memorybase \u65b9\u6cd5\uff09": [[14, "agentscope.memory.MemoryBase.delete", false]], "delete() \uff08agentscope.memory.temporary_memory.temporarymemory \u65b9\u6cd5\uff09": [[16, "agentscope.memory.temporary_memory.TemporaryMemory.delete", false]], "delete() \uff08agentscope.memory.temporarymemory \u65b9\u6cd5\uff09": [[14, "agentscope.memory.TemporaryMemory.delete", false]], "delete() \uff08agentscope.msghub.msghubmanager \u65b9\u6cd5\uff09": [[31, "agentscope.msghub.MsgHubManager.delete", false]], "delete_agent() \uff08agentscope.rpc.rpc_agent_client.rpcagentclient \u65b9\u6cd5\uff09": [[47, "agentscope.rpc.rpc_agent_client.RpcAgentClient.delete_agent", false]], "delete_agent() \uff08agentscope.rpc.rpc_agent_pb2_grpc.rpcagentservicer \u65b9\u6cd5\uff09": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgentServicer.delete_agent", false]], "delete_agent() \uff08agentscope.rpc.rpcagentclient \u65b9\u6cd5\uff09": [[46, "agentscope.rpc.RpcAgentClient.delete_agent", false]], "delete_agent() \uff08agentscope.rpc.rpcagentservicer \u65b9\u6cd5\uff09": [[46, "agentscope.rpc.RpcAgentServicer.delete_agent", false]], "delete_agent() \uff08agentscope.server.agentserverservicer \u65b9\u6cd5\uff09": [[51, "agentscope.server.AgentServerServicer.delete_agent", false]], "delete_agent() \uff08agentscope.server.servicer.agentserverservicer \u65b9\u6cd5\uff09": [[53, "agentscope.server.servicer.AgentServerServicer.delete_agent", false]], "delete_agent()\uff08agentscope.rpc.rpc_agent_pb2_grpc.rpcagent \u9759\u6001\u65b9\u6cd5\uff09": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgent.delete_agent", false]], "delete_all_agent() \uff08agentscope.rpc.rpc_agent_client.rpcagentclient \u65b9\u6cd5\uff09": [[47, "agentscope.rpc.rpc_agent_client.RpcAgentClient.delete_all_agent", false]], "delete_all_agent() \uff08agentscope.rpc.rpcagentclient \u65b9\u6cd5\uff09": [[46, "agentscope.rpc.RpcAgentClient.delete_all_agent", false]], "delete_all_agents() \uff08agentscope.rpc.rpc_agent_pb2_grpc.rpcagentservicer \u65b9\u6cd5\uff09": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgentServicer.delete_all_agents", false]], "delete_all_agents() \uff08agentscope.rpc.rpcagentservicer \u65b9\u6cd5\uff09": [[46, "agentscope.rpc.RpcAgentServicer.delete_all_agents", false]], "delete_all_agents() \uff08agentscope.server.agentserverservicer \u65b9\u6cd5\uff09": [[51, "agentscope.server.AgentServerServicer.delete_all_agents", false]], "delete_all_agents() \uff08agentscope.server.servicer.agentserverservicer \u65b9\u6cd5\uff09": [[53, "agentscope.server.servicer.AgentServerServicer.delete_all_agents", false]], "delete_all_agents()\uff08agentscope.rpc.rpc_agent_pb2_grpc.rpcagent \u9759\u6001\u65b9\u6cd5\uff09": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgent.delete_all_agents", false]], "delete_directory()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.delete_directory", false]], "delete_directory()\uff08\u5728 agentscope.service.file.common \u6a21\u5757\u4e2d\uff09": [[62, "agentscope.service.file.common.delete_directory", false]], "delete_file()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.delete_file", false]], "delete_file()\uff08\u5728 agentscope.service.file.common \u6a21\u5757\u4e2d\uff09": [[62, "agentscope.service.file.common.delete_file", false]], "deprecated_model_type\uff08agentscope.models.dashscope_model.dashscopechatwrapper \u5c5e\u6027\uff09": [[21, "agentscope.models.dashscope_model.DashScopeChatWrapper.deprecated_model_type", false]], "deprecated_model_type\uff08agentscope.models.dashscopechatwrapper \u5c5e\u6027\uff09": [[20, "agentscope.models.DashScopeChatWrapper.deprecated_model_type", false]], "deprecated_model_type\uff08agentscope.models.openai_model.openaichatwrapper \u5c5e\u6027\uff09": [[26, "agentscope.models.openai_model.OpenAIChatWrapper.deprecated_model_type", false]], "deprecated_model_type\uff08agentscope.models.openaichatwrapper \u5c5e\u6027\uff09": [[20, "agentscope.models.OpenAIChatWrapper.deprecated_model_type", false]], "deprecated_model_type\uff08agentscope.models.post_model.postapidallewrapper \u5c5e\u6027\uff09": [[27, "agentscope.models.post_model.PostAPIDALLEWrapper.deprecated_model_type", false]], "deps_converter()\uff08\u5728 agentscope.web.workstation.workflow_utils \u6a21\u5757\u4e2d\uff09": [[104, "agentscope.web.workstation.workflow_utils.deps_converter", false]], "descriptor\uff08agentscope.rpc.rpcmsg \u5c5e\u6027\uff09": [[46, "agentscope.rpc.RpcMsg.DESCRIPTOR", false]], "deserialize()\uff08\u5728 agentscope.serialize \u6a21\u5757\u4e2d\uff09": [[50, "agentscope.serialize.deserialize", false]], "dialogagentnode\uff08agentscope.web.workstation.workflow_node \u4e2d\u7684\u7c7b\uff09": [[103, "agentscope.web.workstation.workflow_node.DialogAgentNode", false]], "dialogagent\uff08agentscope.agents \u4e2d\u7684\u7c7b\uff09": [[1, "agentscope.agents.DialogAgent", false]], "dialogagent\uff08agentscope.agents.dialog_agent \u4e2d\u7684\u7c7b\uff09": [[3, "agentscope.agents.dialog_agent.DialogAgent", false]], "dict_converter()\uff08\u5728 agentscope.web.workstation.workflow_utils \u6a21\u5757\u4e2d\uff09": [[104, "agentscope.web.workstation.workflow_utils.dict_converter", false]], "dictdialogagentnode\uff08agentscope.web.workstation.workflow_node \u4e2d\u7684\u7c7b\uff09": [[103, "agentscope.web.workstation.workflow_node.DictDialogAgentNode", false]], "dictdialogagent\uff08agentscope.agents \u4e2d\u7684\u7c7b\uff09": [[1, "agentscope.agents.DictDialogAgent", false]], "dictdialogagent\uff08agentscope.agents.dict_dialog_agent \u4e2d\u7684\u7c7b\uff09": [[4, "agentscope.agents.dict_dialog_agent.DictDialogAgent", false]], "dictfiltermixin\uff08agentscope.parsers.parser_base \u4e2d\u7684\u7c7b\uff09": [[35, "agentscope.parsers.parser_base.DictFilterMixin", false]], "digest_webpage()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.digest_webpage", false]], "digest_webpage()\uff08\u5728 agentscope.service.web.web_digest \u6a21\u5757\u4e2d\uff09": [[86, "agentscope.service.web.web_digest.digest_webpage", false]], "distconf\uff08agentscope.agents \u4e2d\u7684\u7c7b\uff09": [[1, "agentscope.agents.DistConf", false]], "distconf\uff08agentscope.agents.agent \u4e2d\u7684\u7c7b\uff09": [[2, "agentscope.agents.agent.DistConf", false]], "download_file() \uff08agentscope.rpc.rpc_agent_client.rpcagentclient \u65b9\u6cd5\uff09": [[47, "agentscope.rpc.rpc_agent_client.RpcAgentClient.download_file", false]], "download_file() \uff08agentscope.rpc.rpc_agent_pb2_grpc.rpcagentservicer \u65b9\u6cd5\uff09": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgentServicer.download_file", false]], "download_file() \uff08agentscope.rpc.rpcagentclient \u65b9\u6cd5\uff09": [[46, "agentscope.rpc.RpcAgentClient.download_file", false]], "download_file() \uff08agentscope.rpc.rpcagentservicer \u65b9\u6cd5\uff09": [[46, "agentscope.rpc.RpcAgentServicer.download_file", false]], "download_file() \uff08agentscope.server.agentserverservicer \u65b9\u6cd5\uff09": [[51, "agentscope.server.AgentServerServicer.download_file", false]], "download_file() \uff08agentscope.server.servicer.agentserverservicer \u65b9\u6cd5\uff09": [[53, "agentscope.server.servicer.AgentServerServicer.download_file", false]], "download_file()\uff08agentscope.rpc.rpc_agent_pb2_grpc.rpcagent \u9759\u6001\u65b9\u6cd5\uff09": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgent.download_file", false]], "download_from_url()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.download_from_url", false]], "download_from_url()\uff08\u5728 agentscope.service.web.download \u6a21\u5757\u4e2d\uff09": [[83, "agentscope.service.web.download.download_from_url", false]], "embedding_cache_dir\uff08agentscope.manager.filemanager \u5c5e\u6027\uff09": [[13, "agentscope.manager.FileManager.embedding_cache_dir", false]], "englishsystempromptgenerator\uff08agentscope.prompt \u4e2d\u7684\u7c7b\uff09": [[41, "agentscope.prompt.EnglishSystemPromptGenerator", false]], "equip() \uff08agentscope.rag.knowledge_bank.knowledgebank \u65b9\u6cd5\uff09": [[44, "agentscope.rag.knowledge_bank.KnowledgeBank.equip", false]], "equip() \uff08agentscope.rag.knowledgebank \u65b9\u6cd5\uff09": [[42, "agentscope.rag.KnowledgeBank.equip", false]], "error\uff08agentscope.service.service_status.serviceexecstatus \u5c5e\u6027\uff09": [[72, "agentscope.service.service_status.ServiceExecStatus.ERROR", false]], "error\uff08agentscope.service.serviceexecstatus \u5c5e\u6027\uff09": [[54, "agentscope.service.ServiceExecStatus.ERROR", false]], "exec_node() \uff08agentscope.web.workstation.workflow_dag.asdigraph \u65b9\u6cd5\uff09": [[102, "agentscope.web.workstation.workflow_dag.ASDiGraph.exec_node", false]], "execute_python_code()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.execute_python_code", false]], "execute_python_code()\uff08\u5728 agentscope.service.execute_code.exec_python \u6a21\u5757\u4e2d\uff09": [[59, "agentscope.service.execute_code.exec_python.execute_python_code", false]], "execute_shell_command()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.execute_shell_command", false]], "execute_shell_command()\uff08\u5728 agentscope.service.execute_code.exec_shell \u6a21\u5757\u4e2d\uff09": [[60, "agentscope.service.execute_code.exec_shell.execute_shell_command", false]], "export() \uff08agentscope.memory.memory.memorybase \u65b9\u6cd5\uff09": [[15, "agentscope.memory.memory.MemoryBase.export", false]], "export() \uff08agentscope.memory.memorybase \u65b9\u6cd5\uff09": [[14, "agentscope.memory.MemoryBase.export", false]], "export() \uff08agentscope.memory.temporary_memory.temporarymemory \u65b9\u6cd5\uff09": [[16, "agentscope.memory.temporary_memory.TemporaryMemory.export", false]], "export() \uff08agentscope.memory.temporarymemory \u65b9\u6cd5\uff09": [[14, "agentscope.memory.TemporaryMemory.export", false]], "fetch_cached_text_embedding() \uff08agentscope.manager.filemanager \u65b9\u6cd5\uff09": [[13, "agentscope.manager.FileManager.fetch_cached_text_embedding", false]], "file_dir\uff08agentscope.manager.filemanager \u5c5e\u6027\uff09": [[13, "agentscope.manager.FileManager.file_dir", false]], "filemanager\uff08agentscope.manager \u4e2d\u7684\u7c7b\uff09": [[13, "agentscope.manager.FileManager", false]], "finish()\uff08agentscope.agents.react_agent.reactagent \u9759\u6001\u65b9\u6cd5\uff09": [[7, "agentscope.agents.react_agent.ReActAgent.finish", false]], "finish()\uff08agentscope.agents.reactagent \u9759\u6001\u65b9\u6cd5\uff09": [[1, "agentscope.agents.ReActAgent.finish", false]], "flush() \uff08agentscope.manager.asmanager \u65b9\u6cd5\uff09": [[13, "agentscope.manager.ASManager.flush", false]], "flush() \uff08agentscope.manager.filemanager \u65b9\u6cd5\uff09": [[13, "agentscope.manager.FileManager.flush", false]], "flush() \uff08agentscope.manager.modelmanager \u65b9\u6cd5\uff09": [[13, "agentscope.manager.ModelManager.flush", false]], "flush() \uff08agentscope.manager.monitormanager \u65b9\u6cd5\uff09": [[13, "agentscope.manager.MonitorManager.flush", false]], "fn_choice()\uff08\u5728 agentscope.web.gradio.studio \u6a21\u5757\u4e2d\uff09": [[98, "agentscope.web.gradio.studio.fn_choice", false]], "forlooppipeline()\uff08\u5728 agentscope.pipelines \u6a21\u5757\u4e2d\uff09": [[38, "agentscope.pipelines.forlooppipeline", false]], "forlooppipeline()\uff08\u5728 agentscope.pipelines.functional \u6a21\u5757\u4e2d\uff09": [[39, "agentscope.pipelines.functional.forlooppipeline", false]], "forlooppipelinenode\uff08agentscope.web.workstation.workflow_node \u4e2d\u7684\u7c7b\uff09": [[103, "agentscope.web.workstation.workflow_node.ForLoopPipelineNode", false]], "forlooppipeline\uff08agentscope.pipelines \u4e2d\u7684\u7c7b\uff09": [[38, "agentscope.pipelines.ForLoopPipeline", false]], "forlooppipeline\uff08agentscope.pipelines.pipeline \u4e2d\u7684\u7c7b\uff09": [[40, "agentscope.pipelines.pipeline.ForLoopPipeline", false]], "format() \uff08agentscope.models.dashscope_model.dashscopechatwrapper \u65b9\u6cd5\uff09": [[21, "agentscope.models.dashscope_model.DashScopeChatWrapper.format", false]], "format() \uff08agentscope.models.dashscope_model.dashscopemultimodalwrapper \u65b9\u6cd5\uff09": [[21, "agentscope.models.dashscope_model.DashScopeMultiModalWrapper.format", false]], "format() \uff08agentscope.models.dashscope_model.dashscopewrapperbase \u65b9\u6cd5\uff09": [[21, "agentscope.models.dashscope_model.DashScopeWrapperBase.format", false]], "format() \uff08agentscope.models.dashscopechatwrapper \u65b9\u6cd5\uff09": [[20, "agentscope.models.DashScopeChatWrapper.format", false]], "format() \uff08agentscope.models.dashscopemultimodalwrapper \u65b9\u6cd5\uff09": [[20, "agentscope.models.DashScopeMultiModalWrapper.format", false]], "format() \uff08agentscope.models.litellm_model.litellmchatwrapper \u65b9\u6cd5\uff09": [[23, "agentscope.models.litellm_model.LiteLLMChatWrapper.format", false]], "format() \uff08agentscope.models.litellm_model.litellmwrapperbase \u65b9\u6cd5\uff09": [[23, "agentscope.models.litellm_model.LiteLLMWrapperBase.format", false]], "format() \uff08agentscope.models.litellmchatwrapper \u65b9\u6cd5\uff09": [[20, "agentscope.models.LiteLLMChatWrapper.format", false]], "format() \uff08agentscope.models.model.modelwrapperbase \u65b9\u6cd5\uff09": [[24, "agentscope.models.model.ModelWrapperBase.format", false]], "format() \uff08agentscope.models.modelwrapperbase \u65b9\u6cd5\uff09": [[20, "agentscope.models.ModelWrapperBase.format", false]], "format() \uff08agentscope.models.ollama_model.ollamachatwrapper \u65b9\u6cd5\uff09": [[25, "agentscope.models.ollama_model.OllamaChatWrapper.format", false]], "format() \uff08agentscope.models.ollama_model.ollamaembeddingwrapper \u65b9\u6cd5\uff09": [[25, "agentscope.models.ollama_model.OllamaEmbeddingWrapper.format", false]], "format() \uff08agentscope.models.ollama_model.ollamagenerationwrapper \u65b9\u6cd5\uff09": [[25, "agentscope.models.ollama_model.OllamaGenerationWrapper.format", false]], "format() \uff08agentscope.models.ollamachatwrapper \u65b9\u6cd5\uff09": [[20, "agentscope.models.OllamaChatWrapper.format", false]], "format() \uff08agentscope.models.ollamaembeddingwrapper \u65b9\u6cd5\uff09": [[20, "agentscope.models.OllamaEmbeddingWrapper.format", false]], "format() \uff08agentscope.models.ollamagenerationwrapper \u65b9\u6cd5\uff09": [[20, "agentscope.models.OllamaGenerationWrapper.format", false]], "format() \uff08agentscope.models.openai_model.openaichatwrapper \u65b9\u6cd5\uff09": [[26, "agentscope.models.openai_model.OpenAIChatWrapper.format", false]], "format() \uff08agentscope.models.openai_model.openaiwrapperbase \u65b9\u6cd5\uff09": [[26, "agentscope.models.openai_model.OpenAIWrapperBase.format", false]], "format() \uff08agentscope.models.openaichatwrapper \u65b9\u6cd5\uff09": [[20, "agentscope.models.OpenAIChatWrapper.format", false]], "format() \uff08agentscope.models.openaiwrapperbase \u65b9\u6cd5\uff09": [[20, "agentscope.models.OpenAIWrapperBase.format", false]], "format() \uff08agentscope.models.post_model.postapichatwrapper \u65b9\u6cd5\uff09": [[27, "agentscope.models.post_model.PostAPIChatWrapper.format", false]], "format() \uff08agentscope.models.post_model.postapidallewrapper \u65b9\u6cd5\uff09": [[27, "agentscope.models.post_model.PostAPIDALLEWrapper.format", false]], "format() \uff08agentscope.models.post_model.postapiembeddingwrapper \u65b9\u6cd5\uff09": [[27, "agentscope.models.post_model.PostAPIEmbeddingWrapper.format", false]], "format() \uff08agentscope.models.postapichatwrapper \u65b9\u6cd5\uff09": [[20, "agentscope.models.PostAPIChatWrapper.format", false]], "format() \uff08agentscope.models.yi_model.yichatwrapper \u65b9\u6cd5\uff09": [[29, "agentscope.models.yi_model.YiChatWrapper.format", false]], "format() \uff08agentscope.models.yichatwrapper \u65b9\u6cd5\uff09": [[20, "agentscope.models.YiChatWrapper.format", false]], "format() \uff08agentscope.models.zhipu_model.zhipuaichatwrapper \u65b9\u6cd5\uff09": [[30, "agentscope.models.zhipu_model.ZhipuAIChatWrapper.format", false]], "format() \uff08agentscope.models.zhipu_model.zhipuaiwrapperbase \u65b9\u6cd5\uff09": [[30, "agentscope.models.zhipu_model.ZhipuAIWrapperBase.format", false]], "format() \uff08agentscope.models.zhipuaichatwrapper \u65b9\u6cd5\uff09": [[20, "agentscope.models.ZhipuAIChatWrapper.format", false]], "format()\uff08agentscope.models.gemini_model.geminichatwrapper \u9759\u6001\u65b9\u6cd5\uff09": [[22, "agentscope.models.gemini_model.GeminiChatWrapper.format", false]], "format()\uff08agentscope.models.geminichatwrapper \u9759\u6001\u65b9\u6cd5\uff09": [[20, "agentscope.models.GeminiChatWrapper.format", false]], "format_for_common_chat_models()\uff08agentscope.models.model.modelwrapperbase \u9759\u6001\u65b9\u6cd5\uff09": [[24, "agentscope.models.model.ModelWrapperBase.format_for_common_chat_models", false]], "format_for_common_chat_models()\uff08agentscope.models.modelwrapperbase \u9759\u6001\u65b9\u6cd5\uff09": [[20, "agentscope.models.ModelWrapperBase.format_for_common_chat_models", false]], "format_instruction\uff08agentscope.parsers.code_block_parser.markdowncodeblockparser \u5c5e\u6027\uff09": [[33, "agentscope.parsers.code_block_parser.MarkdownCodeBlockParser.format_instruction", false]], "format_instruction\uff08agentscope.parsers.json_object_parser.markdownjsondictparser \u5c5e\u6027\uff09": [[34, "agentscope.parsers.json_object_parser.MarkdownJsonDictParser.format_instruction", false]], "format_instruction\uff08agentscope.parsers.json_object_parser.markdownjsonobjectparser \u5c5e\u6027\uff09": [[34, "agentscope.parsers.json_object_parser.MarkdownJsonObjectParser.format_instruction", false]], "format_instruction\uff08agentscope.parsers.markdowncodeblockparser \u5c5e\u6027\uff09": [[32, "agentscope.parsers.MarkdownCodeBlockParser.format_instruction", false]], "format_instruction\uff08agentscope.parsers.markdownjsondictparser \u5c5e\u6027\uff09": [[32, "agentscope.parsers.MarkdownJsonDictParser.format_instruction", false]], "format_instruction\uff08agentscope.parsers.markdownjsonobjectparser \u5c5e\u6027\uff09": [[32, "agentscope.parsers.MarkdownJsonObjectParser.format_instruction", false]], "format_instruction\uff08agentscope.parsers.multitaggedcontentparser \u5c5e\u6027\uff09": [[32, "agentscope.parsers.MultiTaggedContentParser.format_instruction", false]], "format_instruction\uff08agentscope.parsers.regex_tagged_content_parser.regextaggedcontentparser \u5c5e\u6027\uff09": [[36, "agentscope.parsers.regex_tagged_content_parser.RegexTaggedContentParser.format_instruction", false]], "format_instruction\uff08agentscope.parsers.regextaggedcontentparser \u5c5e\u6027\uff09": [[32, "agentscope.parsers.RegexTaggedContentParser.format_instruction", false]], "format_instruction\uff08agentscope.parsers.tagged_content_parser.multitaggedcontentparser \u5c5e\u6027\uff09": [[37, "agentscope.parsers.tagged_content_parser.MultiTaggedContentParser.format_instruction", false]], "formatted_str() \uff08agentscope.message.msg \u65b9\u6cd5\uff09": [[17, "agentscope.message.Msg.formatted_str", false]], "formatted_str() \uff08agentscope.message.msg.msg \u65b9\u6cd5\uff09": [[18, "agentscope.message.msg.Msg.formatted_str", false]], "from_dict()\uff08agentscope.message.msg \u7c7b\u65b9\u6cd5\uff09": [[17, "agentscope.message.Msg.from_dict", false]], "from_dict()\uff08agentscope.message.msg.msg \u7c7b\u65b9\u6cd5\uff09": [[18, "agentscope.message.msg.Msg.from_dict", false]], "from_dict()\uff08agentscope.message.placeholder.placeholdermessage \u7c7b\u65b9\u6cd5\uff09": [[19, "agentscope.message.placeholder.PlaceholderMessage.from_dict", false]], "from_dict()\uff08agentscope.message.placeholdermessage \u7c7b\u65b9\u6cd5\uff09": [[17, "agentscope.message.PlaceholderMessage.from_dict", false]], "functioncallerror": [[11, "agentscope.exception.FunctionCallError", false]], "functioncallformaterror": [[11, "agentscope.exception.FunctionCallFormatError", false]], "functionnotfounderror": [[11, "agentscope.exception.FunctionNotFoundError", false]], "geminichatwrapper\uff08agentscope.models \u4e2d\u7684\u7c7b\uff09": [[20, "agentscope.models.GeminiChatWrapper", false]], "geminichatwrapper\uff08agentscope.models.gemini_model \u4e2d\u7684\u7c7b\uff09": [[22, "agentscope.models.gemini_model.GeminiChatWrapper", false]], "geminiembeddingwrapper\uff08agentscope.models \u4e2d\u7684\u7c7b\uff09": [[20, "agentscope.models.GeminiEmbeddingWrapper", false]], "geminiembeddingwrapper\uff08agentscope.models.gemini_model \u4e2d\u7684\u7c7b\uff09": [[22, "agentscope.models.gemini_model.GeminiEmbeddingWrapper", false]], "geminiwrapperbase\uff08agentscope.models.gemini_model \u4e2d\u7684\u7c7b\uff09": [[22, "agentscope.models.gemini_model.GeminiWrapperBase", false]], "generate() \uff08agentscope.prompt.systempromptgeneratorbase \u65b9\u6cd5\uff09": [[41, "agentscope.prompt.SystemPromptGeneratorBase.generate", false]], "generate_agent_id()\uff08agentscope.agents.agent.agentbase \u7c7b\u65b9\u6cd5\uff09": [[2, "agentscope.agents.agent.AgentBase.generate_agent_id", false]], "generate_agent_id()\uff08agentscope.agents.agentbase \u7c7b\u65b9\u6cd5\uff09": [[1, "agentscope.agents.AgentBase.generate_agent_id", false]], "generate_image_from_name()\uff08\u5728 agentscope.web.gradio.utils \u6a21\u5757\u4e2d\uff09": [[99, "agentscope.web.gradio.utils.generate_image_from_name", false]], "generate_jwt()\uff08\u5728 agentscope.studio.utils \u6a21\u5757\u4e2d\uff09": [[91, "agentscope.studio.utils.generate_jwt", false]], "generate_notes() \uff08agentscope.prompt.systempromptoptimizer \u65b9\u6cd5\uff09": [[41, "agentscope.prompt.SystemPromptOptimizer.generate_notes", false]], "generate_server_id()\uff08agentscope.server.launcher.rpcagentserverlauncher \u7c7b\u65b9\u6cd5\uff09": [[52, "agentscope.server.launcher.RpcAgentServerLauncher.generate_server_id", false]], "generate_server_id()\uff08agentscope.server.rpcagentserverlauncher \u7c7b\u65b9\u6cd5\uff09": [[51, "agentscope.server.RpcAgentServerLauncher.generate_server_id", false]], "generation_method\uff08agentscope.models.gemini_model.geminichatwrapper \u5c5e\u6027\uff09": [[22, "agentscope.models.gemini_model.GeminiChatWrapper.generation_method", false]], "generation_method\uff08agentscope.models.geminichatwrapper \u5c5e\u6027\uff09": [[20, "agentscope.models.GeminiChatWrapper.generation_method", false]], "get()\uff08agentscope.service.service_toolkit.servicefactory \u7c7b\u65b9\u6cd5\uff09": [[73, "agentscope.service.service_toolkit.ServiceFactory.get", false]], "get()\uff08agentscope.service.service_toolkit.servicetoolkit \u7c7b\u65b9\u6cd5\uff09": [[73, "agentscope.service.service_toolkit.ServiceToolkit.get", false]], "get()\uff08agentscope.service.servicefactory \u7c7b\u65b9\u6cd5\uff09": [[54, "agentscope.service.ServiceFactory.get", false]], "get()\uff08agentscope.service.servicetoolkit \u7c7b\u65b9\u6cd5\uff09": [[54, "agentscope.service.ServiceToolkit.get", false]], "get_action_functions() \uff08agentscope.service.browser.web_browser.webbrowser \u65b9\u6cd5\uff09": [[56, "agentscope.service.browser.web_browser.WebBrowser.get_action_functions", false]], "get_action_functions() \uff08agentscope.service.webbrowser \u65b9\u6cd5\uff09": [[54, "agentscope.service.WebBrowser.get_action_functions", false]], "get_agent() \uff08agentscope.server.agentserverservicer \u65b9\u6cd5\uff09": [[51, "agentscope.server.AgentServerServicer.get_agent", false]], "get_agent() \uff08agentscope.server.servicer.agentserverservicer \u65b9\u6cd5\uff09": [[53, "agentscope.server.servicer.AgentServerServicer.get_agent", false]], "get_agent_class()\uff08agentscope.agents.agent.agentbase \u7c7b\u65b9\u6cd5\uff09": [[2, "agentscope.agents.agent.AgentBase.get_agent_class", false]], "get_agent_class()\uff08agentscope.agents.agentbase \u7c7b\u65b9\u6cd5\uff09": [[1, "agentscope.agents.AgentBase.get_agent_class", false]], "get_agent_list() \uff08agentscope.rpc.rpc_agent_client.rpcagentclient \u65b9\u6cd5\uff09": [[47, "agentscope.rpc.rpc_agent_client.RpcAgentClient.get_agent_list", false]], "get_agent_list() \uff08agentscope.rpc.rpc_agent_pb2_grpc.rpcagentservicer \u65b9\u6cd5\uff09": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgentServicer.get_agent_list", false]], "get_agent_list() \uff08agentscope.rpc.rpcagentclient \u65b9\u6cd5\uff09": [[46, "agentscope.rpc.RpcAgentClient.get_agent_list", false]], "get_agent_list() \uff08agentscope.rpc.rpcagentservicer \u65b9\u6cd5\uff09": [[46, "agentscope.rpc.RpcAgentServicer.get_agent_list", false]], "get_agent_list() \uff08agentscope.server.agentserverservicer \u65b9\u6cd5\uff09": [[51, "agentscope.server.AgentServerServicer.get_agent_list", false]], "get_agent_list() \uff08agentscope.server.servicer.agentserverservicer \u65b9\u6cd5\uff09": [[53, "agentscope.server.servicer.AgentServerServicer.get_agent_list", false]], "get_agent_list()\uff08agentscope.rpc.rpc_agent_pb2_grpc.rpcagent \u9759\u6001\u65b9\u6cd5\uff09": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgent.get_agent_list", false]], "get_agent_memory() \uff08agentscope.rpc.rpc_agent_client.rpcagentclient \u65b9\u6cd5\uff09": [[47, "agentscope.rpc.rpc_agent_client.RpcAgentClient.get_agent_memory", false]], "get_agent_memory() \uff08agentscope.rpc.rpc_agent_pb2_grpc.rpcagentservicer \u65b9\u6cd5\uff09": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgentServicer.get_agent_memory", false]], "get_agent_memory() \uff08agentscope.rpc.rpcagentclient \u65b9\u6cd5\uff09": [[46, "agentscope.rpc.RpcAgentClient.get_agent_memory", false]], "get_agent_memory() \uff08agentscope.rpc.rpcagentservicer \u65b9\u6cd5\uff09": [[46, "agentscope.rpc.RpcAgentServicer.get_agent_memory", false]], "get_agent_memory() \uff08agentscope.server.agentserverservicer \u65b9\u6cd5\uff09": [[51, "agentscope.server.AgentServerServicer.get_agent_memory", false]], "get_agent_memory() \uff08agentscope.server.servicer.agentserverservicer \u65b9\u6cd5\uff09": [[53, "agentscope.server.servicer.AgentServerServicer.get_agent_memory", false]], "get_agent_memory()\uff08agentscope.rpc.rpc_agent_pb2_grpc.rpcagent \u9759\u6001\u65b9\u6cd5\uff09": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgent.get_agent_memory", false]], "get_all_agents()\uff08\u5728 agentscope.web.workstation.workflow_node \u6a21\u5757\u4e2d\uff09": [[103, "agentscope.web.workstation.workflow_node.get_all_agents", false]], "get_chat()\uff08\u5728 agentscope.web.gradio.studio \u6a21\u5757\u4e2d\uff09": [[98, "agentscope.web.gradio.studio.get_chat", false]], "get_chat_msg()\uff08\u5728 agentscope.web.gradio.utils \u6a21\u5757\u4e2d\uff09": [[99, "agentscope.web.gradio.utils.get_chat_msg", false]], "get_config_by_name() \uff08agentscope.manager.modelmanager \u65b9\u6cd5\uff09": [[13, "agentscope.manager.ModelManager.get_config_by_name", false]], "get_current_directory()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.get_current_directory", false]], "get_current_directory()\uff08\u5728 agentscope.service.file.common \u6a21\u5757\u4e2d\uff09": [[62, "agentscope.service.file.common.get_current_directory", false]], "get_embeddings() \uff08agentscope.memory.temporary_memory.temporarymemory \u65b9\u6cd5\uff09": [[16, "agentscope.memory.temporary_memory.TemporaryMemory.get_embeddings", false]], "get_embeddings() \uff08agentscope.memory.temporarymemory \u65b9\u6cd5\uff09": [[14, "agentscope.memory.TemporaryMemory.get_embeddings", false]], "get_help()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.get_help", false]], "get_instance()\uff08agentscope.manager.asmanager \u7c7b\u65b9\u6cd5\uff09": [[13, "agentscope.manager.ASManager.get_instance", false]], "get_instance()\uff08agentscope.manager.filemanager \u7c7b\u65b9\u6cd5\uff09": [[13, "agentscope.manager.FileManager.get_instance", false]], "get_instance()\uff08agentscope.manager.modelmanager \u7c7b\u65b9\u6cd5\uff09": [[13, "agentscope.manager.ModelManager.get_instance", false]], "get_instance()\uff08agentscope.manager.monitormanager \u7c7b\u65b9\u6cd5\uff09": [[13, "agentscope.manager.MonitorManager.get_instance", false]], "get_knowledge() \uff08agentscope.rag.knowledge_bank.knowledgebank \u65b9\u6cd5\uff09": [[44, "agentscope.rag.knowledge_bank.KnowledgeBank.get_knowledge", false]], "get_knowledge() \uff08agentscope.rag.knowledgebank \u65b9\u6cd5\uff09": [[42, "agentscope.rag.KnowledgeBank.get_knowledge", false]], "get_memory() \uff08agentscope.memory.memory.memorybase \u65b9\u6cd5\uff09": [[15, "agentscope.memory.memory.MemoryBase.get_memory", false]], "get_memory() \uff08agentscope.memory.memorybase \u65b9\u6cd5\uff09": [[14, "agentscope.memory.MemoryBase.get_memory", false]], "get_memory() \uff08agentscope.memory.temporary_memory.temporarymemory \u65b9\u6cd5\uff09": [[16, "agentscope.memory.temporary_memory.TemporaryMemory.get_memory", false]], "get_memory() \uff08agentscope.memory.temporarymemory \u65b9\u6cd5\uff09": [[14, "agentscope.memory.TemporaryMemory.get_memory", false]], "get_model_by_config_name() \uff08agentscope.manager.modelmanager \u65b9\u6cd5\uff09": [[13, "agentscope.manager.ModelManager.get_model_by_config_name", false]], "get_openai_max_length()\uff08\u5728 agentscope.utils.token_utils \u6a21\u5757\u4e2d\uff09": [[94, "agentscope.utils.token_utils.get_openai_max_length", false]], "get_player_input()\uff08\u5728 agentscope.web.gradio.utils \u6a21\u5757\u4e2d\uff09": [[99, "agentscope.web.gradio.utils.get_player_input", false]], "get_reset_msg()\uff08\u5728 agentscope.web.gradio.utils \u6a21\u5757\u4e2d\uff09": [[99, "agentscope.web.gradio.utils.get_reset_msg", false]], "get_response() \uff08agentscope.rpc.responsestub \u65b9\u6cd5\uff09": [[46, "agentscope.rpc.ResponseStub.get_response", false]], "get_response() \uff08agentscope.rpc.rpc_agent_client.responsestub \u65b9\u6cd5\uff09": [[47, "agentscope.rpc.rpc_agent_client.ResponseStub.get_response", false]], "get_server_info() \uff08agentscope.rpc.rpc_agent_client.rpcagentclient \u65b9\u6cd5\uff09": [[47, "agentscope.rpc.rpc_agent_client.RpcAgentClient.get_server_info", false]], "get_server_info() \uff08agentscope.rpc.rpc_agent_pb2_grpc.rpcagentservicer \u65b9\u6cd5\uff09": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgentServicer.get_server_info", false]], "get_server_info() \uff08agentscope.rpc.rpcagentclient \u65b9\u6cd5\uff09": [[46, "agentscope.rpc.RpcAgentClient.get_server_info", false]], "get_server_info() \uff08agentscope.rpc.rpcagentservicer \u65b9\u6cd5\uff09": [[46, "agentscope.rpc.RpcAgentServicer.get_server_info", false]], "get_server_info() \uff08agentscope.server.agentserverservicer \u65b9\u6cd5\uff09": [[51, "agentscope.server.AgentServerServicer.get_server_info", false]], "get_server_info() \uff08agentscope.server.servicer.agentserverservicer \u65b9\u6cd5\uff09": [[53, "agentscope.server.servicer.AgentServerServicer.get_server_info", false]], "get_server_info()\uff08agentscope.rpc.rpc_agent_pb2_grpc.rpcagent \u9759\u6001\u65b9\u6cd5\uff09": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgent.get_server_info", false]], "get_task_id() \uff08agentscope.server.agentserverservicer \u65b9\u6cd5\uff09": [[51, "agentscope.server.AgentServerServicer.get_task_id", false]], "get_task_id() \uff08agentscope.server.servicer.agentserverservicer \u65b9\u6cd5\uff09": [[53, "agentscope.server.servicer.AgentServerServicer.get_task_id", false]], "get_wrapper()\uff08agentscope.models.model.modelwrapperbase \u7c7b\u65b9\u6cd5\uff09": [[24, "agentscope.models.model.ModelWrapperBase.get_wrapper", false]], "get_wrapper()\uff08agentscope.models.modelwrapperbase \u7c7b\u65b9\u6cd5\uff09": [[20, "agentscope.models.ModelWrapperBase.get_wrapper", false]], "google_search()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.google_search", false]], "google_search()\uff08\u5728 agentscope.service.web.search \u6a21\u5757\u4e2d\uff09": [[84, "agentscope.service.web.search.google_search", false]], "googlesearchservicenode\uff08agentscope.web.workstation.workflow_node \u4e2d\u7684\u7c7b\uff09": [[103, "agentscope.web.workstation.workflow_node.GoogleSearchServiceNode", false]], "height\uff08agentscope.service.browser.web_browser.webelementinfo \u5c5e\u6027\uff09": [[56, "agentscope.service.browser.web_browser.WebElementInfo.height", false]], "height\uff08agentscope.service.webelementinfo \u5c5e\u6027\uff09": [[54, "agentscope.service.WebElementInfo.height", false]], "host\uff08agentscope.exception.agentservererror \u5c5e\u6027\uff09": [[11, "agentscope.exception.AgentServerError.host", false]], "html\uff08agentscope.service.browser.web_browser.webelementinfo \u5c5e\u6027\uff09": [[56, "agentscope.service.browser.web_browser.WebElementInfo.html", false]], "html\uff08agentscope.service.webelementinfo \u5c5e\u6027\uff09": [[54, "agentscope.service.WebElementInfo.html", false]], "id\uff08agentscope.message.msg \u5c5e\u6027\uff09": [[17, "agentscope.message.Msg.id", false]], "id\uff08agentscope.message.msg.msg \u5c5e\u6027\uff09": [[18, "agentscope.message.msg.Msg.id", false]], "id\uff08agentscope.message.placeholder.placeholdermessage \u5c5e\u6027\uff09": [[19, "agentscope.message.placeholder.PlaceholderMessage.id", false]], "id\uff08agentscope.message.placeholdermessage \u5c5e\u6027\uff09": [[17, "agentscope.message.PlaceholderMessage.id", false]], "ifelsepipeline()\uff08\u5728 agentscope.pipelines \u6a21\u5757\u4e2d\uff09": [[38, "agentscope.pipelines.ifelsepipeline", false]], "ifelsepipeline()\uff08\u5728 agentscope.pipelines.functional \u6a21\u5757\u4e2d\uff09": [[39, "agentscope.pipelines.functional.ifelsepipeline", false]], "ifelsepipelinenode\uff08agentscope.web.workstation.workflow_node \u4e2d\u7684\u7c7b\uff09": [[103, "agentscope.web.workstation.workflow_node.IfElsePipelineNode", false]], "ifelsepipeline\uff08agentscope.pipelines \u4e2d\u7684\u7c7b\uff09": [[38, "agentscope.pipelines.IfElsePipeline", false]], "ifelsepipeline\uff08agentscope.pipelines.pipeline \u4e2d\u7684\u7c7b\uff09": [[40, "agentscope.pipelines.pipeline.IfElsePipeline", false]], "import_function_from_path()\uff08\u5728 agentscope.web.gradio.studio \u6a21\u5757\u4e2d\uff09": [[98, "agentscope.web.gradio.studio.import_function_from_path", false]], "importerrorreporter\uff08agentscope.utils.common \u4e2d\u7684\u7c7b\uff09": [[93, "agentscope.utils.common.ImportErrorReporter", false]], "init()\uff08\u5728 agentscope \u6a21\u5757\u4e2d\uff09": [[0, "agentscope.init", false]], "init()\uff08\u5728 agentscope.studio \u6a21\u5757\u4e2d\uff09": [[90, "agentscope.studio.init", false]], "init_uid_list()\uff08\u5728 agentscope.web.gradio.studio \u6a21\u5757\u4e2d\uff09": [[98, "agentscope.web.gradio.studio.init_uid_list", false]], "init_uid_queues()\uff08\u5728 agentscope.web.gradio.utils \u6a21\u5757\u4e2d\uff09": [[99, "agentscope.web.gradio.utils.init_uid_queues", false]], "initialize() \uff08agentscope.manager.asmanager \u65b9\u6cd5\uff09": [[13, "agentscope.manager.ASManager.initialize", false]], "initialize() \uff08agentscope.manager.filemanager \u65b9\u6cd5\uff09": [[13, "agentscope.manager.FileManager.initialize", false]], "initialize() \uff08agentscope.manager.modelmanager \u65b9\u6cd5\uff09": [[13, "agentscope.manager.ModelManager.initialize", false]], "initialize() \uff08agentscope.manager.monitormanager \u65b9\u6cd5\uff09": [[13, "agentscope.manager.MonitorManager.initialize", false]], "inner_text\uff08agentscope.service.browser.web_browser.webelementinfo \u5c5e\u6027\uff09": [[56, "agentscope.service.browser.web_browser.WebElementInfo.inner_text", false]], "inner_text\uff08agentscope.service.webelementinfo \u5c5e\u6027\uff09": [[54, "agentscope.service.WebElementInfo.inner_text", false]], "invoke_dir\uff08agentscope.manager.filemanager \u5c5e\u6027\uff09": [[13, "agentscope.manager.FileManager.invoke_dir", false]], "is_alive() \uff08agentscope.rpc.rpc_agent_client.rpcagentclient \u65b9\u6cd5\uff09": [[47, "agentscope.rpc.rpc_agent_client.RpcAgentClient.is_alive", false]], "is_alive() \uff08agentscope.rpc.rpc_agent_pb2_grpc.rpcagentservicer \u65b9\u6cd5\uff09": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgentServicer.is_alive", false]], "is_alive() \uff08agentscope.rpc.rpcagentclient \u65b9\u6cd5\uff09": [[46, "agentscope.rpc.RpcAgentClient.is_alive", false]], "is_alive() \uff08agentscope.rpc.rpcagentservicer \u65b9\u6cd5\uff09": [[46, "agentscope.rpc.RpcAgentServicer.is_alive", false]], "is_alive() \uff08agentscope.server.agentserverservicer \u65b9\u6cd5\uff09": [[51, "agentscope.server.AgentServerServicer.is_alive", false]], "is_alive() \uff08agentscope.server.servicer.agentserverservicer \u65b9\u6cd5\uff09": [[53, "agentscope.server.servicer.AgentServerServicer.is_alive", false]], "is_alive()\uff08agentscope.rpc.rpc_agent_pb2_grpc.rpcagent \u9759\u6001\u65b9\u6cd5\uff09": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgent.is_alive", false]], "is_callable_expression()\uff08\u5728 agentscope.web.workstation.workflow_utils \u6a21\u5757\u4e2d\uff09": [[104, "agentscope.web.workstation.workflow_utils.is_callable_expression", false]], "is_clickable\uff08agentscope.service.browser.web_browser.webelementinfo \u5c5e\u6027\uff09": [[56, "agentscope.service.browser.web_browser.WebElementInfo.is_clickable", false]], "is_clickable\uff08agentscope.service.webelementinfo \u5c5e\u6027\uff09": [[54, "agentscope.service.WebElementInfo.is_clickable", false]], "is_initialized()\uff08agentscope.manager.filemanager \u7c7b\u65b9\u6cd5\uff09": [[13, "agentscope.manager.FileManager.is_initialized", false]], "is_serializable()\uff08\u5728 agentscope.serialize \u6a21\u5757\u4e2d\uff09": [[50, "agentscope.serialize.is_serializable", false]], "is_stream_exhausted\uff08agentscope.models.modelresponse \u5c5e\u6027\uff09": [[20, "agentscope.models.ModelResponse.is_stream_exhausted", false]], "is_stream_exhausted\uff08agentscope.models.response.modelresponse \u5c5e\u6027\uff09": [[28, "agentscope.models.response.ModelResponse.is_stream_exhausted", false]], "is_valid_url()\uff08\u5728 agentscope.service.web.web_digest \u6a21\u5757\u4e2d\uff09": [[86, "agentscope.service.web.web_digest.is_valid_url", false]], "json_required_hint\uff08agentscope.parsers.multitaggedcontentparser \u5c5e\u6027\uff09": [[32, "agentscope.parsers.MultiTaggedContentParser.json_required_hint", false]], "json_required_hint\uff08agentscope.parsers.tagged_content_parser.multitaggedcontentparser \u5c5e\u6027\uff09": [[37, "agentscope.parsers.tagged_content_parser.MultiTaggedContentParser.json_required_hint", false]], "json_schemas\uff08agentscope.service.service_toolkit.servicetoolkit \u5c5e\u6027\uff09": [[73, "agentscope.service.service_toolkit.ServiceToolkit.json_schemas", false]], "json_schemas\uff08agentscope.service.servicetoolkit \u5c5e\u6027\uff09": [[54, "agentscope.service.ServiceToolkit.json_schemas", false]], "json_schema\uff08agentscope.service.service_toolkit.servicefunction \u5c5e\u6027\uff09": [[73, "agentscope.service.service_toolkit.ServiceFunction.json_schema", false]], "jsondictvalidationerror": [[11, "agentscope.exception.JsonDictValidationError", false]], "jsonparsingerror": [[11, "agentscope.exception.JsonParsingError", false]], "jsontypeerror": [[11, "agentscope.exception.JsonTypeError", false]], "json\uff08agentscope.constants.responseformat \u5c5e\u6027\uff09": [[10, "agentscope.constants.ResponseFormat.JSON", false]], "keep_alive\uff08agentscope.models.ollama_model.ollamachatwrapper \u5c5e\u6027\uff09": [[25, "agentscope.models.ollama_model.OllamaChatWrapper.keep_alive", false]], "keep_alive\uff08agentscope.models.ollama_model.ollamaembeddingwrapper \u5c5e\u6027\uff09": [[25, "agentscope.models.ollama_model.OllamaEmbeddingWrapper.keep_alive", false]], "keep_alive\uff08agentscope.models.ollama_model.ollamagenerationwrapper \u5c5e\u6027\uff09": [[25, "agentscope.models.ollama_model.OllamaGenerationWrapper.keep_alive", false]], "keep_alive\uff08agentscope.models.ollama_model.ollamawrapperbase \u5c5e\u6027\uff09": [[25, "agentscope.models.ollama_model.OllamaWrapperBase.keep_alive", false]], "knowledgebank\uff08agentscope.rag \u4e2d\u7684\u7c7b\uff09": [[42, "agentscope.rag.KnowledgeBank", false]], "knowledgebank\uff08agentscope.rag.knowledge_bank \u4e2d\u7684\u7c7b\uff09": [[44, "agentscope.rag.knowledge_bank.KnowledgeBank", false]], "knowledge\uff08agentscope.rag \u4e2d\u7684\u7c7b\uff09": [[42, "agentscope.rag.Knowledge", false]], "knowledge\uff08agentscope.rag.knowledge \u4e2d\u7684\u7c7b\uff09": [[43, "agentscope.rag.knowledge.Knowledge", false]], "kwarg_converter()\uff08\u5728 agentscope.web.workstation.workflow_utils \u6a21\u5757\u4e2d\uff09": [[104, "agentscope.web.workstation.workflow_utils.kwarg_converter", false]], "launch() \uff08agentscope.server.launcher.rpcagentserverlauncher \u65b9\u6cd5\uff09": [[52, "agentscope.server.launcher.RpcAgentServerLauncher.launch", false]], "launch() \uff08agentscope.server.rpcagentserverlauncher \u65b9\u6cd5\uff09": [[51, "agentscope.server.RpcAgentServerLauncher.launch", false]], "list_directory_content()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.list_directory_content", false]], "list_directory_content()\uff08\u5728 agentscope.service.file.common \u6a21\u5757\u4e2d\uff09": [[62, "agentscope.service.file.common.list_directory_content", false]], "list_models() \uff08agentscope.models.gemini_model.geminiwrapperbase \u65b9\u6cd5\uff09": [[22, "agentscope.models.gemini_model.GeminiWrapperBase.list_models", false]], "litellmchatwrapper\uff08agentscope.models \u4e2d\u7684\u7c7b\uff09": [[20, "agentscope.models.LiteLLMChatWrapper", false]], "litellmchatwrapper\uff08agentscope.models.litellm_model \u4e2d\u7684\u7c7b\uff09": [[23, "agentscope.models.litellm_model.LiteLLMChatWrapper", false]], "litellmwrapperbase\uff08agentscope.models.litellm_model \u4e2d\u7684\u7c7b\uff09": [[23, "agentscope.models.litellm_model.LiteLLMWrapperBase", false]], "llamaindexagent\uff08agentscope.agents \u4e2d\u7684\u7c7b\uff09": [[1, "agentscope.agents.LlamaIndexAgent", false]], "llamaindexagent\uff08agentscope.agents.rag_agent \u4e2d\u7684\u7c7b\uff09": [[6, "agentscope.agents.rag_agent.LlamaIndexAgent", false]], "llamaindexknowledge\uff08agentscope.rag.llama_index_knowledge \u4e2d\u7684\u7c7b\uff09": [[45, "agentscope.rag.llama_index_knowledge.LlamaIndexKnowledge", false]], "load() \uff08agentscope.memory.memory.memorybase \u65b9\u6cd5\uff09": [[15, "agentscope.memory.memory.MemoryBase.load", false]], "load() \uff08agentscope.memory.memorybase \u65b9\u6cd5\uff09": [[14, "agentscope.memory.MemoryBase.load", false]], "load() \uff08agentscope.memory.temporary_memory.temporarymemory \u65b9\u6cd5\uff09": [[16, "agentscope.memory.temporary_memory.TemporaryMemory.load", false]], "load() \uff08agentscope.memory.temporarymemory \u65b9\u6cd5\uff09": [[14, "agentscope.memory.TemporaryMemory.load", false]], "load_agents_from_dir()\uff08\u5728 agentscope.server.launcher \u6a21\u5757\u4e2d\uff09": [[52, "agentscope.server.launcher.load_agents_from_dir", false]], "load_agents_from_file()\uff08\u5728 agentscope.server.launcher \u6a21\u5757\u4e2d\uff09": [[52, "agentscope.server.launcher.load_agents_from_file", false]], "load_config()\uff08\u5728 agentscope.web.workstation.workflow \u6a21\u5757\u4e2d\uff09": [[101, "agentscope.web.workstation.workflow.load_config", false]], "load_dict() \uff08agentscope.manager.asmanager \u65b9\u6cd5\uff09": [[13, "agentscope.manager.ASManager.load_dict", false]], "load_dict() \uff08agentscope.manager.filemanager \u65b9\u6cd5\uff09": [[13, "agentscope.manager.FileManager.load_dict", false]], "load_dict() \uff08agentscope.manager.modelmanager \u65b9\u6cd5\uff09": [[13, "agentscope.manager.ModelManager.load_dict", false]], "load_dict() \uff08agentscope.manager.monitormanager \u65b9\u6cd5\uff09": [[13, "agentscope.manager.MonitorManager.load_dict", false]], "load_model_configs() \uff08agentscope.manager.modelmanager \u65b9\u6cd5\uff09": [[13, "agentscope.manager.ModelManager.load_model_configs", false]], "load_web()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.load_web", false]], "load_web()\uff08\u5728 agentscope.service.web.web_digest \u6a21\u5757\u4e2d\uff09": [[86, "agentscope.service.web.web_digest.load_web", false]], "log_gradio()\uff08\u5728 agentscope.logging \u6a21\u5757\u4e2d\uff09": [[12, "agentscope.logging.log_gradio", false]], "log_msg()\uff08\u5728 agentscope.logging \u6a21\u5757\u4e2d\uff09": [[12, "agentscope.logging.log_msg", false]], "log_stream_msg()\uff08\u5728 agentscope.logging \u6a21\u5757\u4e2d\uff09": [[12, "agentscope.logging.log_stream_msg", false]], "main()\uff08\u5728 agentscope.web.workstation.workflow \u6a21\u5757\u4e2d\uff09": [[101, "agentscope.web.workstation.workflow.main", false]], "markdowncodeblockparser\uff08agentscope.parsers \u4e2d\u7684\u7c7b\uff09": [[32, "agentscope.parsers.MarkdownCodeBlockParser", false]], "markdowncodeblockparser\uff08agentscope.parsers.code_block_parser \u4e2d\u7684\u7c7b\uff09": [[33, "agentscope.parsers.code_block_parser.MarkdownCodeBlockParser", false]], "markdownjsondictparser\uff08agentscope.parsers \u4e2d\u7684\u7c7b\uff09": [[32, "agentscope.parsers.MarkdownJsonDictParser", false]], "markdownjsondictparser\uff08agentscope.parsers.json_object_parser \u4e2d\u7684\u7c7b\uff09": [[34, "agentscope.parsers.json_object_parser.MarkdownJsonDictParser", false]], "markdownjsonobjectparser\uff08agentscope.parsers \u4e2d\u7684\u7c7b\uff09": [[32, "agentscope.parsers.MarkdownJsonObjectParser", false]], "markdownjsonobjectparser\uff08agentscope.parsers.json_object_parser \u4e2d\u7684\u7c7b\uff09": [[34, "agentscope.parsers.json_object_parser.MarkdownJsonObjectParser", false]], "memorybase\uff08agentscope.memory \u4e2d\u7684\u7c7b\uff09": [[14, "agentscope.memory.MemoryBase", false]], "memorybase\uff08agentscope.memory.memory \u4e2d\u7684\u7c7b\uff09": [[15, "agentscope.memory.memory.MemoryBase", false]], "message\uff08agentscope.exception.agentservererror \u5c5e\u6027\uff09": [[11, "agentscope.exception.AgentServerError.message", false]], "message\uff08agentscope.web.workstation.workflow_node.workflownodetype \u5c5e\u6027\uff09": [[103, "agentscope.web.workstation.workflow_node.WorkflowNodeType.MESSAGE", false]], "meta_data\uff08agentscope.service.browser.web_browser.webelementinfo \u5c5e\u6027\uff09": [[56, "agentscope.service.browser.web_browser.WebElementInfo.meta_data", false]], "meta_data\uff08agentscope.service.webelementinfo \u5c5e\u6027\uff09": [[54, "agentscope.service.WebElementInfo.meta_data", false]], "metadata\uff08agentscope.message.msg \u5c5e\u6027\uff09": [[17, "agentscope.message.Msg.metadata", false]], "metadata\uff08agentscope.message.msg.msg \u5c5e\u6027\uff09": [[18, "agentscope.message.msg.Msg.metadata", false]], "metadata\uff08agentscope.message.placeholder.placeholdermessage \u5c5e\u6027\uff09": [[19, "agentscope.message.placeholder.PlaceholderMessage.metadata", false]], "metadata\uff08agentscope.message.placeholdermessage \u5c5e\u6027\uff09": [[17, "agentscope.message.PlaceholderMessage.metadata", false]], "missing_begin_tag\uff08agentscope.exception.tagnotfounderror \u5c5e\u6027\uff09": [[11, "agentscope.exception.TagNotFoundError.missing_begin_tag", false]], "missing_end_tag\uff08agentscope.exception.tagnotfounderror \u5c5e\u6027\uff09": [[11, "agentscope.exception.TagNotFoundError.missing_end_tag", false]], "mixtureofagents\uff08agentscope.strategy \u4e2d\u7684\u7c7b\uff09": [[88, "agentscope.strategy.MixtureOfAgents", false]], "mixtureofagents\uff08agentscope.strategy.mixture_of_agent \u4e2d\u7684\u7c7b\uff09": [[89, "agentscope.strategy.mixture_of_agent.MixtureOfAgents", false]], "model_computed_fields\uff08agentscope.service.browser.web_browser.webelementinfo \u5c5e\u6027\uff09": [[56, "agentscope.service.browser.web_browser.WebElementInfo.model_computed_fields", false]], "model_computed_fields\uff08agentscope.service.webelementinfo \u5c5e\u6027\uff09": [[54, "agentscope.service.WebElementInfo.model_computed_fields", false]], "model_configs\uff08agentscope.manager.modelmanager \u5c5e\u6027\uff09": [[13, "agentscope.manager.ModelManager.model_configs", false]], "model_config\uff08agentscope.service.browser.web_browser.webelementinfo \u5c5e\u6027\uff09": [[56, "agentscope.service.browser.web_browser.WebElementInfo.model_config", false]], "model_config\uff08agentscope.service.webelementinfo \u5c5e\u6027\uff09": [[54, "agentscope.service.WebElementInfo.model_config", false]], "model_fields\uff08agentscope.service.browser.web_browser.webelementinfo \u5c5e\u6027\uff09": [[56, "agentscope.service.browser.web_browser.WebElementInfo.model_fields", false]], "model_fields\uff08agentscope.service.webelementinfo \u5c5e\u6027\uff09": [[54, "agentscope.service.WebElementInfo.model_fields", false]], "model_name\uff08agentscope.models.dashscope_model.dashscopechatwrapper \u5c5e\u6027\uff09": [[21, "agentscope.models.dashscope_model.DashScopeChatWrapper.model_name", false]], "model_name\uff08agentscope.models.dashscope_model.dashscopeimagesynthesiswrapper \u5c5e\u6027\uff09": [[21, "agentscope.models.dashscope_model.DashScopeImageSynthesisWrapper.model_name", false]], "model_name\uff08agentscope.models.dashscope_model.dashscopemultimodalwrapper \u5c5e\u6027\uff09": [[21, "agentscope.models.dashscope_model.DashScopeMultiModalWrapper.model_name", false]], "model_name\uff08agentscope.models.dashscope_model.dashscopetextembeddingwrapper \u5c5e\u6027\uff09": [[21, "agentscope.models.dashscope_model.DashScopeTextEmbeddingWrapper.model_name", false]], "model_name\uff08agentscope.models.gemini_model.geminichatwrapper \u5c5e\u6027\uff09": [[22, "agentscope.models.gemini_model.GeminiChatWrapper.model_name", false]], "model_name\uff08agentscope.models.gemini_model.geminiembeddingwrapper \u5c5e\u6027\uff09": [[22, "agentscope.models.gemini_model.GeminiEmbeddingWrapper.model_name", false]], "model_name\uff08agentscope.models.litellm_model.litellmchatwrapper \u5c5e\u6027\uff09": [[23, "agentscope.models.litellm_model.LiteLLMChatWrapper.model_name", false]], "model_name\uff08agentscope.models.model.modelwrapperbase \u5c5e\u6027\uff09": [[24, "agentscope.models.model.ModelWrapperBase.model_name", false]], "model_name\uff08agentscope.models.modelwrapperbase \u5c5e\u6027\uff09": [[20, "agentscope.models.ModelWrapperBase.model_name", false]], "model_name\uff08agentscope.models.ollama_model.ollamachatwrapper \u5c5e\u6027\uff09": [[25, "agentscope.models.ollama_model.OllamaChatWrapper.model_name", false]], "model_name\uff08agentscope.models.ollama_model.ollamaembeddingwrapper \u5c5e\u6027\uff09": [[25, "agentscope.models.ollama_model.OllamaEmbeddingWrapper.model_name", false]], "model_name\uff08agentscope.models.ollama_model.ollamagenerationwrapper \u5c5e\u6027\uff09": [[25, "agentscope.models.ollama_model.OllamaGenerationWrapper.model_name", false]], "model_name\uff08agentscope.models.ollama_model.ollamawrapperbase \u5c5e\u6027\uff09": [[25, "agentscope.models.ollama_model.OllamaWrapperBase.model_name", false]], "model_name\uff08agentscope.models.openai_model.openaichatwrapper \u5c5e\u6027\uff09": [[26, "agentscope.models.openai_model.OpenAIChatWrapper.model_name", false]], "model_name\uff08agentscope.models.openai_model.openaidallewrapper \u5c5e\u6027\uff09": [[26, "agentscope.models.openai_model.OpenAIDALLEWrapper.model_name", false]], "model_name\uff08agentscope.models.openai_model.openaiembeddingwrapper \u5c5e\u6027\uff09": [[26, "agentscope.models.openai_model.OpenAIEmbeddingWrapper.model_name", false]], "model_name\uff08agentscope.models.post_model.postapichatwrapper \u5c5e\u6027\uff09": [[27, "agentscope.models.post_model.PostAPIChatWrapper.model_name", false]], "model_name\uff08agentscope.models.post_model.postapimodelwrapperbase \u5c5e\u6027\uff09": [[27, "agentscope.models.post_model.PostAPIModelWrapperBase.model_name", false]], "model_name\uff08agentscope.models.yi_model.yichatwrapper \u5c5e\u6027\uff09": [[29, "agentscope.models.yi_model.YiChatWrapper.model_name", false]], "model_name\uff08agentscope.models.zhipu_model.zhipuaichatwrapper \u5c5e\u6027\uff09": [[30, "agentscope.models.zhipu_model.ZhipuAIChatWrapper.model_name", false]], "model_name\uff08agentscope.models.zhipu_model.zhipuaiembeddingwrapper \u5c5e\u6027\uff09": [[30, "agentscope.models.zhipu_model.ZhipuAIEmbeddingWrapper.model_name", false]], "model_type\uff08agentscope.models.dashscope_model.dashscopechatwrapper \u5c5e\u6027\uff09": [[21, "agentscope.models.dashscope_model.DashScopeChatWrapper.model_type", false]], "model_type\uff08agentscope.models.dashscope_model.dashscopeimagesynthesiswrapper \u5c5e\u6027\uff09": [[21, "agentscope.models.dashscope_model.DashScopeImageSynthesisWrapper.model_type", false]], "model_type\uff08agentscope.models.dashscope_model.dashscopemultimodalwrapper \u5c5e\u6027\uff09": [[21, "agentscope.models.dashscope_model.DashScopeMultiModalWrapper.model_type", false]], "model_type\uff08agentscope.models.dashscope_model.dashscopetextembeddingwrapper \u5c5e\u6027\uff09": [[21, "agentscope.models.dashscope_model.DashScopeTextEmbeddingWrapper.model_type", false]], "model_type\uff08agentscope.models.dashscopechatwrapper \u5c5e\u6027\uff09": [[20, "agentscope.models.DashScopeChatWrapper.model_type", false]], "model_type\uff08agentscope.models.dashscopeimagesynthesiswrapper \u5c5e\u6027\uff09": [[20, "agentscope.models.DashScopeImageSynthesisWrapper.model_type", false]], "model_type\uff08agentscope.models.dashscopemultimodalwrapper \u5c5e\u6027\uff09": [[20, "agentscope.models.DashScopeMultiModalWrapper.model_type", false]], "model_type\uff08agentscope.models.dashscopetextembeddingwrapper \u5c5e\u6027\uff09": [[20, "agentscope.models.DashScopeTextEmbeddingWrapper.model_type", false]], "model_type\uff08agentscope.models.gemini_model.geminichatwrapper \u5c5e\u6027\uff09": [[22, "agentscope.models.gemini_model.GeminiChatWrapper.model_type", false]], "model_type\uff08agentscope.models.gemini_model.geminiembeddingwrapper \u5c5e\u6027\uff09": [[22, "agentscope.models.gemini_model.GeminiEmbeddingWrapper.model_type", false]], "model_type\uff08agentscope.models.geminichatwrapper \u5c5e\u6027\uff09": [[20, "agentscope.models.GeminiChatWrapper.model_type", false]], "model_type\uff08agentscope.models.geminiembeddingwrapper \u5c5e\u6027\uff09": [[20, "agentscope.models.GeminiEmbeddingWrapper.model_type", false]], "model_type\uff08agentscope.models.litellm_model.litellmchatwrapper \u5c5e\u6027\uff09": [[23, "agentscope.models.litellm_model.LiteLLMChatWrapper.model_type", false]], "model_type\uff08agentscope.models.litellmchatwrapper \u5c5e\u6027\uff09": [[20, "agentscope.models.LiteLLMChatWrapper.model_type", false]], "model_type\uff08agentscope.models.model.modelwrapperbase \u5c5e\u6027\uff09": [[24, "agentscope.models.model.ModelWrapperBase.model_type", false]], "model_type\uff08agentscope.models.modelwrapperbase \u5c5e\u6027\uff09": [[20, "agentscope.models.ModelWrapperBase.model_type", false]], "model_type\uff08agentscope.models.ollama_model.ollamachatwrapper \u5c5e\u6027\uff09": [[25, "agentscope.models.ollama_model.OllamaChatWrapper.model_type", false]], "model_type\uff08agentscope.models.ollama_model.ollamaembeddingwrapper \u5c5e\u6027\uff09": [[25, "agentscope.models.ollama_model.OllamaEmbeddingWrapper.model_type", false]], "model_type\uff08agentscope.models.ollama_model.ollamagenerationwrapper \u5c5e\u6027\uff09": [[25, "agentscope.models.ollama_model.OllamaGenerationWrapper.model_type", false]], "model_type\uff08agentscope.models.ollama_model.ollamawrapperbase \u5c5e\u6027\uff09": [[25, "agentscope.models.ollama_model.OllamaWrapperBase.model_type", false]], "model_type\uff08agentscope.models.ollamachatwrapper \u5c5e\u6027\uff09": [[20, "agentscope.models.OllamaChatWrapper.model_type", false]], "model_type\uff08agentscope.models.ollamaembeddingwrapper \u5c5e\u6027\uff09": [[20, "agentscope.models.OllamaEmbeddingWrapper.model_type", false]], "model_type\uff08agentscope.models.ollamagenerationwrapper \u5c5e\u6027\uff09": [[20, "agentscope.models.OllamaGenerationWrapper.model_type", false]], "model_type\uff08agentscope.models.openai_model.openaichatwrapper \u5c5e\u6027\uff09": [[26, "agentscope.models.openai_model.OpenAIChatWrapper.model_type", false]], "model_type\uff08agentscope.models.openai_model.openaidallewrapper \u5c5e\u6027\uff09": [[26, "agentscope.models.openai_model.OpenAIDALLEWrapper.model_type", false]], "model_type\uff08agentscope.models.openai_model.openaiembeddingwrapper \u5c5e\u6027\uff09": [[26, "agentscope.models.openai_model.OpenAIEmbeddingWrapper.model_type", false]], "model_type\uff08agentscope.models.openaichatwrapper \u5c5e\u6027\uff09": [[20, "agentscope.models.OpenAIChatWrapper.model_type", false]], "model_type\uff08agentscope.models.openaidallewrapper \u5c5e\u6027\uff09": [[20, "agentscope.models.OpenAIDALLEWrapper.model_type", false]], "model_type\uff08agentscope.models.openaiembeddingwrapper \u5c5e\u6027\uff09": [[20, "agentscope.models.OpenAIEmbeddingWrapper.model_type", false]], "model_type\uff08agentscope.models.post_model.postapichatwrapper \u5c5e\u6027\uff09": [[27, "agentscope.models.post_model.PostAPIChatWrapper.model_type", false]], "model_type\uff08agentscope.models.post_model.postapidallewrapper \u5c5e\u6027\uff09": [[27, "agentscope.models.post_model.PostAPIDALLEWrapper.model_type", false]], "model_type\uff08agentscope.models.post_model.postapiembeddingwrapper \u5c5e\u6027\uff09": [[27, "agentscope.models.post_model.PostAPIEmbeddingWrapper.model_type", false]], "model_type\uff08agentscope.models.post_model.postapimodelwrapperbase \u5c5e\u6027\uff09": [[27, "agentscope.models.post_model.PostAPIModelWrapperBase.model_type", false]], "model_type\uff08agentscope.models.postapichatwrapper \u5c5e\u6027\uff09": [[20, "agentscope.models.PostAPIChatWrapper.model_type", false]], "model_type\uff08agentscope.models.postapimodelwrapperbase \u5c5e\u6027\uff09": [[20, "agentscope.models.PostAPIModelWrapperBase.model_type", false]], "model_type\uff08agentscope.models.yi_model.yichatwrapper \u5c5e\u6027\uff09": [[29, "agentscope.models.yi_model.YiChatWrapper.model_type", false]], "model_type\uff08agentscope.models.yichatwrapper \u5c5e\u6027\uff09": [[20, "agentscope.models.YiChatWrapper.model_type", false]], "model_type\uff08agentscope.models.zhipu_model.zhipuaichatwrapper \u5c5e\u6027\uff09": [[30, "agentscope.models.zhipu_model.ZhipuAIChatWrapper.model_type", false]], "model_type\uff08agentscope.models.zhipu_model.zhipuaiembeddingwrapper \u5c5e\u6027\uff09": [[30, "agentscope.models.zhipu_model.ZhipuAIEmbeddingWrapper.model_type", false]], "model_type\uff08agentscope.models.zhipuaichatwrapper \u5c5e\u6027\uff09": [[20, "agentscope.models.ZhipuAIChatWrapper.model_type", false]], "model_type\uff08agentscope.models.zhipuaiembeddingwrapper \u5c5e\u6027\uff09": [[20, "agentscope.models.ZhipuAIEmbeddingWrapper.model_type", false]], "modelmanager\uff08agentscope.manager \u4e2d\u7684\u7c7b\uff09": [[13, "agentscope.manager.ModelManager", false]], "modelnode\uff08agentscope.web.workstation.workflow_node \u4e2d\u7684\u7c7b\uff09": [[103, "agentscope.web.workstation.workflow_node.ModelNode", false]], "modelresponse\uff08agentscope.models \u4e2d\u7684\u7c7b\uff09": [[20, "agentscope.models.ModelResponse", false]], "modelresponse\uff08agentscope.models.response \u4e2d\u7684\u7c7b\uff09": [[28, "agentscope.models.response.ModelResponse", false]], "modelwrapperbase\uff08agentscope.models \u4e2d\u7684\u7c7b\uff09": [[20, "agentscope.models.ModelWrapperBase", false]], "modelwrapperbase\uff08agentscope.models.model \u4e2d\u7684\u7c7b\uff09": [[24, "agentscope.models.model.ModelWrapperBase", false]], "model\uff08agentscope.web.workstation.workflow_node.workflownodetype \u5c5e\u6027\uff09": [[103, "agentscope.web.workstation.workflow_node.WorkflowNodeType.MODEL", false]], "module": [[0, "module-agentscope", false], [1, "module-agentscope.agents", false], [2, "module-agentscope.agents.agent", false], [3, "module-agentscope.agents.dialog_agent", false], [4, "module-agentscope.agents.dict_dialog_agent", false], [5, "module-agentscope.agents.operator", false], [6, "module-agentscope.agents.rag_agent", false], [7, "module-agentscope.agents.react_agent", false], [8, "module-agentscope.agents.rpc_agent", false], [9, "module-agentscope.agents.user_agent", false], [10, "module-agentscope.constants", false], [11, "module-agentscope.exception", false], [12, "module-agentscope.logging", false], [13, "module-agentscope.manager", false], [14, "module-agentscope.memory", false], [15, "module-agentscope.memory.memory", false], [16, "module-agentscope.memory.temporary_memory", false], [17, "module-agentscope.message", false], [18, "module-agentscope.message.msg", false], [19, "module-agentscope.message.placeholder", false], [20, "module-agentscope.models", false], [21, "module-agentscope.models.dashscope_model", false], [22, "module-agentscope.models.gemini_model", false], [23, "module-agentscope.models.litellm_model", false], [24, "module-agentscope.models.model", false], [25, "module-agentscope.models.ollama_model", false], [26, "module-agentscope.models.openai_model", false], [27, "module-agentscope.models.post_model", false], [28, "module-agentscope.models.response", false], [29, "module-agentscope.models.yi_model", false], [30, "module-agentscope.models.zhipu_model", false], [31, "module-agentscope.msghub", false], [32, "module-agentscope.parsers", false], [33, "module-agentscope.parsers.code_block_parser", false], [34, "module-agentscope.parsers.json_object_parser", false], [35, "module-agentscope.parsers.parser_base", false], [36, "module-agentscope.parsers.regex_tagged_content_parser", false], [37, "module-agentscope.parsers.tagged_content_parser", false], [38, "module-agentscope.pipelines", false], [39, "module-agentscope.pipelines.functional", false], [40, "module-agentscope.pipelines.pipeline", false], [41, "module-agentscope.prompt", false], [42, "module-agentscope.rag", false], [43, "module-agentscope.rag.knowledge", false], [44, "module-agentscope.rag.knowledge_bank", false], [45, "module-agentscope.rag.llama_index_knowledge", false], [46, "module-agentscope.rpc", false], [47, "module-agentscope.rpc.rpc_agent_client", false], [48, "module-agentscope.rpc.rpc_agent_pb2", false], [49, "module-agentscope.rpc.rpc_agent_pb2_grpc", false], [50, "module-agentscope.serialize", false], [51, "module-agentscope.server", false], [52, "module-agentscope.server.launcher", false], [53, "module-agentscope.server.servicer", false], [54, "module-agentscope.service", false], [55, "module-agentscope.service.browser", false], [56, "module-agentscope.service.browser.web_browser", false], [57, "module-agentscope.service.execute_code", false], [58, "module-agentscope.service.execute_code.exec_notebook", false], [59, "module-agentscope.service.execute_code.exec_python", false], [60, "module-agentscope.service.execute_code.exec_shell", false], [61, "module-agentscope.service.file", false], [62, "module-agentscope.service.file.common", false], [63, "module-agentscope.service.file.json", false], [64, "module-agentscope.service.file.text", false], [65, "module-agentscope.service.multi_modality", false], [66, "module-agentscope.service.multi_modality.dashscope_services", false], [67, "module-agentscope.service.multi_modality.openai_services", false], [68, "module-agentscope.service.retrieval", false], [69, "module-agentscope.service.retrieval.retrieval_from_list", false], [70, "module-agentscope.service.retrieval.similarity", false], [71, "module-agentscope.service.service_response", false], [72, "module-agentscope.service.service_status", false], [73, "module-agentscope.service.service_toolkit", false], [74, "module-agentscope.service.sql_query", false], [75, "module-agentscope.service.sql_query.mongodb", false], [76, "module-agentscope.service.sql_query.mysql", false], [77, "module-agentscope.service.sql_query.sqlite", false], [78, "module-agentscope.service.text_processing", false], [79, "module-agentscope.service.text_processing.summarization", false], [80, "module-agentscope.service.web", false], [81, "module-agentscope.service.web.arxiv", false], [82, "module-agentscope.service.web.dblp", false], [83, "module-agentscope.service.web.download", false], [84, "module-agentscope.service.web.search", false], [85, "module-agentscope.service.web.tripadvisor", false], [86, "module-agentscope.service.web.web_digest", false], [87, "module-agentscope.service.web.wikipedia", false], [88, "module-agentscope.strategy", false], [89, "module-agentscope.strategy.mixture_of_agent", false], [90, "module-agentscope.studio", false], [91, "module-agentscope.studio.utils", false], [92, "module-agentscope.utils", false], [93, "module-agentscope.utils.common", false], [94, "module-agentscope.utils.token_utils", false], [95, "module-agentscope.web", false], [96, "module-agentscope.web.gradio", false], [97, "module-agentscope.web.gradio.constants", false], [98, "module-agentscope.web.gradio.studio", false], [99, "module-agentscope.web.gradio.utils", false], [100, "module-agentscope.web.workstation", false], [101, "module-agentscope.web.workstation.workflow", false], [102, "module-agentscope.web.workstation.workflow_dag", false], [103, "module-agentscope.web.workstation.workflow_node", false], [104, "module-agentscope.web.workstation.workflow_utils", false]], "monitormanager\uff08agentscope.manager \u4e2d\u7684\u7c7b\uff09": [[13, "agentscope.manager.MonitorManager", false]], "move_directory()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.move_directory", false]], "move_directory()\uff08\u5728 agentscope.service.file.common \u6a21\u5757\u4e2d\uff09": [[62, "agentscope.service.file.common.move_directory", false]], "move_file()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.move_file", false]], "move_file()\uff08\u5728 agentscope.service.file.common \u6a21\u5757\u4e2d\uff09": [[62, "agentscope.service.file.common.move_file", false]], "msghub()\uff08\u5728 agentscope \u6a21\u5757\u4e2d\uff09": [[0, "agentscope.msghub", false]], "msghub()\uff08\u5728 agentscope.msghub \u6a21\u5757\u4e2d\uff09": [[31, "agentscope.msghub.msghub", false]], "msghubmanager\uff08agentscope.msghub \u4e2d\u7684\u7c7b\uff09": [[31, "agentscope.msghub.MsgHubManager", false]], "msghubnode\uff08agentscope.web.workstation.workflow_node \u4e2d\u7684\u7c7b\uff09": [[103, "agentscope.web.workstation.workflow_node.MsgHubNode", false]], "msgnode\uff08agentscope.web.workstation.workflow_node \u4e2d\u7684\u7c7b\uff09": [[103, "agentscope.web.workstation.workflow_node.MsgNode", false]], "msg\uff08agentscope.message \u4e2d\u7684\u7c7b\uff09": [[17, "agentscope.message.Msg", false]], "msg\uff08agentscope.message.msg \u4e2d\u7684\u7c7b\uff09": [[18, "agentscope.message.msg.Msg", false]], "multitaggedcontentparser\uff08agentscope.parsers \u4e2d\u7684\u7c7b\uff09": [[32, "agentscope.parsers.MultiTaggedContentParser", false]], "multitaggedcontentparser\uff08agentscope.parsers.tagged_content_parser \u4e2d\u7684\u7c7b\uff09": [[37, "agentscope.parsers.tagged_content_parser.MultiTaggedContentParser", false]], "name\uff08agentscope.message.msg \u5c5e\u6027\uff09": [[17, "agentscope.message.Msg.name", false]], "name\uff08agentscope.message.msg.msg \u5c5e\u6027\uff09": [[18, "agentscope.message.msg.Msg.name", false]], "name\uff08agentscope.message.placeholder.placeholdermessage \u5c5e\u6027\uff09": [[19, "agentscope.message.placeholder.PlaceholderMessage.name", false]], "name\uff08agentscope.message.placeholdermessage \u5c5e\u6027\uff09": [[17, "agentscope.message.PlaceholderMessage.name", false]], "name\uff08agentscope.parsers.code_block_parser.markdowncodeblockparser \u5c5e\u6027\uff09": [[33, "agentscope.parsers.code_block_parser.MarkdownCodeBlockParser.name", false]], "name\uff08agentscope.parsers.json_object_parser.markdownjsondictparser \u5c5e\u6027\uff09": [[34, "agentscope.parsers.json_object_parser.MarkdownJsonDictParser.name", false]], "name\uff08agentscope.parsers.json_object_parser.markdownjsonobjectparser \u5c5e\u6027\uff09": [[34, "agentscope.parsers.json_object_parser.MarkdownJsonObjectParser.name", false]], "name\uff08agentscope.parsers.markdowncodeblockparser \u5c5e\u6027\uff09": [[32, "agentscope.parsers.MarkdownCodeBlockParser.name", false]], "name\uff08agentscope.parsers.markdownjsondictparser \u5c5e\u6027\uff09": [[32, "agentscope.parsers.MarkdownJsonDictParser.name", false]], "name\uff08agentscope.parsers.markdownjsonobjectparser \u5c5e\u6027\uff09": [[32, "agentscope.parsers.MarkdownJsonObjectParser.name", false]], "name\uff08agentscope.parsers.tagged_content_parser.taggedcontent \u5c5e\u6027\uff09": [[37, "agentscope.parsers.tagged_content_parser.TaggedContent.name", false]], "name\uff08agentscope.parsers.taggedcontent \u5c5e\u6027\uff09": [[32, "agentscope.parsers.TaggedContent.name", false]], "name\uff08agentscope.service.service_toolkit.servicefunction \u5c5e\u6027\uff09": [[73, "agentscope.service.service_toolkit.ServiceFunction.name", false]], "node_name\uff08agentscope.service.browser.web_browser.webelementinfo \u5c5e\u6027\uff09": [[56, "agentscope.service.browser.web_browser.WebElementInfo.node_name", false]], "node_name\uff08agentscope.service.webelementinfo \u5c5e\u6027\uff09": [[54, "agentscope.service.WebElementInfo.node_name", false]], "node_type\uff08agentscope.web.workstation.workflow_node.bingsearchservicenode \u5c5e\u6027\uff09": [[103, "agentscope.web.workstation.workflow_node.BingSearchServiceNode.node_type", false]], "node_type\uff08agentscope.web.workstation.workflow_node.copynode \u5c5e\u6027\uff09": [[103, "agentscope.web.workstation.workflow_node.CopyNode.node_type", false]], "node_type\uff08agentscope.web.workstation.workflow_node.dialogagentnode \u5c5e\u6027\uff09": [[103, "agentscope.web.workstation.workflow_node.DialogAgentNode.node_type", false]], "node_type\uff08agentscope.web.workstation.workflow_node.dictdialogagentnode \u5c5e\u6027\uff09": [[103, "agentscope.web.workstation.workflow_node.DictDialogAgentNode.node_type", false]], "node_type\uff08agentscope.web.workstation.workflow_node.forlooppipelinenode \u5c5e\u6027\uff09": [[103, "agentscope.web.workstation.workflow_node.ForLoopPipelineNode.node_type", false]], "node_type\uff08agentscope.web.workstation.workflow_node.googlesearchservicenode \u5c5e\u6027\uff09": [[103, "agentscope.web.workstation.workflow_node.GoogleSearchServiceNode.node_type", false]], "node_type\uff08agentscope.web.workstation.workflow_node.ifelsepipelinenode \u5c5e\u6027\uff09": [[103, "agentscope.web.workstation.workflow_node.IfElsePipelineNode.node_type", false]], "node_type\uff08agentscope.web.workstation.workflow_node.modelnode \u5c5e\u6027\uff09": [[103, "agentscope.web.workstation.workflow_node.ModelNode.node_type", false]], "node_type\uff08agentscope.web.workstation.workflow_node.msghubnode \u5c5e\u6027\uff09": [[103, "agentscope.web.workstation.workflow_node.MsgHubNode.node_type", false]], "node_type\uff08agentscope.web.workstation.workflow_node.msgnode \u5c5e\u6027\uff09": [[103, "agentscope.web.workstation.workflow_node.MsgNode.node_type", false]], "node_type\uff08agentscope.web.workstation.workflow_node.placeholdernode \u5c5e\u6027\uff09": [[103, "agentscope.web.workstation.workflow_node.PlaceHolderNode.node_type", false]], "node_type\uff08agentscope.web.workstation.workflow_node.pythonservicenode \u5c5e\u6027\uff09": [[103, "agentscope.web.workstation.workflow_node.PythonServiceNode.node_type", false]], "node_type\uff08agentscope.web.workstation.workflow_node.reactagentnode \u5c5e\u6027\uff09": [[103, "agentscope.web.workstation.workflow_node.ReActAgentNode.node_type", false]], "node_type\uff08agentscope.web.workstation.workflow_node.readtextservicenode \u5c5e\u6027\uff09": [[103, "agentscope.web.workstation.workflow_node.ReadTextServiceNode.node_type", false]], "node_type\uff08agentscope.web.workstation.workflow_node.sequentialpipelinenode \u5c5e\u6027\uff09": [[103, "agentscope.web.workstation.workflow_node.SequentialPipelineNode.node_type", false]], "node_type\uff08agentscope.web.workstation.workflow_node.switchpipelinenode \u5c5e\u6027\uff09": [[103, "agentscope.web.workstation.workflow_node.SwitchPipelineNode.node_type", false]], "node_type\uff08agentscope.web.workstation.workflow_node.useragentnode \u5c5e\u6027\uff09": [[103, "agentscope.web.workstation.workflow_node.UserAgentNode.node_type", false]], "node_type\uff08agentscope.web.workstation.workflow_node.whilelooppipelinenode \u5c5e\u6027\uff09": [[103, "agentscope.web.workstation.workflow_node.WhileLoopPipelineNode.node_type", false]], "node_type\uff08agentscope.web.workstation.workflow_node.workflownode \u5c5e\u6027\uff09": [[103, "agentscope.web.workstation.workflow_node.WorkflowNode.node_type", false]], "node_type\uff08agentscope.web.workstation.workflow_node.writetextservicenode \u5c5e\u6027\uff09": [[103, "agentscope.web.workstation.workflow_node.WriteTextServiceNode.node_type", false]], "node_value\uff08agentscope.service.browser.web_browser.webelementinfo \u5c5e\u6027\uff09": [[56, "agentscope.service.browser.web_browser.WebElementInfo.node_value", false]], "node_value\uff08agentscope.service.webelementinfo \u5c5e\u6027\uff09": [[54, "agentscope.service.WebElementInfo.node_value", false]], "nodes_not_in_graph\uff08agentscope.web.workstation.workflow_dag.asdigraph \u5c5e\u6027\uff09": [[102, "agentscope.web.workstation.workflow_dag.ASDiGraph.nodes_not_in_graph", false]], "none\uff08agentscope.constants.responseformat \u5c5e\u6027\uff09": [[10, "agentscope.constants.ResponseFormat.NONE", false]], "notebookexecutor\uff08agentscope.service \u4e2d\u7684\u7c7b\uff09": [[54, "agentscope.service.NoteBookExecutor", false]], "notebookexecutor\uff08agentscope.service.execute_code.exec_notebook \u4e2d\u7684\u7c7b\uff09": [[58, "agentscope.service.execute_code.exec_notebook.NoteBookExecutor", false]], "num_tokens_from_content()\uff08\u5728 agentscope.utils.token_utils \u6a21\u5757\u4e2d\uff09": [[94, "agentscope.utils.token_utils.num_tokens_from_content", false]], "observe() \uff08agentscope.agents.agent.agentbase \u65b9\u6cd5\uff09": [[2, "agentscope.agents.agent.AgentBase.observe", false]], "observe() \uff08agentscope.agents.agentbase \u65b9\u6cd5\uff09": [[1, "agentscope.agents.AgentBase.observe", false]], "observe() \uff08agentscope.agents.rpc_agent.rpcagent \u65b9\u6cd5\uff09": [[8, "agentscope.agents.rpc_agent.RpcAgent.observe", false]], "ollamachatwrapper\uff08agentscope.models \u4e2d\u7684\u7c7b\uff09": [[20, "agentscope.models.OllamaChatWrapper", false]], "ollamachatwrapper\uff08agentscope.models.ollama_model \u4e2d\u7684\u7c7b\uff09": [[25, "agentscope.models.ollama_model.OllamaChatWrapper", false]], "ollamaembeddingwrapper\uff08agentscope.models \u4e2d\u7684\u7c7b\uff09": [[20, "agentscope.models.OllamaEmbeddingWrapper", false]], "ollamaembeddingwrapper\uff08agentscope.models.ollama_model \u4e2d\u7684\u7c7b\uff09": [[25, "agentscope.models.ollama_model.OllamaEmbeddingWrapper", false]], "ollamagenerationwrapper\uff08agentscope.models \u4e2d\u7684\u7c7b\uff09": [[20, "agentscope.models.OllamaGenerationWrapper", false]], "ollamagenerationwrapper\uff08agentscope.models.ollama_model \u4e2d\u7684\u7c7b\uff09": [[25, "agentscope.models.ollama_model.OllamaGenerationWrapper", false]], "ollamawrapperbase\uff08agentscope.models.ollama_model \u4e2d\u7684\u7c7b\uff09": [[25, "agentscope.models.ollama_model.OllamaWrapperBase", false]], "openai_audio_to_text()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.openai_audio_to_text", false]], "openai_audio_to_text()\uff08\u5728 agentscope.service.multi_modality.openai_services \u6a21\u5757\u4e2d\uff09": [[67, "agentscope.service.multi_modality.openai_services.openai_audio_to_text", false]], "openai_create_image_variation()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.openai_create_image_variation", false]], "openai_create_image_variation()\uff08\u5728 agentscope.service.multi_modality.openai_services \u6a21\u5757\u4e2d\uff09": [[67, "agentscope.service.multi_modality.openai_services.openai_create_image_variation", false]], "openai_edit_image()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.openai_edit_image", false]], "openai_edit_image()\uff08\u5728 agentscope.service.multi_modality.openai_services \u6a21\u5757\u4e2d\uff09": [[67, "agentscope.service.multi_modality.openai_services.openai_edit_image", false]], "openai_image_to_text()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.openai_image_to_text", false]], "openai_image_to_text()\uff08\u5728 agentscope.service.multi_modality.openai_services \u6a21\u5757\u4e2d\uff09": [[67, "agentscope.service.multi_modality.openai_services.openai_image_to_text", false]], "openai_text_to_audio()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.openai_text_to_audio", false]], "openai_text_to_audio()\uff08\u5728 agentscope.service.multi_modality.openai_services \u6a21\u5757\u4e2d\uff09": [[67, "agentscope.service.multi_modality.openai_services.openai_text_to_audio", false]], "openai_text_to_image()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.openai_text_to_image", false]], "openai_text_to_image()\uff08\u5728 agentscope.service.multi_modality.openai_services \u6a21\u5757\u4e2d\uff09": [[67, "agentscope.service.multi_modality.openai_services.openai_text_to_image", false]], "openaichatwrapper\uff08agentscope.models \u4e2d\u7684\u7c7b\uff09": [[20, "agentscope.models.OpenAIChatWrapper", false]], "openaichatwrapper\uff08agentscope.models.openai_model \u4e2d\u7684\u7c7b\uff09": [[26, "agentscope.models.openai_model.OpenAIChatWrapper", false]], "openaidallewrapper\uff08agentscope.models \u4e2d\u7684\u7c7b\uff09": [[20, "agentscope.models.OpenAIDALLEWrapper", false]], "openaidallewrapper\uff08agentscope.models.openai_model \u4e2d\u7684\u7c7b\uff09": [[26, "agentscope.models.openai_model.OpenAIDALLEWrapper", false]], "openaiembeddingwrapper\uff08agentscope.models \u4e2d\u7684\u7c7b\uff09": [[20, "agentscope.models.OpenAIEmbeddingWrapper", false]], "openaiembeddingwrapper\uff08agentscope.models.openai_model \u4e2d\u7684\u7c7b\uff09": [[26, "agentscope.models.openai_model.OpenAIEmbeddingWrapper", false]], "openaiwrapperbase\uff08agentscope.models \u4e2d\u7684\u7c7b\uff09": [[20, "agentscope.models.OpenAIWrapperBase", false]], "openaiwrapperbase\uff08agentscope.models.openai_model \u4e2d\u7684\u7c7b\uff09": [[26, "agentscope.models.openai_model.OpenAIWrapperBase", false]], "operator\uff08agentscope.agents \u4e2d\u7684\u7c7b\uff09": [[1, "agentscope.agents.Operator", false]], "operator\uff08agentscope.agents.operator \u4e2d\u7684\u7c7b\uff09": [[5, "agentscope.agents.operator.Operator", false]], "options\uff08agentscope.models.ollama_model.ollamachatwrapper \u5c5e\u6027\uff09": [[25, "agentscope.models.ollama_model.OllamaChatWrapper.options", false]], "options\uff08agentscope.models.ollama_model.ollamaembeddingwrapper \u5c5e\u6027\uff09": [[25, "agentscope.models.ollama_model.OllamaEmbeddingWrapper.options", false]], "options\uff08agentscope.models.ollama_model.ollamagenerationwrapper \u5c5e\u6027\uff09": [[25, "agentscope.models.ollama_model.OllamaGenerationWrapper.options", false]], "options\uff08agentscope.models.ollama_model.ollamawrapperbase \u5c5e\u6027\uff09": [[25, "agentscope.models.ollama_model.OllamaWrapperBase.options", false]], "origin_x\uff08agentscope.service.browser.web_browser.webelementinfo \u5c5e\u6027\uff09": [[56, "agentscope.service.browser.web_browser.WebElementInfo.origin_x", false]], "origin_x\uff08agentscope.service.webelementinfo \u5c5e\u6027\uff09": [[54, "agentscope.service.WebElementInfo.origin_x", false]], "origin_y\uff08agentscope.service.browser.web_browser.webelementinfo \u5c5e\u6027\uff09": [[56, "agentscope.service.browser.web_browser.WebElementInfo.origin_y", false]], "origin_y\uff08agentscope.service.webelementinfo \u5c5e\u6027\uff09": [[54, "agentscope.service.WebElementInfo.origin_y", false]], "original_func\uff08agentscope.service.service_toolkit.servicefunction \u5c5e\u6027\uff09": [[73, "agentscope.service.service_toolkit.ServiceFunction.original_func", false]], "page_html\uff08agentscope.service.browser.web_browser.webbrowser \u5c5e\u6027\uff09": [[56, "agentscope.service.browser.web_browser.WebBrowser.page_html", false]], "page_html\uff08agentscope.service.webbrowser \u5c5e\u6027\uff09": [[54, "agentscope.service.WebBrowser.page_html", false]], "page_markdown\uff08agentscope.service.browser.web_browser.webbrowser \u5c5e\u6027\uff09": [[56, "agentscope.service.browser.web_browser.WebBrowser.page_markdown", false]], "page_markdown\uff08agentscope.service.webbrowser \u5c5e\u6027\uff09": [[54, "agentscope.service.WebBrowser.page_markdown", false]], "page_screenshot\uff08agentscope.service.browser.web_browser.webbrowser \u5c5e\u6027\uff09": [[56, "agentscope.service.browser.web_browser.WebBrowser.page_screenshot", false]], "page_screenshot\uff08agentscope.service.webbrowser \u5c5e\u6027\uff09": [[54, "agentscope.service.WebBrowser.page_screenshot", false]], "page_title\uff08agentscope.service.browser.web_browser.webbrowser \u5c5e\u6027\uff09": [[56, "agentscope.service.browser.web_browser.WebBrowser.page_title", false]], "page_title\uff08agentscope.service.webbrowser \u5c5e\u6027\uff09": [[54, "agentscope.service.WebBrowser.page_title", false]], "parse() \uff08agentscope.parsers.code_block_parser.markdowncodeblockparser \u65b9\u6cd5\uff09": [[33, "agentscope.parsers.code_block_parser.MarkdownCodeBlockParser.parse", false]], "parse() \uff08agentscope.parsers.json_object_parser.markdownjsondictparser \u65b9\u6cd5\uff09": [[34, "agentscope.parsers.json_object_parser.MarkdownJsonDictParser.parse", false]], "parse() \uff08agentscope.parsers.json_object_parser.markdownjsonobjectparser \u65b9\u6cd5\uff09": [[34, "agentscope.parsers.json_object_parser.MarkdownJsonObjectParser.parse", false]], "parse() \uff08agentscope.parsers.markdowncodeblockparser \u65b9\u6cd5\uff09": [[32, "agentscope.parsers.MarkdownCodeBlockParser.parse", false]], "parse() \uff08agentscope.parsers.markdownjsondictparser \u65b9\u6cd5\uff09": [[32, "agentscope.parsers.MarkdownJsonDictParser.parse", false]], "parse() \uff08agentscope.parsers.markdownjsonobjectparser \u65b9\u6cd5\uff09": [[32, "agentscope.parsers.MarkdownJsonObjectParser.parse", false]], "parse() \uff08agentscope.parsers.multitaggedcontentparser \u65b9\u6cd5\uff09": [[32, "agentscope.parsers.MultiTaggedContentParser.parse", false]], "parse() \uff08agentscope.parsers.parser_base.parserbase \u65b9\u6cd5\uff09": [[35, "agentscope.parsers.parser_base.ParserBase.parse", false]], "parse() \uff08agentscope.parsers.parserbase \u65b9\u6cd5\uff09": [[32, "agentscope.parsers.ParserBase.parse", false]], "parse() \uff08agentscope.parsers.regex_tagged_content_parser.regextaggedcontentparser \u65b9\u6cd5\uff09": [[36, "agentscope.parsers.regex_tagged_content_parser.RegexTaggedContentParser.parse", false]], "parse() \uff08agentscope.parsers.regextaggedcontentparser \u65b9\u6cd5\uff09": [[32, "agentscope.parsers.RegexTaggedContentParser.parse", false]], "parse() \uff08agentscope.parsers.tagged_content_parser.multitaggedcontentparser \u65b9\u6cd5\uff09": [[37, "agentscope.parsers.tagged_content_parser.MultiTaggedContentParser.parse", false]], "parse_and_call_func() \uff08agentscope.service.service_toolkit.servicetoolkit \u65b9\u6cd5\uff09": [[73, "agentscope.service.service_toolkit.ServiceToolkit.parse_and_call_func", false]], "parse_and_call_func() \uff08agentscope.service.servicetoolkit \u65b9\u6cd5\uff09": [[54, "agentscope.service.ServiceToolkit.parse_and_call_func", false]], "parse_html_to_text()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.parse_html_to_text", false]], "parse_html_to_text()\uff08\u5728 agentscope.service.web.web_digest \u6a21\u5757\u4e2d\uff09": [[86, "agentscope.service.web.web_digest.parse_html_to_text", false]], "parse_json\uff08agentscope.parsers.tagged_content_parser.taggedcontent \u5c5e\u6027\uff09": [[37, "agentscope.parsers.tagged_content_parser.TaggedContent.parse_json", false]], "parse_json\uff08agentscope.parsers.taggedcontent \u5c5e\u6027\uff09": [[32, "agentscope.parsers.TaggedContent.parse_json", false]], "parserbase\uff08agentscope.parsers \u4e2d\u7684\u7c7b\uff09": [[32, "agentscope.parsers.ParserBase", false]], "parserbase\uff08agentscope.parsers.parser_base \u4e2d\u7684\u7c7b\uff09": [[35, "agentscope.parsers.parser_base.ParserBase", false]], "path_db\uff08agentscope.manager.monitormanager \u5c5e\u6027\uff09": [[13, "agentscope.manager.MonitorManager.path_db", false]], "pipelinebase\uff08agentscope.pipelines \u4e2d\u7684\u7c7b\uff09": [[38, "agentscope.pipelines.PipelineBase", false]], "pipelinebase\uff08agentscope.pipelines.pipeline \u4e2d\u7684\u7c7b\uff09": [[40, "agentscope.pipelines.pipeline.PipelineBase", false]], "pipeline\uff08agentscope.web.workstation.workflow_node.workflownodetype \u5c5e\u6027\uff09": [[103, "agentscope.web.workstation.workflow_node.WorkflowNodeType.PIPELINE", false]], "placeholder()\uff08\u5728 agentscope.pipelines.functional \u6a21\u5757\u4e2d\uff09": [[39, "agentscope.pipelines.functional.placeholder", false]], "placeholdermessage\uff08agentscope.message \u4e2d\u7684\u7c7b\uff09": [[17, "agentscope.message.PlaceholderMessage", false]], "placeholdermessage\uff08agentscope.message.placeholder \u4e2d\u7684\u7c7b\uff09": [[19, "agentscope.message.placeholder.PlaceholderMessage", false]], "placeholdernode\uff08agentscope.web.workstation.workflow_node \u4e2d\u7684\u7c7b\uff09": [[103, "agentscope.web.workstation.workflow_node.PlaceHolderNode", false]], "port\uff08agentscope.exception.agentservererror \u5c5e\u6027\uff09": [[11, "agentscope.exception.AgentServerError.port", false]], "post_processing() \uff08agentscope.rag.knowledge \u65b9\u6cd5\uff09": [[42, "agentscope.rag.Knowledge.post_processing", false]], "post_processing() \uff08agentscope.rag.knowledge.knowledge \u65b9\u6cd5\uff09": [[43, "agentscope.rag.knowledge.Knowledge.post_processing", false]], "postapichatwrapper\uff08agentscope.models \u4e2d\u7684\u7c7b\uff09": [[20, "agentscope.models.PostAPIChatWrapper", false]], "postapichatwrapper\uff08agentscope.models.post_model \u4e2d\u7684\u7c7b\uff09": [[27, "agentscope.models.post_model.PostAPIChatWrapper", false]], "postapidallewrapper\uff08agentscope.models.post_model \u4e2d\u7684\u7c7b\uff09": [[27, "agentscope.models.post_model.PostAPIDALLEWrapper", false]], "postapiembeddingwrapper\uff08agentscope.models.post_model \u4e2d\u7684\u7c7b\uff09": [[27, "agentscope.models.post_model.PostAPIEmbeddingWrapper", false]], "postapimodelwrapperbase\uff08agentscope.models \u4e2d\u7684\u7c7b\uff09": [[20, "agentscope.models.PostAPIModelWrapperBase", false]], "postapimodelwrapperbase\uff08agentscope.models.post_model \u4e2d\u7684\u7c7b\uff09": [[27, "agentscope.models.post_model.PostAPIModelWrapperBase", false]], "print_llm_usage() \uff08agentscope.manager.monitormanager \u65b9\u6cd5\uff09": [[13, "agentscope.manager.MonitorManager.print_llm_usage", false]], "print_llm_usage()\uff08\u5728 agentscope \u6a21\u5757\u4e2d\uff09": [[0, "agentscope.print_llm_usage", false]], "processed_func\uff08agentscope.service.service_toolkit.servicefunction \u5c5e\u6027\uff09": [[73, "agentscope.service.service_toolkit.ServiceFunction.processed_func", false]], "pythonservicenode\uff08agentscope.web.workstation.workflow_node \u4e2d\u7684\u7c7b\uff09": [[103, "agentscope.web.workstation.workflow_node.PythonServiceNode", false]], "query_mongodb()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.query_mongodb", false]], "query_mongodb()\uff08\u5728 agentscope.service.sql_query.mongodb \u6a21\u5757\u4e2d\uff09": [[75, "agentscope.service.sql_query.mongodb.query_mongodb", false]], "query_mysql()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.query_mysql", false]], "query_mysql()\uff08\u5728 agentscope.service.sql_query.mysql \u6a21\u5757\u4e2d\uff09": [[76, "agentscope.service.sql_query.mysql.query_mysql", false]], "query_sqlite()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.query_sqlite", false]], "query_sqlite()\uff08\u5728 agentscope.service.sql_query.sqlite \u6a21\u5757\u4e2d\uff09": [[77, "agentscope.service.sql_query.sqlite.query_sqlite", false]], "quotaexceedederror": [[11, "agentscope.exception.QuotaExceededError", false]], "raw_response\uff08agentscope.exception.responseparsingerror \u5c5e\u6027\uff09": [[11, "agentscope.exception.ResponseParsingError.raw_response", false]], "reactagentnode\uff08agentscope.web.workstation.workflow_node \u4e2d\u7684\u7c7b\uff09": [[103, "agentscope.web.workstation.workflow_node.ReActAgentNode", false]], "reactagent\uff08agentscope.agents \u4e2d\u7684\u7c7b\uff09": [[1, "agentscope.agents.ReActAgent", false]], "reactagent\uff08agentscope.agents.react_agent \u4e2d\u7684\u7c7b\uff09": [[7, "agentscope.agents.react_agent.ReActAgent", false]], "read_json_file()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.read_json_file", false]], "read_json_file()\uff08\u5728 agentscope.service.file.json \u6a21\u5757\u4e2d\uff09": [[63, "agentscope.service.file.json.read_json_file", false]], "read_text_file()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.read_text_file", false]], "read_text_file()\uff08\u5728 agentscope.service.file.text \u6a21\u5757\u4e2d\uff09": [[64, "agentscope.service.file.text.read_text_file", false]], "readtextservicenode\uff08agentscope.web.workstation.workflow_node \u4e2d\u7684\u7c7b\uff09": [[103, "agentscope.web.workstation.workflow_node.ReadTextServiceNode", false]], "refresh_index() \uff08agentscope.rag.llama_index_knowledge.llamaindexknowledge \u65b9\u6cd5\uff09": [[45, "agentscope.rag.llama_index_knowledge.LlamaIndexKnowledge.refresh_index", false]], "regextaggedcontentparser\uff08agentscope.parsers \u4e2d\u7684\u7c7b\uff09": [[32, "agentscope.parsers.RegexTaggedContentParser", false]], "regextaggedcontentparser\uff08agentscope.parsers.regex_tagged_content_parser \u4e2d\u7684\u7c7b\uff09": [[36, "agentscope.parsers.regex_tagged_content_parser.RegexTaggedContentParser", false]], "register_agent_class()\uff08agentscope.agents.agent.agentbase \u7c7b\u65b9\u6cd5\uff09": [[2, "agentscope.agents.agent.AgentBase.register_agent_class", false]], "register_agent_class()\uff08agentscope.agents.agentbase \u7c7b\u65b9\u6cd5\uff09": [[1, "agentscope.agents.AgentBase.register_agent_class", false]], "remove_duplicates_from_end()\uff08\u5728 agentscope.web.workstation.workflow_dag \u6a21\u5757\u4e2d\uff09": [[102, "agentscope.web.workstation.workflow_dag.remove_duplicates_from_end", false]], "remove_interactive_marks() \uff08agentscope.service.browser.web_browser.webbrowser \u65b9\u6cd5\uff09": [[56, "agentscope.service.browser.web_browser.WebBrowser.remove_interactive_marks", false]], "remove_interactive_marks() \uff08agentscope.service.webbrowser \u65b9\u6cd5\uff09": [[54, "agentscope.service.WebBrowser.remove_interactive_marks", false]], "reply() \uff08agentscope.agents.agent.agentbase \u65b9\u6cd5\uff09": [[2, "agentscope.agents.agent.AgentBase.reply", false]], "reply() \uff08agentscope.agents.agentbase \u65b9\u6cd5\uff09": [[1, "agentscope.agents.AgentBase.reply", false]], "reply() \uff08agentscope.agents.dialog_agent.dialogagent \u65b9\u6cd5\uff09": [[3, "agentscope.agents.dialog_agent.DialogAgent.reply", false]], "reply() \uff08agentscope.agents.dialogagent \u65b9\u6cd5\uff09": [[1, "agentscope.agents.DialogAgent.reply", false]], "reply() \uff08agentscope.agents.dict_dialog_agent.dictdialogagent \u65b9\u6cd5\uff09": [[4, "agentscope.agents.dict_dialog_agent.DictDialogAgent.reply", false]], "reply() \uff08agentscope.agents.dictdialogagent \u65b9\u6cd5\uff09": [[1, "agentscope.agents.DictDialogAgent.reply", false]], "reply() \uff08agentscope.agents.llamaindexagent \u65b9\u6cd5\uff09": [[1, "agentscope.agents.LlamaIndexAgent.reply", false]], "reply() \uff08agentscope.agents.rag_agent.llamaindexagent \u65b9\u6cd5\uff09": [[6, "agentscope.agents.rag_agent.LlamaIndexAgent.reply", false]], "reply() \uff08agentscope.agents.react_agent.reactagent \u65b9\u6cd5\uff09": [[7, "agentscope.agents.react_agent.ReActAgent.reply", false]], "reply() \uff08agentscope.agents.reactagent \u65b9\u6cd5\uff09": [[1, "agentscope.agents.ReActAgent.reply", false]], "reply() \uff08agentscope.agents.rpc_agent.rpcagent \u65b9\u6cd5\uff09": [[8, "agentscope.agents.rpc_agent.RpcAgent.reply", false]], "reply() \uff08agentscope.agents.user_agent.useragent \u65b9\u6cd5\uff09": [[9, "agentscope.agents.user_agent.UserAgent.reply", false]], "reply() \uff08agentscope.agents.useragent \u65b9\u6cd5\uff09": [[1, "agentscope.agents.UserAgent.reply", false]], "require_args\uff08agentscope.service.service_toolkit.servicefunction \u5c5e\u6027\uff09": [[73, "agentscope.service.service_toolkit.ServiceFunction.require_args", false]], "required_keys\uff08agentscope.parsers.json_object_parser.markdownjsondictparser \u5c5e\u6027\uff09": [[34, "agentscope.parsers.json_object_parser.MarkdownJsonDictParser.required_keys", false]], "required_keys\uff08agentscope.parsers.markdownjsondictparser \u5c5e\u6027\uff09": [[32, "agentscope.parsers.MarkdownJsonDictParser.required_keys", false]], "requiredfieldnotfounderror": [[11, "agentscope.exception.RequiredFieldNotFoundError", false]], "reset_audience() \uff08agentscope.agents.agent.agentbase \u65b9\u6cd5\uff09": [[2, "agentscope.agents.agent.AgentBase.reset_audience", false]], "reset_audience() \uff08agentscope.agents.agentbase \u65b9\u6cd5\uff09": [[1, "agentscope.agents.AgentBase.reset_audience", false]], "reset_glb_var()\uff08\u5728 agentscope.web.gradio.studio \u6a21\u5757\u4e2d\uff09": [[98, "agentscope.web.gradio.studio.reset_glb_var", false]], "reset_notebook() \uff08agentscope.service.execute_code.exec_notebook.notebookexecutor \u65b9\u6cd5\uff09": [[58, "agentscope.service.execute_code.exec_notebook.NoteBookExecutor.reset_notebook", false]], "reset_notebook() \uff08agentscope.service.notebookexecutor \u65b9\u6cd5\uff09": [[54, "agentscope.service.NoteBookExecutor.reset_notebook", false]], "resetexception": [[99, "agentscope.web.gradio.utils.ResetException", false]], "responseformat\uff08agentscope.constants \u4e2d\u7684\u7c7b\uff09": [[10, "agentscope.constants.ResponseFormat", false]], "responseparsingerror": [[11, "agentscope.exception.ResponseParsingError", false]], "responsestub\uff08agentscope.rpc \u4e2d\u7684\u7c7b\uff09": [[46, "agentscope.rpc.ResponseStub", false]], "responsestub\uff08agentscope.rpc.rpc_agent_client \u4e2d\u7684\u7c7b\uff09": [[47, "agentscope.rpc.rpc_agent_client.ResponseStub", false]], "retrieve() \uff08agentscope.rag.knowledge \u65b9\u6cd5\uff09": [[42, "agentscope.rag.Knowledge.retrieve", false]], "retrieve() \uff08agentscope.rag.knowledge.knowledge \u65b9\u6cd5\uff09": [[43, "agentscope.rag.knowledge.Knowledge.retrieve", false]], "retrieve() \uff08agentscope.rag.llama_index_knowledge.llamaindexknowledge \u65b9\u6cd5\uff09": [[45, "agentscope.rag.llama_index_knowledge.LlamaIndexKnowledge.retrieve", false]], "retrieve_by_embedding() \uff08agentscope.memory.temporary_memory.temporarymemory \u65b9\u6cd5\uff09": [[16, "agentscope.memory.temporary_memory.TemporaryMemory.retrieve_by_embedding", false]], "retrieve_by_embedding() \uff08agentscope.memory.temporarymemory \u65b9\u6cd5\uff09": [[14, "agentscope.memory.TemporaryMemory.retrieve_by_embedding", false]], "retrieve_from_list()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.retrieve_from_list", false]], "retrieve_from_list()\uff08\u5728 agentscope.service.retrieval.retrieval_from_list \u6a21\u5757\u4e2d\uff09": [[69, "agentscope.service.retrieval.retrieval_from_list.retrieve_from_list", false]], "rm_audience() \uff08agentscope.agents.agent.agentbase \u65b9\u6cd5\uff09": [[2, "agentscope.agents.agent.AgentBase.rm_audience", false]], "rm_audience() \uff08agentscope.agents.agentbase \u65b9\u6cd5\uff09": [[1, "agentscope.agents.AgentBase.rm_audience", false]], "rm_database() \uff08agentscope.manager.monitormanager \u65b9\u6cd5\uff09": [[13, "agentscope.manager.MonitorManager.rm_database", false]], "role\uff08agentscope.message.msg \u5c5e\u6027\uff09": [[17, "agentscope.message.Msg.role", false]], "role\uff08agentscope.message.msg.msg \u5c5e\u6027\uff09": [[18, "agentscope.message.msg.Msg.role", false]], "role\uff08agentscope.message.placeholder.placeholdermessage \u5c5e\u6027\uff09": [[19, "agentscope.message.placeholder.PlaceholderMessage.role", false]], "role\uff08agentscope.message.placeholdermessage \u5c5e\u6027\uff09": [[17, "agentscope.message.PlaceholderMessage.role", false]], "rpcagentclient\uff08agentscope.rpc \u4e2d\u7684\u7c7b\uff09": [[46, "agentscope.rpc.RpcAgentClient", false]], "rpcagentclient\uff08agentscope.rpc.rpc_agent_client \u4e2d\u7684\u7c7b\uff09": [[47, "agentscope.rpc.rpc_agent_client.RpcAgentClient", false]], "rpcagentserverlauncher\uff08agentscope.server \u4e2d\u7684\u7c7b\uff09": [[51, "agentscope.server.RpcAgentServerLauncher", false]], "rpcagentserverlauncher\uff08agentscope.server.launcher \u4e2d\u7684\u7c7b\uff09": [[52, "agentscope.server.launcher.RpcAgentServerLauncher", false]], "rpcagentservicer\uff08agentscope.rpc \u4e2d\u7684\u7c7b\uff09": [[46, "agentscope.rpc.RpcAgentServicer", false]], "rpcagentservicer\uff08agentscope.rpc.rpc_agent_pb2_grpc \u4e2d\u7684\u7c7b\uff09": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgentServicer", false]], "rpcagentstub\uff08agentscope.rpc \u4e2d\u7684\u7c7b\uff09": [[46, "agentscope.rpc.RpcAgentStub", false]], "rpcagentstub\uff08agentscope.rpc.rpc_agent_pb2_grpc \u4e2d\u7684\u7c7b\uff09": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgentStub", false]], "rpcagent\uff08agentscope.agents.rpc_agent \u4e2d\u7684\u7c7b\uff09": [[8, "agentscope.agents.rpc_agent.RpcAgent", false]], "rpcagent\uff08agentscope.rpc.rpc_agent_pb2_grpc \u4e2d\u7684\u7c7b\uff09": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgent", false]], "rpcmsg\uff08agentscope.rpc \u4e2d\u7684\u7c7b\uff09": [[46, "agentscope.rpc.RpcMsg", false]], "run() \uff08agentscope.web.workstation.workflow_dag.asdigraph \u65b9\u6cd5\uff09": [[102, "agentscope.web.workstation.workflow_dag.ASDiGraph.run", false]], "run_app()\uff08\u5728 agentscope.web.gradio.studio \u6a21\u5757\u4e2d\uff09": [[98, "agentscope.web.gradio.studio.run_app", false]], "run_code_on_notebook() \uff08agentscope.service.execute_code.exec_notebook.notebookexecutor \u65b9\u6cd5\uff09": [[58, "agentscope.service.execute_code.exec_notebook.NoteBookExecutor.run_code_on_notebook", false]], "run_code_on_notebook() \uff08agentscope.service.notebookexecutor \u65b9\u6cd5\uff09": [[54, "agentscope.service.NoteBookExecutor.run_code_on_notebook", false]], "sanitize_node_data()\uff08\u5728 agentscope.web.workstation.workflow_dag \u6a21\u5757\u4e2d\uff09": [[102, "agentscope.web.workstation.workflow_dag.sanitize_node_data", false]], "save_api_invocation() \uff08agentscope.manager.filemanager \u65b9\u6cd5\uff09": [[13, "agentscope.manager.FileManager.save_api_invocation", false]], "save_file() \uff08agentscope.manager.filemanager \u65b9\u6cd5\uff09": [[13, "agentscope.manager.FileManager.save_file", false]], "save_image() \uff08agentscope.manager.filemanager \u65b9\u6cd5\uff09": [[13, "agentscope.manager.FileManager.save_image", false]], "save_python_code() \uff08agentscope.manager.filemanager \u65b9\u6cd5\uff09": [[13, "agentscope.manager.FileManager.save_python_code", false]], "save_runtime_information() \uff08agentscope.manager.filemanager \u65b9\u6cd5\uff09": [[13, "agentscope.manager.FileManager.save_runtime_information", false]], "send_audio()\uff08\u5728 agentscope.web.gradio.studio \u6a21\u5757\u4e2d\uff09": [[98, "agentscope.web.gradio.studio.send_audio", false]], "send_image()\uff08\u5728 agentscope.web.gradio.studio \u6a21\u5757\u4e2d\uff09": [[98, "agentscope.web.gradio.studio.send_image", false]], "send_message()\uff08\u5728 agentscope.web.gradio.studio \u6a21\u5757\u4e2d\uff09": [[98, "agentscope.web.gradio.studio.send_message", false]], "send_msg()\uff08\u5728 agentscope.web.gradio.utils \u6a21\u5757\u4e2d\uff09": [[99, "agentscope.web.gradio.utils.send_msg", false]], "send_player_input()\uff08\u5728 agentscope.web.gradio.utils \u6a21\u5757\u4e2d\uff09": [[99, "agentscope.web.gradio.utils.send_player_input", false]], "send_reset_msg()\uff08\u5728 agentscope.web.gradio.utils \u6a21\u5757\u4e2d\uff09": [[99, "agentscope.web.gradio.utils.send_reset_msg", false]], "sequentialpipeline()\uff08\u5728 agentscope.pipelines \u6a21\u5757\u4e2d\uff09": [[38, "agentscope.pipelines.sequentialpipeline", false]], "sequentialpipeline()\uff08\u5728 agentscope.pipelines.functional \u6a21\u5757\u4e2d\uff09": [[39, "agentscope.pipelines.functional.sequentialpipeline", false]], "sequentialpipelinenode\uff08agentscope.web.workstation.workflow_node \u4e2d\u7684\u7c7b\uff09": [[103, "agentscope.web.workstation.workflow_node.SequentialPipelineNode", false]], "sequentialpipeline\uff08agentscope.pipelines \u4e2d\u7684\u7c7b\uff09": [[38, "agentscope.pipelines.SequentialPipeline", false]], "sequentialpipeline\uff08agentscope.pipelines.pipeline \u4e2d\u7684\u7c7b\uff09": [[40, "agentscope.pipelines.pipeline.SequentialPipeline", false]], "serialize()\uff08\u5728 agentscope.serialize \u6a21\u5757\u4e2d\uff09": [[50, "agentscope.serialize.serialize", false]], "service_funcs\uff08agentscope.service.service_toolkit.servicetoolkit \u5c5e\u6027\uff09": [[73, "agentscope.service.service_toolkit.ServiceToolkit.service_funcs", false]], "service_funcs\uff08agentscope.service.servicetoolkit \u5c5e\u6027\uff09": [[54, "agentscope.service.ServiceToolkit.service_funcs", false]], "serviceexecstatus\uff08agentscope.service \u4e2d\u7684\u7c7b\uff09": [[54, "agentscope.service.ServiceExecStatus", false]], "serviceexecstatus\uff08agentscope.service.service_status \u4e2d\u7684\u7c7b\uff09": [[72, "agentscope.service.service_status.ServiceExecStatus", false]], "servicefactory\uff08agentscope.service \u4e2d\u7684\u7c7b\uff09": [[54, "agentscope.service.ServiceFactory", false]], "servicefactory\uff08agentscope.service.service_toolkit \u4e2d\u7684\u7c7b\uff09": [[73, "agentscope.service.service_toolkit.ServiceFactory", false]], "servicefunction\uff08agentscope.service.service_toolkit \u4e2d\u7684\u7c7b\uff09": [[73, "agentscope.service.service_toolkit.ServiceFunction", false]], "serviceresponse\uff08agentscope.service \u4e2d\u7684\u7c7b\uff09": [[54, "agentscope.service.ServiceResponse", false]], "serviceresponse\uff08agentscope.service.service_response \u4e2d\u7684\u7c7b\uff09": [[71, "agentscope.service.service_response.ServiceResponse", false]], "servicetoolkit\uff08agentscope.service \u4e2d\u7684\u7c7b\uff09": [[54, "agentscope.service.ServiceToolkit", false]], "servicetoolkit\uff08agentscope.service.service_toolkit \u4e2d\u7684\u7c7b\uff09": [[73, "agentscope.service.service_toolkit.ServiceToolkit", false]], "service\uff08agentscope.web.workstation.workflow_node.workflownodetype \u5c5e\u6027\uff09": [[103, "agentscope.web.workstation.workflow_node.WorkflowNodeType.SERVICE", false]], "set_interactive_marks() \uff08agentscope.service.browser.web_browser.webbrowser \u65b9\u6cd5\uff09": [[56, "agentscope.service.browser.web_browser.WebBrowser.set_interactive_marks", false]], "set_interactive_marks() \uff08agentscope.service.webbrowser \u65b9\u6cd5\uff09": [[54, "agentscope.service.WebBrowser.set_interactive_marks", false]], "set_model_configs() \uff08agentscope.rpc.rpc_agent_client.rpcagentclient \u65b9\u6cd5\uff09": [[47, "agentscope.rpc.rpc_agent_client.RpcAgentClient.set_model_configs", false]], "set_model_configs() \uff08agentscope.rpc.rpc_agent_pb2_grpc.rpcagentservicer \u65b9\u6cd5\uff09": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgentServicer.set_model_configs", false]], "set_model_configs() \uff08agentscope.rpc.rpcagentclient \u65b9\u6cd5\uff09": [[46, "agentscope.rpc.RpcAgentClient.set_model_configs", false]], "set_model_configs() \uff08agentscope.rpc.rpcagentservicer \u65b9\u6cd5\uff09": [[46, "agentscope.rpc.RpcAgentServicer.set_model_configs", false]], "set_model_configs() \uff08agentscope.server.agentserverservicer \u65b9\u6cd5\uff09": [[51, "agentscope.server.AgentServerServicer.set_model_configs", false]], "set_model_configs() \uff08agentscope.server.servicer.agentserverservicer \u65b9\u6cd5\uff09": [[53, "agentscope.server.servicer.AgentServerServicer.set_model_configs", false]], "set_model_configs()\uff08agentscope.rpc.rpc_agent_pb2_grpc.rpcagent \u9759\u6001\u65b9\u6cd5\uff09": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgent.set_model_configs", false]], "set_parser() \uff08agentscope.agents.dict_dialog_agent.dictdialogagent \u65b9\u6cd5\uff09": [[4, "agentscope.agents.dict_dialog_agent.DictDialogAgent.set_parser", false]], "set_parser() \uff08agentscope.agents.dictdialogagent \u65b9\u6cd5\uff09": [[1, "agentscope.agents.DictDialogAgent.set_parser", false]], "set_response() \uff08agentscope.rpc.responsestub \u65b9\u6cd5\uff09": [[46, "agentscope.rpc.ResponseStub.set_response", false]], "set_response() \uff08agentscope.rpc.rpc_agent_client.responsestub \u65b9\u6cd5\uff09": [[47, "agentscope.rpc.rpc_agent_client.ResponseStub.set_response", false]], "setup_logger()\uff08\u5728 agentscope.logging \u6a21\u5757\u4e2d\uff09": [[12, "agentscope.logging.setup_logger", false]], "show_image_tokens() \uff08agentscope.manager.monitormanager \u65b9\u6cd5\uff09": [[13, "agentscope.manager.MonitorManager.show_image_tokens", false]], "show_text_and_embedding_tokens() \uff08agentscope.manager.monitormanager \u65b9\u6cd5\uff09": [[13, "agentscope.manager.MonitorManager.show_text_and_embedding_tokens", false]], "shrinkpolicy\uff08agentscope.constants \u4e2d\u7684\u7c7b\uff09": [[10, "agentscope.constants.ShrinkPolicy", false]], "shutdown() \uff08agentscope.server.launcher.rpcagentserverlauncher \u65b9\u6cd5\uff09": [[52, "agentscope.server.launcher.RpcAgentServerLauncher.shutdown", false]], "shutdown() \uff08agentscope.server.rpcagentserverlauncher \u65b9\u6cd5\uff09": [[51, "agentscope.server.RpcAgentServerLauncher.shutdown", false]], "size() \uff08agentscope.memory.memory.memorybase \u65b9\u6cd5\uff09": [[15, "agentscope.memory.memory.MemoryBase.size", false]], "size() \uff08agentscope.memory.memorybase \u65b9\u6cd5\uff09": [[14, "agentscope.memory.MemoryBase.size", false]], "size() \uff08agentscope.memory.temporary_memory.temporarymemory \u65b9\u6cd5\uff09": [[16, "agentscope.memory.temporary_memory.TemporaryMemory.size", false]], "size() \uff08agentscope.memory.temporarymemory \u65b9\u6cd5\uff09": [[14, "agentscope.memory.TemporaryMemory.size", false]], "speak() \uff08agentscope.agents.agent.agentbase \u65b9\u6cd5\uff09": [[2, "agentscope.agents.agent.AgentBase.speak", false]], "speak() \uff08agentscope.agents.agentbase \u65b9\u6cd5\uff09": [[1, "agentscope.agents.AgentBase.speak", false]], "speak() \uff08agentscope.agents.user_agent.useragent \u65b9\u6cd5\uff09": [[9, "agentscope.agents.user_agent.UserAgent.speak", false]], "speak() \uff08agentscope.agents.useragent \u65b9\u6cd5\uff09": [[1, "agentscope.agents.UserAgent.speak", false]], "start_workflow()\uff08\u5728 agentscope.web.workstation.workflow \u6a21\u5757\u4e2d\uff09": [[101, "agentscope.web.workstation.workflow.start_workflow", false]], "state_dict() \uff08agentscope.manager.asmanager \u65b9\u6cd5\uff09": [[13, "agentscope.manager.ASManager.state_dict", false]], "state_dict() \uff08agentscope.manager.filemanager \u65b9\u6cd5\uff09": [[13, "agentscope.manager.FileManager.state_dict", false]], "state_dict() \uff08agentscope.manager.modelmanager \u65b9\u6cd5\uff09": [[13, "agentscope.manager.ModelManager.state_dict", false]], "state_dict() \uff08agentscope.manager.monitormanager \u65b9\u6cd5\uff09": [[13, "agentscope.manager.MonitorManager.state_dict", false]], "state_dict()\uff08\u5728 agentscope \u6a21\u5757\u4e2d\uff09": [[0, "agentscope.state_dict", false]], "static_format()\uff08agentscope.models.openai_model.openaichatwrapper \u9759\u6001\u65b9\u6cd5\uff09": [[26, "agentscope.models.openai_model.OpenAIChatWrapper.static_format", false]], "static_format()\uff08agentscope.models.openaichatwrapper \u9759\u6001\u65b9\u6cd5\uff09": [[20, "agentscope.models.OpenAIChatWrapper.static_format", false]], "stop() \uff08agentscope.agents.rpc_agent.rpcagent \u65b9\u6cd5\uff09": [[8, "agentscope.agents.rpc_agent.RpcAgent.stop", false]], "stop() \uff08agentscope.rpc.rpc_agent_client.rpcagentclient \u65b9\u6cd5\uff09": [[47, "agentscope.rpc.rpc_agent_client.RpcAgentClient.stop", false]], "stop() \uff08agentscope.rpc.rpc_agent_pb2_grpc.rpcagentservicer \u65b9\u6cd5\uff09": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgentServicer.stop", false]], "stop() \uff08agentscope.rpc.rpcagentclient \u65b9\u6cd5\uff09": [[46, "agentscope.rpc.RpcAgentClient.stop", false]], "stop() \uff08agentscope.rpc.rpcagentservicer \u65b9\u6cd5\uff09": [[46, "agentscope.rpc.RpcAgentServicer.stop", false]], "stop() \uff08agentscope.server.agentserverservicer \u65b9\u6cd5\uff09": [[51, "agentscope.server.AgentServerServicer.stop", false]], "stop() \uff08agentscope.server.servicer.agentserverservicer \u65b9\u6cd5\uff09": [[53, "agentscope.server.servicer.AgentServerServicer.stop", false]], "stop()\uff08agentscope.rpc.rpc_agent_pb2_grpc.rpcagent \u9759\u6001\u65b9\u6cd5\uff09": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgent.stop", false]], "stream\uff08agentscope.models.modelresponse \u5c5e\u6027\uff09": [[20, "agentscope.models.ModelResponse.stream", false]], "stream\uff08agentscope.models.response.modelresponse \u5c5e\u6027\uff09": [[28, "agentscope.models.response.ModelResponse.stream", false]], "studioerror": [[11, "agentscope.exception.StudioError", false]], "studioregistererror": [[11, "agentscope.exception.StudioRegisterError", false]], "substrings_in_vision_models_names\uff08agentscope.models.openai_model.openaichatwrapper \u5c5e\u6027\uff09": [[26, "agentscope.models.openai_model.OpenAIChatWrapper.substrings_in_vision_models_names", false]], "substrings_in_vision_models_names\uff08agentscope.models.openaichatwrapper \u5c5e\u6027\uff09": [[20, "agentscope.models.OpenAIChatWrapper.substrings_in_vision_models_names", false]], "success\uff08agentscope.service.service_status.serviceexecstatus \u5c5e\u6027\uff09": [[72, "agentscope.service.service_status.ServiceExecStatus.SUCCESS", false]], "success\uff08agentscope.service.serviceexecstatus \u5c5e\u6027\uff09": [[54, "agentscope.service.ServiceExecStatus.SUCCESS", false]], "summarization()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.summarization", false]], "summarization()\uff08\u5728 agentscope.service.text_processing.summarization \u6a21\u5757\u4e2d\uff09": [[79, "agentscope.service.text_processing.summarization.summarization", false]], "summarize\uff08agentscope.constants.shrinkpolicy \u5c5e\u6027\uff09": [[10, "agentscope.constants.ShrinkPolicy.SUMMARIZE", false]], "switchpipeline()\uff08\u5728 agentscope.pipelines \u6a21\u5757\u4e2d\uff09": [[38, "agentscope.pipelines.switchpipeline", false]], "switchpipeline()\uff08\u5728 agentscope.pipelines.functional \u6a21\u5757\u4e2d\uff09": [[39, "agentscope.pipelines.functional.switchpipeline", false]], "switchpipelinenode\uff08agentscope.web.workstation.workflow_node \u4e2d\u7684\u7c7b\uff09": [[103, "agentscope.web.workstation.workflow_node.SwitchPipelineNode", false]], "switchpipeline\uff08agentscope.pipelines \u4e2d\u7684\u7c7b\uff09": [[38, "agentscope.pipelines.SwitchPipeline", false]], "switchpipeline\uff08agentscope.pipelines.pipeline \u4e2d\u7684\u7c7b\uff09": [[40, "agentscope.pipelines.pipeline.SwitchPipeline", false]], "sys_python_guard()\uff08\u5728 agentscope.service.execute_code.exec_python \u6a21\u5757\u4e2d\uff09": [[59, "agentscope.service.execute_code.exec_python.sys_python_guard", false]], "systempromptcomparer\uff08agentscope.prompt \u4e2d\u7684\u7c7b\uff09": [[41, "agentscope.prompt.SystemPromptComparer", false]], "systempromptgeneratorbase\uff08agentscope.prompt \u4e2d\u7684\u7c7b\uff09": [[41, "agentscope.prompt.SystemPromptGeneratorBase", false]], "systempromptoptimizer\uff08agentscope.prompt \u4e2d\u7684\u7c7b\uff09": [[41, "agentscope.prompt.SystemPromptOptimizer", false]], "tag_begin\uff08agentscope.parsers.code_block_parser.markdowncodeblockparser \u5c5e\u6027\uff09": [[33, "agentscope.parsers.code_block_parser.MarkdownCodeBlockParser.tag_begin", false]], "tag_begin\uff08agentscope.parsers.json_object_parser.markdownjsondictparser \u5c5e\u6027\uff09": [[34, "agentscope.parsers.json_object_parser.MarkdownJsonDictParser.tag_begin", false]], "tag_begin\uff08agentscope.parsers.json_object_parser.markdownjsonobjectparser \u5c5e\u6027\uff09": [[34, "agentscope.parsers.json_object_parser.MarkdownJsonObjectParser.tag_begin", false]], "tag_begin\uff08agentscope.parsers.markdowncodeblockparser \u5c5e\u6027\uff09": [[32, "agentscope.parsers.MarkdownCodeBlockParser.tag_begin", false]], "tag_begin\uff08agentscope.parsers.markdownjsondictparser \u5c5e\u6027\uff09": [[32, "agentscope.parsers.MarkdownJsonDictParser.tag_begin", false]], "tag_begin\uff08agentscope.parsers.markdownjsonobjectparser \u5c5e\u6027\uff09": [[32, "agentscope.parsers.MarkdownJsonObjectParser.tag_begin", false]], "tag_begin\uff08agentscope.parsers.tagged_content_parser.taggedcontent \u5c5e\u6027\uff09": [[37, "agentscope.parsers.tagged_content_parser.TaggedContent.tag_begin", false]], "tag_begin\uff08agentscope.parsers.taggedcontent \u5c5e\u6027\uff09": [[32, "agentscope.parsers.TaggedContent.tag_begin", false]], "tag_end\uff08agentscope.parsers.code_block_parser.markdowncodeblockparser \u5c5e\u6027\uff09": [[33, "agentscope.parsers.code_block_parser.MarkdownCodeBlockParser.tag_end", false]], "tag_end\uff08agentscope.parsers.json_object_parser.markdownjsondictparser \u5c5e\u6027\uff09": [[34, "agentscope.parsers.json_object_parser.MarkdownJsonDictParser.tag_end", false]], "tag_end\uff08agentscope.parsers.json_object_parser.markdownjsonobjectparser \u5c5e\u6027\uff09": [[34, "agentscope.parsers.json_object_parser.MarkdownJsonObjectParser.tag_end", false]], "tag_end\uff08agentscope.parsers.markdowncodeblockparser \u5c5e\u6027\uff09": [[32, "agentscope.parsers.MarkdownCodeBlockParser.tag_end", false]], "tag_end\uff08agentscope.parsers.markdownjsondictparser \u5c5e\u6027\uff09": [[32, "agentscope.parsers.MarkdownJsonDictParser.tag_end", false]], "tag_end\uff08agentscope.parsers.markdownjsonobjectparser \u5c5e\u6027\uff09": [[32, "agentscope.parsers.MarkdownJsonObjectParser.tag_end", false]], "tag_end\uff08agentscope.parsers.tagged_content_parser.taggedcontent \u5c5e\u6027\uff09": [[37, "agentscope.parsers.tagged_content_parser.TaggedContent.tag_end", false]], "tag_end\uff08agentscope.parsers.taggedcontent \u5c5e\u6027\uff09": [[32, "agentscope.parsers.TaggedContent.tag_end", false]], "tag_name\uff08agentscope.service.browser.web_browser.webelementinfo \u5c5e\u6027\uff09": [[56, "agentscope.service.browser.web_browser.WebElementInfo.tag_name", false]], "tag_name\uff08agentscope.service.webelementinfo \u5c5e\u6027\uff09": [[54, "agentscope.service.WebElementInfo.tag_name", false]], "taggedcontent\uff08agentscope.parsers \u4e2d\u7684\u7c7b\uff09": [[32, "agentscope.parsers.TaggedContent", false]], "taggedcontent\uff08agentscope.parsers.tagged_content_parser \u4e2d\u7684\u7c7b\uff09": [[37, "agentscope.parsers.tagged_content_parser.TaggedContent", false]], "tagnotfounderror": [[11, "agentscope.exception.TagNotFoundError", false]], "temporarymemory\uff08agentscope.memory \u4e2d\u7684\u7c7b\uff09": [[14, "agentscope.memory.TemporaryMemory", false]], "temporarymemory\uff08agentscope.memory.temporary_memory \u4e2d\u7684\u7c7b\uff09": [[16, "agentscope.memory.temporary_memory.TemporaryMemory", false]], "text\uff08agentscope.models.modelresponse \u5c5e\u6027\uff09": [[20, "agentscope.models.ModelResponse.text", false]], "text\uff08agentscope.models.response.modelresponse \u5c5e\u6027\uff09": [[28, "agentscope.models.response.ModelResponse.text", false]], "timer()\uff08\u5728 agentscope.utils.common \u6a21\u5757\u4e2d\uff09": [[93, "agentscope.utils.common.timer", false]], "timestamp\uff08agentscope.message.msg \u5c5e\u6027\uff09": [[17, "agentscope.message.Msg.timestamp", false]], "timestamp\uff08agentscope.message.msg.msg \u5c5e\u6027\uff09": [[18, "agentscope.message.msg.Msg.timestamp", false]], "timestamp\uff08agentscope.message.placeholder.placeholdermessage \u5c5e\u6027\uff09": [[19, "agentscope.message.placeholder.PlaceholderMessage.timestamp", false]], "timestamp\uff08agentscope.message.placeholdermessage \u5c5e\u6027\uff09": [[17, "agentscope.message.PlaceholderMessage.timestamp", false]], "to_content() \uff08agentscope.parsers.parser_base.dictfiltermixin \u65b9\u6cd5\uff09": [[35, "agentscope.parsers.parser_base.DictFilterMixin.to_content", false]], "to_dict() \uff08agentscope.message.msg \u65b9\u6cd5\uff09": [[17, "agentscope.message.Msg.to_dict", false]], "to_dict() \uff08agentscope.message.msg.msg \u65b9\u6cd5\uff09": [[18, "agentscope.message.msg.Msg.to_dict", false]], "to_dict() \uff08agentscope.message.placeholder.placeholdermessage \u65b9\u6cd5\uff09": [[19, "agentscope.message.placeholder.PlaceholderMessage.to_dict", false]], "to_dict() \uff08agentscope.message.placeholdermessage \u65b9\u6cd5\uff09": [[17, "agentscope.message.PlaceholderMessage.to_dict", false]], "to_dist() \uff08agentscope.agents.agent.agentbase \u65b9\u6cd5\uff09": [[2, "agentscope.agents.agent.AgentBase.to_dist", false]], "to_dist() \uff08agentscope.agents.agentbase \u65b9\u6cd5\uff09": [[1, "agentscope.agents.AgentBase.to_dist", false]], "to_memory() \uff08agentscope.parsers.parser_base.dictfiltermixin \u65b9\u6cd5\uff09": [[35, "agentscope.parsers.parser_base.DictFilterMixin.to_memory", false]], "to_metadata() \uff08agentscope.parsers.parser_base.dictfiltermixin \u65b9\u6cd5\uff09": [[35, "agentscope.parsers.parser_base.DictFilterMixin.to_metadata", false]], "to_openai_dict()\uff08\u5728 agentscope.utils.common \u6a21\u5757\u4e2d\uff09": [[93, "agentscope.utils.common.to_openai_dict", false]], "tools_calling_format\uff08agentscope.service.service_toolkit.servicetoolkit \u5c5e\u6027\uff09": [[73, "agentscope.service.service_toolkit.ServiceToolkit.tools_calling_format", false]], "tools_calling_format\uff08agentscope.service.servicetoolkit \u5c5e\u6027\uff09": [[54, "agentscope.service.ServiceToolkit.tools_calling_format", false]], "tools_instruction\uff08agentscope.service.service_toolkit.servicetoolkit \u5c5e\u6027\uff09": [[73, "agentscope.service.service_toolkit.ServiceToolkit.tools_instruction", false]], "tools_instruction\uff08agentscope.service.servicetoolkit \u5c5e\u6027\uff09": [[54, "agentscope.service.ServiceToolkit.tools_instruction", false]], "tripadvisor_search()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.tripadvisor_search", false]], "tripadvisor_search()\uff08\u5728 agentscope.service.web.tripadvisor \u6a21\u5757\u4e2d\uff09": [[85, "agentscope.service.web.tripadvisor.tripadvisor_search", false]], "tripadvisor_search_location_details()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.tripadvisor_search_location_details", false]], "tripadvisor_search_location_details()\uff08\u5728 agentscope.service.web.tripadvisor \u6a21\u5757\u4e2d\uff09": [[85, "agentscope.service.web.tripadvisor.tripadvisor_search_location_details", false]], "tripadvisor_search_location_photos()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.tripadvisor_search_location_photos", false]], "tripadvisor_search_location_photos()\uff08\u5728 agentscope.service.web.tripadvisor \u6a21\u5757\u4e2d\uff09": [[85, "agentscope.service.web.tripadvisor.tripadvisor_search_location_photos", false]], "truncate\uff08agentscope.constants.shrinkpolicy \u5c5e\u6027\uff09": [[10, "agentscope.constants.ShrinkPolicy.TRUNCATE", false]], "type\uff08agentscope.service.browser.web_browser.webelementinfo \u5c5e\u6027\uff09": [[56, "agentscope.service.browser.web_browser.WebElementInfo.type", false]], "type\uff08agentscope.service.webelementinfo \u5c5e\u6027\uff09": [[54, "agentscope.service.WebElementInfo.type", false]], "update_image_tokens() \uff08agentscope.manager.monitormanager \u65b9\u6cd5\uff09": [[13, "agentscope.manager.MonitorManager.update_image_tokens", false]], "update_placeholder() \uff08agentscope.rpc.rpc_agent_client.rpcagentclient \u65b9\u6cd5\uff09": [[47, "agentscope.rpc.rpc_agent_client.RpcAgentClient.update_placeholder", false]], "update_placeholder() \uff08agentscope.rpc.rpc_agent_pb2_grpc.rpcagentservicer \u65b9\u6cd5\uff09": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgentServicer.update_placeholder", false]], "update_placeholder() \uff08agentscope.rpc.rpcagentclient \u65b9\u6cd5\uff09": [[46, "agentscope.rpc.RpcAgentClient.update_placeholder", false]], "update_placeholder() \uff08agentscope.rpc.rpcagentservicer \u65b9\u6cd5\uff09": [[46, "agentscope.rpc.RpcAgentServicer.update_placeholder", false]], "update_placeholder() \uff08agentscope.server.agentserverservicer \u65b9\u6cd5\uff09": [[51, "agentscope.server.AgentServerServicer.update_placeholder", false]], "update_placeholder() \uff08agentscope.server.servicer.agentserverservicer \u65b9\u6cd5\uff09": [[53, "agentscope.server.servicer.AgentServerServicer.update_placeholder", false]], "update_placeholder()\uff08agentscope.rpc.rpc_agent_pb2_grpc.rpcagent \u9759\u6001\u65b9\u6cd5\uff09": [[49, "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgent.update_placeholder", false]], "update_text_and_embedding_tokens() \uff08agentscope.manager.monitormanager \u65b9\u6cd5\uff09": [[13, "agentscope.manager.MonitorManager.update_text_and_embedding_tokens", false]], "update_value() \uff08agentscope.message.placeholder.placeholdermessage \u65b9\u6cd5\uff09": [[19, "agentscope.message.placeholder.PlaceholderMessage.update_value", false]], "update_value() \uff08agentscope.message.placeholdermessage \u65b9\u6cd5\uff09": [[17, "agentscope.message.PlaceholderMessage.update_value", false]], "url\uff08agentscope.message.msg \u5c5e\u6027\uff09": [[17, "agentscope.message.Msg.url", false]], "url\uff08agentscope.message.msg.msg \u5c5e\u6027\uff09": [[18, "agentscope.message.msg.Msg.url", false]], "url\uff08agentscope.message.placeholder.placeholdermessage \u5c5e\u6027\uff09": [[19, "agentscope.message.placeholder.PlaceholderMessage.url", false]], "url\uff08agentscope.message.placeholdermessage \u5c5e\u6027\uff09": [[17, "agentscope.message.PlaceholderMessage.url", false]], "url\uff08agentscope.service.browser.web_browser.webbrowser \u5c5e\u6027\uff09": [[56, "agentscope.service.browser.web_browser.WebBrowser.url", false]], "url\uff08agentscope.service.webbrowser \u5c5e\u6027\uff09": [[54, "agentscope.service.WebBrowser.url", false]], "user_input()\uff08\u5728 agentscope.web.gradio.utils \u6a21\u5757\u4e2d\uff09": [[99, "agentscope.web.gradio.utils.user_input", false]], "useragentnode\uff08agentscope.web.workstation.workflow_node \u4e2d\u7684\u7c7b\uff09": [[103, "agentscope.web.workstation.workflow_node.UserAgentNode", false]], "useragent\uff08agentscope.agents \u4e2d\u7684\u7c7b\uff09": [[1, "agentscope.agents.UserAgent", false]], "useragent\uff08agentscope.agents.user_agent \u4e2d\u7684\u7c7b\uff09": [[9, "agentscope.agents.user_agent.UserAgent", false]], "wait_until_terminate() \uff08agentscope.server.launcher.rpcagentserverlauncher \u65b9\u6cd5\uff09": [[52, "agentscope.server.launcher.RpcAgentServerLauncher.wait_until_terminate", false]], "wait_until_terminate() \uff08agentscope.server.rpcagentserverlauncher \u65b9\u6cd5\uff09": [[51, "agentscope.server.RpcAgentServerLauncher.wait_until_terminate", false]], "webbrowser\uff08agentscope.service \u4e2d\u7684\u7c7b\uff09": [[54, "agentscope.service.WebBrowser", false]], "webbrowser\uff08agentscope.service.browser.web_browser \u4e2d\u7684\u7c7b\uff09": [[56, "agentscope.service.browser.web_browser.WebBrowser", false]], "webelementinfo\uff08agentscope.service \u4e2d\u7684\u7c7b\uff09": [[54, "agentscope.service.WebElementInfo", false]], "webelementinfo\uff08agentscope.service.browser.web_browser \u4e2d\u7684\u7c7b\uff09": [[56, "agentscope.service.browser.web_browser.WebElementInfo", false]], "whilelooppipeline()\uff08\u5728 agentscope.pipelines \u6a21\u5757\u4e2d\uff09": [[38, "agentscope.pipelines.whilelooppipeline", false]], "whilelooppipeline()\uff08\u5728 agentscope.pipelines.functional \u6a21\u5757\u4e2d\uff09": [[39, "agentscope.pipelines.functional.whilelooppipeline", false]], "whilelooppipelinenode\uff08agentscope.web.workstation.workflow_node \u4e2d\u7684\u7c7b\uff09": [[103, "agentscope.web.workstation.workflow_node.WhileLoopPipelineNode", false]], "whilelooppipeline\uff08agentscope.pipelines \u4e2d\u7684\u7c7b\uff09": [[38, "agentscope.pipelines.WhileLoopPipeline", false]], "whilelooppipeline\uff08agentscope.pipelines.pipeline \u4e2d\u7684\u7c7b\uff09": [[40, "agentscope.pipelines.pipeline.WhileLoopPipeline", false]], "width\uff08agentscope.service.browser.web_browser.webelementinfo \u5c5e\u6027\uff09": [[56, "agentscope.service.browser.web_browser.WebElementInfo.width", false]], "width\uff08agentscope.service.webelementinfo \u5c5e\u6027\uff09": [[54, "agentscope.service.WebElementInfo.width", false]], "wikipedia_search()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.wikipedia_search", false]], "wikipedia_search()\uff08\u5728 agentscope.service.web.wikipedia \u6a21\u5757\u4e2d\uff09": [[87, "agentscope.service.web.wikipedia.wikipedia_search", false]], "wikipedia_search_categories()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.wikipedia_search_categories", false]], "wikipedia_search_categories()\uff08\u5728 agentscope.service.web.wikipedia \u6a21\u5757\u4e2d\uff09": [[87, "agentscope.service.web.wikipedia.wikipedia_search_categories", false]], "workflownodetype\uff08agentscope.web.workstation.workflow_node \u4e2d\u7684\u7c7b\uff09": [[103, "agentscope.web.workstation.workflow_node.WorkflowNodeType", false]], "workflownode\uff08agentscope.web.workstation.workflow_node \u4e2d\u7684\u7c7b\uff09": [[103, "agentscope.web.workstation.workflow_node.WorkflowNode", false]], "write_json_file()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.write_json_file", false]], "write_json_file()\uff08\u5728 agentscope.service.file.json \u6a21\u5757\u4e2d\uff09": [[63, "agentscope.service.file.json.write_json_file", false]], "write_text_file()\uff08\u5728 agentscope.service \u6a21\u5757\u4e2d\uff09": [[54, "agentscope.service.write_text_file", false]], "write_text_file()\uff08\u5728 agentscope.service.file.text \u6a21\u5757\u4e2d\uff09": [[64, "agentscope.service.file.text.write_text_file", false]], "writetextservicenode\uff08agentscope.web.workstation.workflow_node \u4e2d\u7684\u7c7b\uff09": [[103, "agentscope.web.workstation.workflow_node.WriteTextServiceNode", false]], "yichatwrapper\uff08agentscope.models \u4e2d\u7684\u7c7b\uff09": [[20, "agentscope.models.YiChatWrapper", false]], "yichatwrapper\uff08agentscope.models.yi_model \u4e2d\u7684\u7c7b\uff09": [[29, "agentscope.models.yi_model.YiChatWrapper", false]], "zhipuaichatwrapper\uff08agentscope.models \u4e2d\u7684\u7c7b\uff09": [[20, "agentscope.models.ZhipuAIChatWrapper", false]], "zhipuaichatwrapper\uff08agentscope.models.zhipu_model \u4e2d\u7684\u7c7b\uff09": [[30, "agentscope.models.zhipu_model.ZhipuAIChatWrapper", false]], "zhipuaiembeddingwrapper\uff08agentscope.models \u4e2d\u7684\u7c7b\uff09": [[20, "agentscope.models.ZhipuAIEmbeddingWrapper", false]], "zhipuaiembeddingwrapper\uff08agentscope.models.zhipu_model \u4e2d\u7684\u7c7b\uff09": [[30, "agentscope.models.zhipu_model.ZhipuAIEmbeddingWrapper", false]], "zhipuaiwrapperbase\uff08agentscope.models.zhipu_model \u4e2d\u7684\u7c7b\uff09": [[30, "agentscope.models.zhipu_model.ZhipuAIWrapperBase", false]]}, "objects": {"": [[0, 0, 0, "-", "agentscope"]], "agentscope": [[1, 0, 0, "-", "agents"], [10, 0, 0, "-", "constants"], [11, 0, 0, "-", "exception"], [0, 6, 1, "", "init"], [12, 0, 0, "-", "logging"], [13, 0, 0, "-", "manager"], [14, 0, 0, "-", "memory"], [17, 0, 0, "-", "message"], [20, 0, 0, "-", "models"], [31, 0, 0, "-", "msghub"], [32, 0, 0, "-", "parsers"], [38, 0, 0, "-", "pipelines"], [0, 6, 1, "", "print_llm_usage"], [41, 0, 0, "-", "prompt"], [42, 0, 0, "-", "rag"], [46, 0, 0, "-", "rpc"], [50, 0, 0, "-", "serialize"], [51, 0, 0, "-", "server"], [54, 0, 0, "-", "service"], [0, 6, 1, "", "state_dict"], [88, 0, 0, "-", "strategy"], [90, 0, 0, "-", "studio"], [92, 0, 0, "-", "utils"], [95, 0, 0, "-", "web"]], "agentscope.agents": [[1, 1, 1, "", "AgentBase"], [1, 1, 1, "", "DialogAgent"], [1, 1, 1, "", "DictDialogAgent"], [1, 1, 1, "", "DistConf"], [1, 1, 1, "", "LlamaIndexAgent"], [1, 1, 1, "", "Operator"], [1, 1, 1, "", "ReActAgent"], [1, 1, 1, "", "UserAgent"], [2, 0, 0, "-", "agent"], [3, 0, 0, "-", "dialog_agent"], [4, 0, 0, "-", "dict_dialog_agent"], [5, 0, 0, "-", "operator"], [6, 0, 0, "-", "rag_agent"], [7, 0, 0, "-", "react_agent"], [8, 0, 0, "-", "rpc_agent"], [9, 0, 0, "-", "user_agent"]], "agentscope.agents.AgentBase": [[1, 2, 1, "", "__init__"], [1, 3, 1, "", "agent_id"], [1, 2, 1, "", "clear_audience"], [1, 2, 1, "", "generate_agent_id"], [1, 2, 1, "", "get_agent_class"], [1, 2, 1, "", "observe"], [1, 2, 1, "", "register_agent_class"], [1, 2, 1, "", "reply"], [1, 2, 1, "", "reset_audience"], [1, 2, 1, "", "rm_audience"], [1, 2, 1, "", "speak"], [1, 2, 1, "", "to_dist"]], "agentscope.agents.DialogAgent": [[1, 2, 1, "", "__init__"], [1, 2, 1, "", "reply"]], "agentscope.agents.DictDialogAgent": [[1, 2, 1, "", "__init__"], [1, 2, 1, "", "reply"], [1, 2, 1, "", "set_parser"]], "agentscope.agents.DistConf": [[1, 2, 1, "", "__init__"]], "agentscope.agents.LlamaIndexAgent": [[1, 2, 1, "", "__init__"], [1, 2, 1, "", "reply"]], "agentscope.agents.ReActAgent": [[1, 2, 1, "", "__init__"], [1, 2, 1, "", "finish"], [1, 2, 1, "", "reply"]], "agentscope.agents.UserAgent": [[1, 2, 1, "", "__init__"], [1, 2, 1, "", "reply"], [1, 2, 1, "", "speak"]], "agentscope.agents.agent": [[2, 1, 1, "", "AgentBase"], [2, 1, 1, "", "DistConf"]], "agentscope.agents.agent.AgentBase": [[2, 2, 1, "", "__init__"], [2, 3, 1, "", "agent_id"], [2, 2, 1, "", "clear_audience"], [2, 2, 1, "", "generate_agent_id"], [2, 2, 1, "", "get_agent_class"], [2, 2, 1, "", "observe"], [2, 2, 1, "", "register_agent_class"], [2, 2, 1, "", "reply"], [2, 2, 1, "", "reset_audience"], [2, 2, 1, "", "rm_audience"], [2, 2, 1, "", "speak"], [2, 2, 1, "", "to_dist"]], "agentscope.agents.agent.DistConf": [[2, 2, 1, "", "__init__"]], "agentscope.agents.dialog_agent": [[3, 1, 1, "", "DialogAgent"]], "agentscope.agents.dialog_agent.DialogAgent": [[3, 2, 1, "", "__init__"], [3, 2, 1, "", "reply"]], "agentscope.agents.dict_dialog_agent": [[4, 1, 1, "", "DictDialogAgent"]], "agentscope.agents.dict_dialog_agent.DictDialogAgent": [[4, 2, 1, "", "__init__"], [4, 2, 1, "", "reply"], [4, 2, 1, "", "set_parser"]], "agentscope.agents.operator": [[5, 1, 1, "", "Operator"]], "agentscope.agents.rag_agent": [[6, 1, 1, "", "LlamaIndexAgent"]], "agentscope.agents.rag_agent.LlamaIndexAgent": [[6, 2, 1, "", "__init__"], [6, 2, 1, "", "reply"]], "agentscope.agents.react_agent": [[7, 1, 1, "", "ReActAgent"]], "agentscope.agents.react_agent.ReActAgent": [[7, 2, 1, "", "__init__"], [7, 2, 1, "", "finish"], [7, 2, 1, "", "reply"]], "agentscope.agents.rpc_agent": [[8, 1, 1, "", "RpcAgent"]], "agentscope.agents.rpc_agent.RpcAgent": [[8, 2, 1, "", "__init__"], [8, 2, 1, "", "clone_instances"], [8, 2, 1, "", "observe"], [8, 2, 1, "", "reply"], [8, 2, 1, "", "stop"]], "agentscope.agents.user_agent": [[9, 1, 1, "", "UserAgent"]], "agentscope.agents.user_agent.UserAgent": [[9, 2, 1, "", "__init__"], [9, 2, 1, "", "reply"], [9, 2, 1, "", "speak"]], "agentscope.constants": [[10, 1, 1, "", "ResponseFormat"], [10, 1, 1, "", "ShrinkPolicy"]], "agentscope.constants.ResponseFormat": [[10, 4, 1, "", "JSON"], [10, 4, 1, "", "NONE"]], "agentscope.constants.ShrinkPolicy": [[10, 4, 1, "", "SUMMARIZE"], [10, 4, 1, "", "TRUNCATE"]], "agentscope.exception": [[11, 5, 1, "", "AgentCallError"], [11, 5, 1, "", "AgentCreationError"], [11, 5, 1, "", "AgentServerError"], [11, 5, 1, "", "AgentServerNotAliveError"], [11, 5, 1, "", "ArgumentNotFoundError"], [11, 5, 1, "", "ArgumentTypeError"], [11, 5, 1, "", "FunctionCallError"], [11, 5, 1, "", "FunctionCallFormatError"], [11, 5, 1, "", "FunctionNotFoundError"], [11, 5, 1, "", "JsonDictValidationError"], [11, 5, 1, "", "JsonParsingError"], [11, 5, 1, "", "JsonTypeError"], [11, 5, 1, "", "QuotaExceededError"], [11, 5, 1, "", "RequiredFieldNotFoundError"], [11, 5, 1, "", "ResponseParsingError"], [11, 5, 1, "", "StudioError"], [11, 5, 1, "", "StudioRegisterError"], [11, 5, 1, "", "TagNotFoundError"]], "agentscope.exception.AgentServerError": [[11, 2, 1, "", "__init__"], [11, 4, 1, "", "host"], [11, 4, 1, "", "message"], [11, 4, 1, "", "port"]], "agentscope.exception.FunctionCallError": [[11, 2, 1, "", "__init__"]], "agentscope.exception.QuotaExceededError": [[11, 2, 1, "", "__init__"]], "agentscope.exception.ResponseParsingError": [[11, 2, 1, "", "__init__"], [11, 4, 1, "", "raw_response"]], "agentscope.exception.StudioError": [[11, 2, 1, "", "__init__"]], "agentscope.exception.TagNotFoundError": [[11, 2, 1, "", "__init__"], [11, 4, 1, "", "missing_begin_tag"], [11, 4, 1, "", "missing_end_tag"]], "agentscope.logging": [[12, 6, 1, "", "log_gradio"], [12, 6, 1, "", "log_msg"], [12, 6, 1, "", "log_stream_msg"], [12, 6, 1, "", "setup_logger"]], "agentscope.manager": [[13, 1, 1, "", "ASManager"], [13, 1, 1, "", "FileManager"], [13, 1, 1, "", "ModelManager"], [13, 1, 1, "", "MonitorManager"]], "agentscope.manager.ASManager": [[13, 2, 1, "", "__init__"], [13, 2, 1, "", "flush"], [13, 2, 1, "", "get_instance"], [13, 2, 1, "", "initialize"], [13, 2, 1, "", "load_dict"], [13, 2, 1, "", "state_dict"]], "agentscope.manager.FileManager": [[13, 2, 1, "", "__init__"], [13, 2, 1, "", "cache_text_embedding"], [13, 3, 1, "", "code_dir"], [13, 3, 1, "", "embedding_cache_dir"], [13, 2, 1, "", "fetch_cached_text_embedding"], [13, 3, 1, "", "file_dir"], [13, 2, 1, "", "flush"], [13, 2, 1, "", "get_instance"], [13, 2, 1, "", "initialize"], [13, 3, 1, "", "invoke_dir"], [13, 2, 1, "", "is_initialized"], [13, 2, 1, "", "load_dict"], [13, 2, 1, "", "save_api_invocation"], [13, 2, 1, "", "save_file"], [13, 2, 1, "", "save_image"], [13, 2, 1, "", "save_python_code"], [13, 2, 1, "", "save_runtime_information"], [13, 2, 1, "", "state_dict"]], "agentscope.manager.ModelManager": [[13, 2, 1, "", "__init__"], [13, 2, 1, "", "clear_model_configs"], [13, 2, 1, "", "flush"], [13, 2, 1, "", "get_config_by_name"], [13, 2, 1, "", "get_instance"], [13, 2, 1, "", "get_model_by_config_name"], [13, 2, 1, "", "initialize"], [13, 2, 1, "", "load_dict"], [13, 2, 1, "", "load_model_configs"], [13, 4, 1, "", "model_configs"], [13, 2, 1, "", "state_dict"]], "agentscope.manager.MonitorManager": [[13, 2, 1, "", "__init__"], [13, 2, 1, "", "flush"], [13, 2, 1, "", "get_instance"], [13, 2, 1, "", "initialize"], [13, 2, 1, "", "load_dict"], [13, 3, 1, "", "path_db"], [13, 2, 1, "", "print_llm_usage"], [13, 2, 1, "", "rm_database"], [13, 2, 1, "", "show_image_tokens"], [13, 2, 1, "", "show_text_and_embedding_tokens"], [13, 2, 1, "", "state_dict"], [13, 2, 1, "", "update_image_tokens"], [13, 2, 1, "", "update_text_and_embedding_tokens"]], "agentscope.memory": [[14, 1, 1, "", "MemoryBase"], [14, 1, 1, "", "TemporaryMemory"], [15, 0, 0, "-", "memory"], [16, 0, 0, "-", "temporary_memory"]], "agentscope.memory.MemoryBase": [[14, 2, 1, "", "add"], [14, 2, 1, "", "clear"], [14, 2, 1, "", "delete"], [14, 2, 1, "", "export"], [14, 2, 1, "", "get_memory"], [14, 2, 1, "", "load"], [14, 2, 1, "", "size"]], "agentscope.memory.TemporaryMemory": [[14, 2, 1, "", "__init__"], [14, 2, 1, "", "add"], [14, 2, 1, "", "clear"], [14, 2, 1, "", "delete"], [14, 2, 1, "", "export"], [14, 2, 1, "", "get_embeddings"], [14, 2, 1, "", "get_memory"], [14, 2, 1, "", "load"], [14, 2, 1, "", "retrieve_by_embedding"], [14, 2, 1, "", "size"]], "agentscope.memory.memory": [[15, 1, 1, "", "MemoryBase"]], "agentscope.memory.memory.MemoryBase": [[15, 2, 1, "", "add"], [15, 2, 1, "", "clear"], [15, 2, 1, "", "delete"], [15, 2, 1, "", "export"], [15, 2, 1, "", "get_memory"], [15, 2, 1, "", "load"], [15, 2, 1, "", "size"]], "agentscope.memory.temporary_memory": [[16, 1, 1, "", "TemporaryMemory"]], "agentscope.memory.temporary_memory.TemporaryMemory": [[16, 2, 1, "", "__init__"], [16, 2, 1, "", "add"], [16, 2, 1, "", "clear"], [16, 2, 1, "", "delete"], [16, 2, 1, "", "export"], [16, 2, 1, "", "get_embeddings"], [16, 2, 1, "", "get_memory"], [16, 2, 1, "", "load"], [16, 2, 1, "", "retrieve_by_embedding"], [16, 2, 1, "", "size"]], "agentscope.message": [[17, 1, 1, "", "Msg"], [17, 1, 1, "", "PlaceholderMessage"], [18, 0, 0, "-", "msg"], [19, 0, 0, "-", "placeholder"]], "agentscope.message.Msg": [[17, 2, 1, "", "__init__"], [17, 3, 1, "", "content"], [17, 2, 1, "", "formatted_str"], [17, 2, 1, "", "from_dict"], [17, 3, 1, "", "id"], [17, 3, 1, "", "metadata"], [17, 3, 1, "", "name"], [17, 3, 1, "", "role"], [17, 3, 1, "", "timestamp"], [17, 2, 1, "", "to_dict"], [17, 3, 1, "", "url"]], "agentscope.message.PlaceholderMessage": [[17, 2, 1, "", "__init__"], [17, 3, 1, "", "content"], [17, 2, 1, "", "from_dict"], [17, 3, 1, "", "id"], [17, 3, 1, "", "metadata"], [17, 3, 1, "", "name"], [17, 3, 1, "", "role"], [17, 3, 1, "", "timestamp"], [17, 2, 1, "", "to_dict"], [17, 2, 1, "", "update_value"], [17, 3, 1, "", "url"]], "agentscope.message.msg": [[18, 1, 1, "", "Msg"]], "agentscope.message.msg.Msg": [[18, 2, 1, "", "__init__"], [18, 3, 1, "", "content"], [18, 2, 1, "", "formatted_str"], [18, 2, 1, "", "from_dict"], [18, 3, 1, "", "id"], [18, 3, 1, "", "metadata"], [18, 3, 1, "", "name"], [18, 3, 1, "", "role"], [18, 3, 1, "", "timestamp"], [18, 2, 1, "", "to_dict"], [18, 3, 1, "", "url"]], "agentscope.message.placeholder": [[19, 1, 1, "", "PlaceholderMessage"]], "agentscope.message.placeholder.PlaceholderMessage": [[19, 2, 1, "", "__init__"], [19, 3, 1, "", "content"], [19, 2, 1, "", "from_dict"], [19, 3, 1, "", "id"], [19, 3, 1, "", "metadata"], [19, 3, 1, "", "name"], [19, 3, 1, "", "role"], [19, 3, 1, "", "timestamp"], [19, 2, 1, "", "to_dict"], [19, 2, 1, "", "update_value"], [19, 3, 1, "", "url"]], "agentscope.models": [[20, 1, 1, "", "DashScopeChatWrapper"], [20, 1, 1, "", "DashScopeImageSynthesisWrapper"], [20, 1, 1, "", "DashScopeMultiModalWrapper"], [20, 1, 1, "", "DashScopeTextEmbeddingWrapper"], [20, 1, 1, "", "GeminiChatWrapper"], [20, 1, 1, "", "GeminiEmbeddingWrapper"], [20, 1, 1, "", "LiteLLMChatWrapper"], [20, 1, 1, "", "ModelResponse"], [20, 1, 1, "", "ModelWrapperBase"], [20, 1, 1, "", "OllamaChatWrapper"], [20, 1, 1, "", "OllamaEmbeddingWrapper"], [20, 1, 1, "", "OllamaGenerationWrapper"], [20, 1, 1, "", "OpenAIChatWrapper"], [20, 1, 1, "", "OpenAIDALLEWrapper"], [20, 1, 1, "", "OpenAIEmbeddingWrapper"], [20, 1, 1, "", "OpenAIWrapperBase"], [20, 1, 1, "", "PostAPIChatWrapper"], [20, 1, 1, "", "PostAPIModelWrapperBase"], [20, 1, 1, "", "YiChatWrapper"], [20, 1, 1, "", "ZhipuAIChatWrapper"], [20, 1, 1, "", "ZhipuAIEmbeddingWrapper"], [21, 0, 0, "-", "dashscope_model"], [22, 0, 0, "-", "gemini_model"], [23, 0, 0, "-", "litellm_model"], [24, 0, 0, "-", "model"], [25, 0, 0, "-", "ollama_model"], [26, 0, 0, "-", "openai_model"], [27, 0, 0, "-", "post_model"], [28, 0, 0, "-", "response"], [29, 0, 0, "-", "yi_model"], [30, 0, 0, "-", "zhipu_model"]], "agentscope.models.DashScopeChatWrapper": [[20, 2, 1, "", "__init__"], [20, 4, 1, "", "deprecated_model_type"], [20, 2, 1, "", "format"], [20, 4, 1, "", "model_type"]], "agentscope.models.DashScopeImageSynthesisWrapper": [[20, 4, 1, "", "model_type"]], "agentscope.models.DashScopeMultiModalWrapper": [[20, 2, 1, "", "convert_url"], [20, 2, 1, "", "format"], [20, 4, 1, "", "model_type"]], "agentscope.models.DashScopeTextEmbeddingWrapper": [[20, 4, 1, "", "model_type"]], "agentscope.models.GeminiChatWrapper": [[20, 2, 1, "", "__init__"], [20, 2, 1, "", "format"], [20, 4, 1, "", "generation_method"], [20, 4, 1, "", "model_type"]], "agentscope.models.GeminiEmbeddingWrapper": [[20, 4, 1, "", "model_type"]], "agentscope.models.LiteLLMChatWrapper": [[20, 2, 1, "", "__init__"], [20, 2, 1, "", "format"], [20, 4, 1, "", "model_type"]], "agentscope.models.ModelResponse": [[20, 2, 1, "", "__init__"], [20, 3, 1, "", "is_stream_exhausted"], [20, 3, 1, "", "stream"], [20, 3, 1, "", "text"]], "agentscope.models.ModelWrapperBase": [[20, 2, 1, "", "__init__"], [20, 4, 1, "", "config_name"], [20, 2, 1, "", "format"], [20, 2, 1, "", "format_for_common_chat_models"], [20, 2, 1, "", "get_wrapper"], [20, 4, 1, "", "model_name"], [20, 4, 1, "", "model_type"]], "agentscope.models.OllamaChatWrapper": [[20, 2, 1, "", "__init__"], [20, 2, 1, "", "format"], [20, 4, 1, "", "model_type"]], "agentscope.models.OllamaEmbeddingWrapper": [[20, 2, 1, "", "format"], [20, 4, 1, "", "model_type"]], "agentscope.models.OllamaGenerationWrapper": [[20, 2, 1, "", "format"], [20, 4, 1, "", "model_type"]], "agentscope.models.OpenAIChatWrapper": [[20, 2, 1, "", "__init__"], [20, 4, 1, "", "deprecated_model_type"], [20, 2, 1, "", "format"], [20, 4, 1, "", "model_type"], [20, 2, 1, "", "static_format"], [20, 4, 1, "", "substrings_in_vision_models_names"]], "agentscope.models.OpenAIDALLEWrapper": [[20, 4, 1, "", "model_type"]], "agentscope.models.OpenAIEmbeddingWrapper": [[20, 4, 1, "", "model_type"]], "agentscope.models.OpenAIWrapperBase": [[20, 2, 1, "", "__init__"], [20, 2, 1, "", "format"]], "agentscope.models.PostAPIChatWrapper": [[20, 2, 1, "", "format"], [20, 4, 1, "", "model_type"]], "agentscope.models.PostAPIModelWrapperBase": [[20, 2, 1, "", "__init__"], [20, 4, 1, "", "model_type"]], "agentscope.models.YiChatWrapper": [[20, 2, 1, "", "__init__"], [20, 2, 1, "", "format"], [20, 4, 1, "", "model_type"]], "agentscope.models.ZhipuAIChatWrapper": [[20, 2, 1, "", "__init__"], [20, 2, 1, "", "format"], [20, 4, 1, "", "model_type"]], "agentscope.models.ZhipuAIEmbeddingWrapper": [[20, 4, 1, "", "model_type"]], "agentscope.models.dashscope_model": [[21, 1, 1, "", "DashScopeChatWrapper"], [21, 1, 1, "", "DashScopeImageSynthesisWrapper"], [21, 1, 1, "", "DashScopeMultiModalWrapper"], [21, 1, 1, "", "DashScopeTextEmbeddingWrapper"], [21, 1, 1, "", "DashScopeWrapperBase"]], "agentscope.models.dashscope_model.DashScopeChatWrapper": [[21, 2, 1, "", "__init__"], [21, 4, 1, "", "config_name"], [21, 4, 1, "", "deprecated_model_type"], [21, 2, 1, "", "format"], [21, 4, 1, "", "model_name"], [21, 4, 1, "", "model_type"]], "agentscope.models.dashscope_model.DashScopeImageSynthesisWrapper": [[21, 4, 1, "", "config_name"], [21, 4, 1, "", "model_name"], [21, 4, 1, "", "model_type"]], "agentscope.models.dashscope_model.DashScopeMultiModalWrapper": [[21, 4, 1, "", "config_name"], [21, 2, 1, "", "convert_url"], [21, 2, 1, "", "format"], [21, 4, 1, "", "model_name"], [21, 4, 1, "", "model_type"]], "agentscope.models.dashscope_model.DashScopeTextEmbeddingWrapper": [[21, 4, 1, "", "config_name"], [21, 4, 1, "", "model_name"], [21, 4, 1, "", "model_type"]], "agentscope.models.dashscope_model.DashScopeWrapperBase": [[21, 2, 1, "", "__init__"], [21, 2, 1, "", "format"]], "agentscope.models.gemini_model": [[22, 1, 1, "", "GeminiChatWrapper"], [22, 1, 1, "", "GeminiEmbeddingWrapper"], [22, 1, 1, "", "GeminiWrapperBase"]], "agentscope.models.gemini_model.GeminiChatWrapper": [[22, 2, 1, "", "__init__"], [22, 4, 1, "", "config_name"], [22, 2, 1, "", "format"], [22, 4, 1, "", "generation_method"], [22, 4, 1, "", "model_name"], [22, 4, 1, "", "model_type"]], "agentscope.models.gemini_model.GeminiEmbeddingWrapper": [[22, 4, 1, "", "config_name"], [22, 4, 1, "", "model_name"], [22, 4, 1, "", "model_type"]], "agentscope.models.gemini_model.GeminiWrapperBase": [[22, 2, 1, "", "__init__"], [22, 2, 1, "", "list_models"]], "agentscope.models.litellm_model": [[23, 1, 1, "", "LiteLLMChatWrapper"], [23, 1, 1, "", "LiteLLMWrapperBase"]], "agentscope.models.litellm_model.LiteLLMChatWrapper": [[23, 2, 1, "", "__init__"], [23, 4, 1, "", "config_name"], [23, 2, 1, "", "format"], [23, 4, 1, "", "model_name"], [23, 4, 1, "", "model_type"]], "agentscope.models.litellm_model.LiteLLMWrapperBase": [[23, 2, 1, "", "__init__"], [23, 2, 1, "", "format"]], "agentscope.models.model": [[24, 1, 1, "", "ModelWrapperBase"]], "agentscope.models.model.ModelWrapperBase": [[24, 2, 1, "", "__init__"], [24, 4, 1, "", "config_name"], [24, 2, 1, "", "format"], [24, 2, 1, "", "format_for_common_chat_models"], [24, 2, 1, "", "get_wrapper"], [24, 4, 1, "", "model_name"], [24, 4, 1, "", "model_type"]], "agentscope.models.ollama_model": [[25, 1, 1, "", "OllamaChatWrapper"], [25, 1, 1, "", "OllamaEmbeddingWrapper"], [25, 1, 1, "", "OllamaGenerationWrapper"], [25, 1, 1, "", "OllamaWrapperBase"]], "agentscope.models.ollama_model.OllamaChatWrapper": [[25, 2, 1, "", "__init__"], [25, 4, 1, "", "config_name"], [25, 2, 1, "", "format"], [25, 4, 1, "", "keep_alive"], [25, 4, 1, "", "model_name"], [25, 4, 1, "", "model_type"], [25, 4, 1, "", "options"]], "agentscope.models.ollama_model.OllamaEmbeddingWrapper": [[25, 4, 1, "", "config_name"], [25, 2, 1, "", "format"], [25, 4, 1, "", "keep_alive"], [25, 4, 1, "", "model_name"], [25, 4, 1, "", "model_type"], [25, 4, 1, "", "options"]], "agentscope.models.ollama_model.OllamaGenerationWrapper": [[25, 4, 1, "", "config_name"], [25, 2, 1, "", "format"], [25, 4, 1, "", "keep_alive"], [25, 4, 1, "", "model_name"], [25, 4, 1, "", "model_type"], [25, 4, 1, "", "options"]], "agentscope.models.ollama_model.OllamaWrapperBase": [[25, 2, 1, "", "__init__"], [25, 4, 1, "", "keep_alive"], [25, 4, 1, "", "model_name"], [25, 4, 1, "", "model_type"], [25, 4, 1, "", "options"]], "agentscope.models.openai_model": [[26, 1, 1, "", "OpenAIChatWrapper"], [26, 1, 1, "", "OpenAIDALLEWrapper"], [26, 1, 1, "", "OpenAIEmbeddingWrapper"], [26, 1, 1, "", "OpenAIWrapperBase"]], "agentscope.models.openai_model.OpenAIChatWrapper": [[26, 2, 1, "", "__init__"], [26, 4, 1, "", "config_name"], [26, 4, 1, "", "deprecated_model_type"], [26, 2, 1, "", "format"], [26, 4, 1, "", "model_name"], [26, 4, 1, "", "model_type"], [26, 2, 1, "", "static_format"], [26, 4, 1, "", "substrings_in_vision_models_names"]], "agentscope.models.openai_model.OpenAIDALLEWrapper": [[26, 4, 1, "", "config_name"], [26, 4, 1, "", "model_name"], [26, 4, 1, "", "model_type"]], "agentscope.models.openai_model.OpenAIEmbeddingWrapper": [[26, 4, 1, "", "config_name"], [26, 4, 1, "", "model_name"], [26, 4, 1, "", "model_type"]], "agentscope.models.openai_model.OpenAIWrapperBase": [[26, 2, 1, "", "__init__"], [26, 2, 1, "", "format"]], "agentscope.models.post_model": [[27, 1, 1, "", "PostAPIChatWrapper"], [27, 1, 1, "", "PostAPIDALLEWrapper"], [27, 1, 1, "", "PostAPIEmbeddingWrapper"], [27, 1, 1, "", "PostAPIModelWrapperBase"]], "agentscope.models.post_model.PostAPIChatWrapper": [[27, 4, 1, "", "config_name"], [27, 2, 1, "", "format"], [27, 4, 1, "", "model_name"], [27, 4, 1, "", "model_type"]], "agentscope.models.post_model.PostAPIDALLEWrapper": [[27, 4, 1, "", "deprecated_model_type"], [27, 2, 1, "", "format"], [27, 4, 1, "", "model_type"]], "agentscope.models.post_model.PostAPIEmbeddingWrapper": [[27, 2, 1, "", "format"], [27, 4, 1, "", "model_type"]], "agentscope.models.post_model.PostAPIModelWrapperBase": [[27, 2, 1, "", "__init__"], [27, 4, 1, "", "config_name"], [27, 4, 1, "", "model_name"], [27, 4, 1, "", "model_type"]], "agentscope.models.response": [[28, 1, 1, "", "ModelResponse"]], "agentscope.models.response.ModelResponse": [[28, 2, 1, "", "__init__"], [28, 3, 1, "", "is_stream_exhausted"], [28, 3, 1, "", "stream"], [28, 3, 1, "", "text"]], "agentscope.models.yi_model": [[29, 1, 1, "", "YiChatWrapper"]], "agentscope.models.yi_model.YiChatWrapper": [[29, 2, 1, "", "__init__"], [29, 4, 1, "", "config_name"], [29, 2, 1, "", "format"], [29, 4, 1, "", "model_name"], [29, 4, 1, "", "model_type"]], "agentscope.models.zhipu_model": [[30, 1, 1, "", "ZhipuAIChatWrapper"], [30, 1, 1, "", "ZhipuAIEmbeddingWrapper"], [30, 1, 1, "", "ZhipuAIWrapperBase"]], "agentscope.models.zhipu_model.ZhipuAIChatWrapper": [[30, 2, 1, "", "__init__"], [30, 4, 1, "", "config_name"], [30, 2, 1, "", "format"], [30, 4, 1, "", "model_name"], [30, 4, 1, "", "model_type"]], "agentscope.models.zhipu_model.ZhipuAIEmbeddingWrapper": [[30, 4, 1, "", "config_name"], [30, 4, 1, "", "model_name"], [30, 4, 1, "", "model_type"]], "agentscope.models.zhipu_model.ZhipuAIWrapperBase": [[30, 2, 1, "", "__init__"], [30, 2, 1, "", "format"]], "agentscope.msghub": [[31, 1, 1, "", "MsgHubManager"], [31, 6, 1, "", "msghub"]], "agentscope.msghub.MsgHubManager": [[31, 2, 1, "", "__init__"], [31, 2, 1, "", "add"], [31, 2, 1, "", "broadcast"], [31, 2, 1, "", "delete"]], "agentscope.parsers": [[32, 1, 1, "", "MarkdownCodeBlockParser"], [32, 1, 1, "", "MarkdownJsonDictParser"], [32, 1, 1, "", "MarkdownJsonObjectParser"], [32, 1, 1, "", "MultiTaggedContentParser"], [32, 1, 1, "", "ParserBase"], [32, 1, 1, "", "RegexTaggedContentParser"], [32, 1, 1, "", "TaggedContent"], [33, 0, 0, "-", "code_block_parser"], [34, 0, 0, "-", "json_object_parser"], [35, 0, 0, "-", "parser_base"], [36, 0, 0, "-", "regex_tagged_content_parser"], [37, 0, 0, "-", "tagged_content_parser"]], "agentscope.parsers.MarkdownCodeBlockParser": [[32, 2, 1, "", "__init__"], [32, 4, 1, "", "content_hint"], [32, 4, 1, "", "format_instruction"], [32, 4, 1, "", "name"], [32, 2, 1, "", "parse"], [32, 4, 1, "", "tag_begin"], [32, 4, 1, "", "tag_end"]], "agentscope.parsers.MarkdownJsonDictParser": [[32, 2, 1, "", "__init__"], [32, 4, 1, "", "content_hint"], [32, 3, 1, "", "format_instruction"], [32, 4, 1, "", "name"], [32, 2, 1, "", "parse"], [32, 4, 1, "", "required_keys"], [32, 4, 1, "", "tag_begin"], [32, 4, 1, "", "tag_end"]], "agentscope.parsers.MarkdownJsonObjectParser": [[32, 2, 1, "", "__init__"], [32, 4, 1, "", "content_hint"], [32, 3, 1, "", "format_instruction"], [32, 4, 1, "", "name"], [32, 2, 1, "", "parse"], [32, 4, 1, "", "tag_begin"], [32, 4, 1, "", "tag_end"]], "agentscope.parsers.MultiTaggedContentParser": [[32, 2, 1, "", "__init__"], [32, 4, 1, "", "format_instruction"], [32, 4, 1, "", "json_required_hint"], [32, 2, 1, "", "parse"]], "agentscope.parsers.ParserBase": [[32, 2, 1, "", "parse"]], "agentscope.parsers.RegexTaggedContentParser": [[32, 2, 1, "", "__init__"], [32, 3, 1, "", "format_instruction"], [32, 2, 1, "", "parse"]], "agentscope.parsers.TaggedContent": [[32, 2, 1, "", "__init__"], [32, 4, 1, "", "content_hint"], [32, 4, 1, "", "name"], [32, 4, 1, "", "parse_json"], [32, 4, 1, "", "tag_begin"], [32, 4, 1, "", "tag_end"]], "agentscope.parsers.code_block_parser": [[33, 1, 1, "", "MarkdownCodeBlockParser"]], "agentscope.parsers.code_block_parser.MarkdownCodeBlockParser": [[33, 2, 1, "", "__init__"], [33, 4, 1, "", "content_hint"], [33, 4, 1, "", "format_instruction"], [33, 4, 1, "", "name"], [33, 2, 1, "", "parse"], [33, 4, 1, "", "tag_begin"], [33, 4, 1, "", "tag_end"]], "agentscope.parsers.json_object_parser": [[34, 1, 1, "", "MarkdownJsonDictParser"], [34, 1, 1, "", "MarkdownJsonObjectParser"]], "agentscope.parsers.json_object_parser.MarkdownJsonDictParser": [[34, 2, 1, "", "__init__"], [34, 4, 1, "", "content_hint"], [34, 3, 1, "", "format_instruction"], [34, 4, 1, "", "name"], [34, 2, 1, "", "parse"], [34, 4, 1, "", "required_keys"], [34, 4, 1, "", "tag_begin"], [34, 4, 1, "", "tag_end"]], "agentscope.parsers.json_object_parser.MarkdownJsonObjectParser": [[34, 2, 1, "", "__init__"], [34, 4, 1, "", "content_hint"], [34, 3, 1, "", "format_instruction"], [34, 4, 1, "", "name"], [34, 2, 1, "", "parse"], [34, 4, 1, "", "tag_begin"], [34, 4, 1, "", "tag_end"]], "agentscope.parsers.parser_base": [[35, 1, 1, "", "DictFilterMixin"], [35, 1, 1, "", "ParserBase"]], "agentscope.parsers.parser_base.DictFilterMixin": [[35, 2, 1, "", "__init__"], [35, 2, 1, "", "to_content"], [35, 2, 1, "", "to_memory"], [35, 2, 1, "", "to_metadata"]], "agentscope.parsers.parser_base.ParserBase": [[35, 2, 1, "", "parse"]], "agentscope.parsers.regex_tagged_content_parser": [[36, 1, 1, "", "RegexTaggedContentParser"]], "agentscope.parsers.regex_tagged_content_parser.RegexTaggedContentParser": [[36, 2, 1, "", "__init__"], [36, 3, 1, "", "format_instruction"], [36, 2, 1, "", "parse"]], "agentscope.parsers.tagged_content_parser": [[37, 1, 1, "", "MultiTaggedContentParser"], [37, 1, 1, "", "TaggedContent"]], "agentscope.parsers.tagged_content_parser.MultiTaggedContentParser": [[37, 2, 1, "", "__init__"], [37, 4, 1, "", "format_instruction"], [37, 4, 1, "", "json_required_hint"], [37, 2, 1, "", "parse"]], "agentscope.parsers.tagged_content_parser.TaggedContent": [[37, 2, 1, "", "__init__"], [37, 4, 1, "", "content_hint"], [37, 4, 1, "", "name"], [37, 4, 1, "", "parse_json"], [37, 4, 1, "", "tag_begin"], [37, 4, 1, "", "tag_end"]], "agentscope.pipelines": [[38, 1, 1, "", "ForLoopPipeline"], [38, 1, 1, "", "IfElsePipeline"], [38, 1, 1, "", "PipelineBase"], [38, 1, 1, "", "SequentialPipeline"], [38, 1, 1, "", "SwitchPipeline"], [38, 1, 1, "", "WhileLoopPipeline"], [38, 6, 1, "", "forlooppipeline"], [39, 0, 0, "-", "functional"], [38, 6, 1, "", "ifelsepipeline"], [40, 0, 0, "-", "pipeline"], [38, 6, 1, "", "sequentialpipeline"], [38, 6, 1, "", "switchpipeline"], [38, 6, 1, "", "whilelooppipeline"]], "agentscope.pipelines.ForLoopPipeline": [[38, 2, 1, "", "__init__"]], "agentscope.pipelines.IfElsePipeline": [[38, 2, 1, "", "__init__"]], "agentscope.pipelines.PipelineBase": [[38, 2, 1, "", "__init__"]], "agentscope.pipelines.SequentialPipeline": [[38, 2, 1, "", "__init__"]], "agentscope.pipelines.SwitchPipeline": [[38, 2, 1, "", "__init__"]], "agentscope.pipelines.WhileLoopPipeline": [[38, 2, 1, "", "__init__"]], "agentscope.pipelines.functional": [[39, 6, 1, "", "forlooppipeline"], [39, 6, 1, "", "ifelsepipeline"], [39, 6, 1, "", "placeholder"], [39, 6, 1, "", "sequentialpipeline"], [39, 6, 1, "", "switchpipeline"], [39, 6, 1, "", "whilelooppipeline"]], "agentscope.pipelines.pipeline": [[40, 1, 1, "", "ForLoopPipeline"], [40, 1, 1, "", "IfElsePipeline"], [40, 1, 1, "", "PipelineBase"], [40, 1, 1, "", "SequentialPipeline"], [40, 1, 1, "", "SwitchPipeline"], [40, 1, 1, "", "WhileLoopPipeline"]], "agentscope.pipelines.pipeline.ForLoopPipeline": [[40, 2, 1, "", "__init__"]], "agentscope.pipelines.pipeline.IfElsePipeline": [[40, 2, 1, "", "__init__"]], "agentscope.pipelines.pipeline.PipelineBase": [[40, 2, 1, "", "__init__"]], "agentscope.pipelines.pipeline.SequentialPipeline": [[40, 2, 1, "", "__init__"]], "agentscope.pipelines.pipeline.SwitchPipeline": [[40, 2, 1, "", "__init__"]], "agentscope.pipelines.pipeline.WhileLoopPipeline": [[40, 2, 1, "", "__init__"]], "agentscope.prompt": [[41, 1, 1, "", "ChineseSystemPromptGenerator"], [41, 1, 1, "", "EnglishSystemPromptGenerator"], [41, 1, 1, "", "SystemPromptComparer"], [41, 1, 1, "", "SystemPromptGeneratorBase"], [41, 1, 1, "", "SystemPromptOptimizer"]], "agentscope.prompt.ChineseSystemPromptGenerator": [[41, 2, 1, "", "__init__"]], "agentscope.prompt.EnglishSystemPromptGenerator": [[41, 2, 1, "", "__init__"]], "agentscope.prompt.SystemPromptComparer": [[41, 2, 1, "", "__init__"], [41, 2, 1, "", "compare_in_dialog"], [41, 2, 1, "", "compare_with_queries"]], "agentscope.prompt.SystemPromptGeneratorBase": [[41, 2, 1, "", "__init__"], [41, 2, 1, "", "generate"]], "agentscope.prompt.SystemPromptOptimizer": [[41, 2, 1, "", "__init__"], [41, 2, 1, "", "generate_notes"]], "agentscope.rag": [[42, 1, 1, "", "Knowledge"], [42, 1, 1, "", "KnowledgeBank"], [43, 0, 0, "-", "knowledge"], [44, 0, 0, "-", "knowledge_bank"], [45, 0, 0, "-", "llama_index_knowledge"]], "agentscope.rag.Knowledge": [[42, 2, 1, "", "__init__"], [42, 2, 1, "", "post_processing"], [42, 2, 1, "", "retrieve"]], "agentscope.rag.KnowledgeBank": [[42, 2, 1, "", "__init__"], [42, 2, 1, "", "add_data_as_knowledge"], [42, 2, 1, "", "equip"], [42, 2, 1, "", "get_knowledge"]], "agentscope.rag.knowledge": [[43, 1, 1, "", "Knowledge"]], "agentscope.rag.knowledge.Knowledge": [[43, 2, 1, "", "__init__"], [43, 2, 1, "", "post_processing"], [43, 2, 1, "", "retrieve"]], "agentscope.rag.knowledge_bank": [[44, 1, 1, "", "KnowledgeBank"]], "agentscope.rag.knowledge_bank.KnowledgeBank": [[44, 2, 1, "", "__init__"], [44, 2, 1, "", "add_data_as_knowledge"], [44, 2, 1, "", "equip"], [44, 2, 1, "", "get_knowledge"]], "agentscope.rag.llama_index_knowledge": [[45, 1, 1, "", "LlamaIndexKnowledge"]], "agentscope.rag.llama_index_knowledge.LlamaIndexKnowledge": [[45, 2, 1, "", "__init__"], [45, 2, 1, "", "refresh_index"], [45, 2, 1, "", "retrieve"]], "agentscope.rpc": [[46, 1, 1, "", "ResponseStub"], [46, 1, 1, "", "RpcAgentClient"], [46, 1, 1, "", "RpcAgentServicer"], [46, 1, 1, "", "RpcAgentStub"], [46, 1, 1, "", "RpcMsg"], [46, 6, 1, "", "add_RpcAgentServicer_to_server"], [46, 6, 1, "", "call_in_thread"], [47, 0, 0, "-", "rpc_agent_client"], [48, 0, 0, "-", "rpc_agent_pb2"], [49, 0, 0, "-", "rpc_agent_pb2_grpc"]], "agentscope.rpc.ResponseStub": [[46, 2, 1, "", "__init__"], [46, 2, 1, "", "get_response"], [46, 2, 1, "", "set_response"]], "agentscope.rpc.RpcAgentClient": [[46, 2, 1, "", "__init__"], [46, 2, 1, "", "call_agent_func"], [46, 2, 1, "", "clone_agent"], [46, 2, 1, "", "create_agent"], [46, 2, 1, "", "delete_agent"], [46, 2, 1, "", "delete_all_agent"], [46, 2, 1, "", "download_file"], [46, 2, 1, "", "get_agent_list"], [46, 2, 1, "", "get_agent_memory"], [46, 2, 1, "", "get_server_info"], [46, 2, 1, "", "is_alive"], [46, 2, 1, "", "set_model_configs"], [46, 2, 1, "", "stop"], [46, 2, 1, "", "update_placeholder"]], "agentscope.rpc.RpcAgentServicer": [[46, 2, 1, "", "call_agent_func"], [46, 2, 1, "", "clone_agent"], [46, 2, 1, "", "create_agent"], [46, 2, 1, "", "delete_agent"], [46, 2, 1, "", "delete_all_agents"], [46, 2, 1, "", "download_file"], [46, 2, 1, "", "get_agent_list"], [46, 2, 1, "", "get_agent_memory"], [46, 2, 1, "", "get_server_info"], [46, 2, 1, "", "is_alive"], [46, 2, 1, "", "set_model_configs"], [46, 2, 1, "", "stop"], [46, 2, 1, "", "update_placeholder"]], "agentscope.rpc.RpcAgentStub": [[46, 2, 1, "", "__init__"]], "agentscope.rpc.RpcMsg": [[46, 4, 1, "", "DESCRIPTOR"]], "agentscope.rpc.rpc_agent_client": [[47, 1, 1, "", "ResponseStub"], [47, 1, 1, "", "RpcAgentClient"], [47, 6, 1, "", "call_in_thread"]], "agentscope.rpc.rpc_agent_client.ResponseStub": [[47, 2, 1, "", "__init__"], [47, 2, 1, "", "get_response"], [47, 2, 1, "", "set_response"]], "agentscope.rpc.rpc_agent_client.RpcAgentClient": [[47, 2, 1, "", "__init__"], [47, 2, 1, "", "call_agent_func"], [47, 2, 1, "", "clone_agent"], [47, 2, 1, "", "create_agent"], [47, 2, 1, "", "delete_agent"], [47, 2, 1, "", "delete_all_agent"], [47, 2, 1, "", "download_file"], [47, 2, 1, "", "get_agent_list"], [47, 2, 1, "", "get_agent_memory"], [47, 2, 1, "", "get_server_info"], [47, 2, 1, "", "is_alive"], [47, 2, 1, "", "set_model_configs"], [47, 2, 1, "", "stop"], [47, 2, 1, "", "update_placeholder"]], "agentscope.rpc.rpc_agent_pb2_grpc": [[49, 1, 1, "", "RpcAgent"], [49, 1, 1, "", "RpcAgentServicer"], [49, 1, 1, "", "RpcAgentStub"], [49, 6, 1, "", "add_RpcAgentServicer_to_server"]], "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgent": [[49, 2, 1, "", "call_agent_func"], [49, 2, 1, "", "clone_agent"], [49, 2, 1, "", "create_agent"], [49, 2, 1, "", "delete_agent"], [49, 2, 1, "", "delete_all_agents"], [49, 2, 1, "", "download_file"], [49, 2, 1, "", "get_agent_list"], [49, 2, 1, "", "get_agent_memory"], [49, 2, 1, "", "get_server_info"], [49, 2, 1, "", "is_alive"], [49, 2, 1, "", "set_model_configs"], [49, 2, 1, "", "stop"], [49, 2, 1, "", "update_placeholder"]], "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgentServicer": [[49, 2, 1, "", "call_agent_func"], [49, 2, 1, "", "clone_agent"], [49, 2, 1, "", "create_agent"], [49, 2, 1, "", "delete_agent"], [49, 2, 1, "", "delete_all_agents"], [49, 2, 1, "", "download_file"], [49, 2, 1, "", "get_agent_list"], [49, 2, 1, "", "get_agent_memory"], [49, 2, 1, "", "get_server_info"], [49, 2, 1, "", "is_alive"], [49, 2, 1, "", "set_model_configs"], [49, 2, 1, "", "stop"], [49, 2, 1, "", "update_placeholder"]], "agentscope.rpc.rpc_agent_pb2_grpc.RpcAgentStub": [[49, 2, 1, "", "__init__"]], "agentscope.serialize": [[50, 6, 1, "", "deserialize"], [50, 6, 1, "", "is_serializable"], [50, 6, 1, "", "serialize"]], "agentscope.server": [[51, 1, 1, "", "AgentServerServicer"], [51, 1, 1, "", "RpcAgentServerLauncher"], [51, 6, 1, "", "as_server"], [52, 0, 0, "-", "launcher"], [53, 0, 0, "-", "servicer"]], "agentscope.server.AgentServerServicer": [[51, 2, 1, "", "__init__"], [51, 2, 1, "", "agent_exists"], [51, 2, 1, "", "call_agent_func"], [51, 2, 1, "", "clone_agent"], [51, 2, 1, "", "create_agent"], [51, 2, 1, "", "delete_agent"], [51, 2, 1, "", "delete_all_agents"], [51, 2, 1, "", "download_file"], [51, 2, 1, "", "get_agent"], [51, 2, 1, "", "get_agent_list"], [51, 2, 1, "", "get_agent_memory"], [51, 2, 1, "", "get_server_info"], [51, 2, 1, "", "get_task_id"], [51, 2, 1, "", "is_alive"], [51, 2, 1, "", "set_model_configs"], [51, 2, 1, "", "stop"], [51, 2, 1, "", "update_placeholder"]], "agentscope.server.RpcAgentServerLauncher": [[51, 2, 1, "", "__init__"], [51, 2, 1, "", "generate_server_id"], [51, 2, 1, "", "launch"], [51, 2, 1, "", "shutdown"], [51, 2, 1, "", "wait_until_terminate"]], "agentscope.server.launcher": [[52, 1, 1, "", "RpcAgentServerLauncher"], [52, 6, 1, "", "as_server"], [52, 6, 1, "", "load_agents_from_dir"], [52, 6, 1, "", "load_agents_from_file"]], "agentscope.server.launcher.RpcAgentServerLauncher": [[52, 2, 1, "", "__init__"], [52, 2, 1, "", "generate_server_id"], [52, 2, 1, "", "launch"], [52, 2, 1, "", "shutdown"], [52, 2, 1, "", "wait_until_terminate"]], "agentscope.server.servicer": [[53, 1, 1, "", "AgentServerServicer"]], "agentscope.server.servicer.AgentServerServicer": [[53, 2, 1, "", "__init__"], [53, 2, 1, "", "agent_exists"], [53, 2, 1, "", "call_agent_func"], [53, 2, 1, "", "clone_agent"], [53, 2, 1, "", "create_agent"], [53, 2, 1, "", "delete_agent"], [53, 2, 1, "", "delete_all_agents"], [53, 2, 1, "", "download_file"], [53, 2, 1, "", "get_agent"], [53, 2, 1, "", "get_agent_list"], [53, 2, 1, "", "get_agent_memory"], [53, 2, 1, "", "get_server_info"], [53, 2, 1, "", "get_task_id"], [53, 2, 1, "", "is_alive"], [53, 2, 1, "", "set_model_configs"], [53, 2, 1, "", "stop"], [53, 2, 1, "", "update_placeholder"]], "agentscope.service": [[54, 1, 1, "", "NoteBookExecutor"], [54, 1, 1, "", "ServiceExecStatus"], [54, 1, 1, "", "ServiceFactory"], [54, 1, 1, "", "ServiceResponse"], [54, 1, 1, "", "ServiceToolkit"], [54, 1, 1, "", "WebBrowser"], [54, 1, 1, "", "WebElementInfo"], [54, 6, 1, "", "arxiv_search"], [54, 6, 1, "", "bing_search"], [55, 0, 0, "-", "browser"], [54, 6, 1, "", "cos_sim"], [54, 6, 1, "", "create_directory"], [54, 6, 1, "", "create_file"], [54, 6, 1, "", "dashscope_image_to_text"], [54, 6, 1, "", "dashscope_text_to_audio"], [54, 6, 1, "", "dashscope_text_to_image"], [54, 6, 1, "", "dblp_search_authors"], [54, 6, 1, "", "dblp_search_publications"], [54, 6, 1, "", "dblp_search_venues"], [54, 6, 1, "", "delete_directory"], [54, 6, 1, "", "delete_file"], [54, 6, 1, "", "digest_webpage"], [54, 6, 1, "", "download_from_url"], [57, 0, 0, "-", "execute_code"], [54, 6, 1, "", "execute_python_code"], [54, 6, 1, "", "execute_shell_command"], [61, 0, 0, "-", "file"], [54, 6, 1, "", "get_current_directory"], [54, 6, 1, "", "get_help"], [54, 6, 1, "", "google_search"], [54, 6, 1, "", "list_directory_content"], [54, 6, 1, "", "load_web"], [54, 6, 1, "", "move_directory"], [54, 6, 1, "", "move_file"], [65, 0, 0, "-", "multi_modality"], [54, 6, 1, "", "openai_audio_to_text"], [54, 6, 1, "", "openai_create_image_variation"], [54, 6, 1, "", "openai_edit_image"], [54, 6, 1, "", "openai_image_to_text"], [54, 6, 1, "", "openai_text_to_audio"], [54, 6, 1, "", "openai_text_to_image"], [54, 6, 1, "", "parse_html_to_text"], [54, 6, 1, "", "query_mongodb"], [54, 6, 1, "", "query_mysql"], [54, 6, 1, "", "query_sqlite"], [54, 6, 1, "", "read_json_file"], [54, 6, 1, "", "read_text_file"], [68, 0, 0, "-", "retrieval"], [54, 6, 1, "", "retrieve_from_list"], [71, 0, 0, "-", "service_response"], [72, 0, 0, "-", "service_status"], [73, 0, 0, "-", "service_toolkit"], [74, 0, 0, "-", "sql_query"], [54, 6, 1, "", "summarization"], [78, 0, 0, "-", "text_processing"], [54, 6, 1, "", "tripadvisor_search"], [54, 6, 1, "", "tripadvisor_search_location_details"], [54, 6, 1, "", "tripadvisor_search_location_photos"], [80, 0, 0, "-", "web"], [54, 6, 1, "", "wikipedia_search"], [54, 6, 1, "", "wikipedia_search_categories"], [54, 6, 1, "", "write_json_file"], [54, 6, 1, "", "write_text_file"]], "agentscope.service.NoteBookExecutor": [[54, 2, 1, "", "__init__"], [54, 2, 1, "", "async_run_code_on_notebook"], [54, 3, 1, "", "cells_length"], [54, 2, 1, "", "reset_notebook"], [54, 2, 1, "", "run_code_on_notebook"]], "agentscope.service.ServiceExecStatus": [[54, 4, 1, "", "ERROR"], [54, 4, 1, "", "SUCCESS"]], "agentscope.service.ServiceFactory": [[54, 2, 1, "", "get"]], "agentscope.service.ServiceResponse": [[54, 2, 1, "", "__init__"]], "agentscope.service.ServiceToolkit": [[54, 2, 1, "", "__init__"], [54, 2, 1, "", "add"], [54, 2, 1, "", "get"], [54, 3, 1, "", "json_schemas"], [54, 2, 1, "", "parse_and_call_func"], [54, 4, 1, "", "service_funcs"], [54, 3, 1, "", "tools_calling_format"], [54, 3, 1, "", "tools_instruction"]], "agentscope.service.WebBrowser": [[54, 2, 1, "", "__init__"], [54, 2, 1, "", "action_click"], [54, 2, 1, "", "action_press_key"], [54, 2, 1, "", "action_scroll_down"], [54, 2, 1, "", "action_scroll_up"], [54, 2, 1, "", "action_type"], [54, 2, 1, "", "action_visit_url"], [54, 2, 1, "", "close"], [54, 2, 1, "", "get_action_functions"], [54, 3, 1, "", "page_html"], [54, 3, 1, "", "page_markdown"], [54, 3, 1, "", "page_screenshot"], [54, 3, 1, "", "page_title"], [54, 2, 1, "", "remove_interactive_marks"], [54, 2, 1, "", "set_interactive_marks"], [54, 3, 1, "", "url"]], "agentscope.service.WebElementInfo": [[54, 4, 1, "", "aria_label"], [54, 4, 1, "", "height"], [54, 4, 1, "", "html"], [54, 4, 1, "", "inner_text"], [54, 4, 1, "", "is_clickable"], [54, 4, 1, "", "meta_data"], [54, 4, 1, "", "model_computed_fields"], [54, 4, 1, "", "model_config"], [54, 4, 1, "", "model_fields"], [54, 4, 1, "", "node_name"], [54, 4, 1, "", "node_value"], [54, 4, 1, "", "origin_x"], [54, 4, 1, "", "origin_y"], [54, 4, 1, "", "tag_name"], [54, 4, 1, "", "type"], [54, 4, 1, "", "width"]], "agentscope.service.browser": [[56, 0, 0, "-", "web_browser"]], "agentscope.service.browser.web_browser": [[56, 1, 1, "", "WebBrowser"], [56, 1, 1, "", "WebElementInfo"]], "agentscope.service.browser.web_browser.WebBrowser": [[56, 2, 1, "", "__init__"], [56, 2, 1, "", "action_click"], [56, 2, 1, "", "action_press_key"], [56, 2, 1, "", "action_scroll_down"], [56, 2, 1, "", "action_scroll_up"], [56, 2, 1, "", "action_type"], [56, 2, 1, "", "action_visit_url"], [56, 2, 1, "", "close"], [56, 2, 1, "", "get_action_functions"], [56, 3, 1, "", "page_html"], [56, 3, 1, "", "page_markdown"], [56, 3, 1, "", "page_screenshot"], [56, 3, 1, "", "page_title"], [56, 2, 1, "", "remove_interactive_marks"], [56, 2, 1, "", "set_interactive_marks"], [56, 3, 1, "", "url"]], "agentscope.service.browser.web_browser.WebElementInfo": [[56, 4, 1, "", "aria_label"], [56, 4, 1, "", "height"], [56, 4, 1, "", "html"], [56, 4, 1, "", "inner_text"], [56, 4, 1, "", "is_clickable"], [56, 4, 1, "", "meta_data"], [56, 4, 1, "", "model_computed_fields"], [56, 4, 1, "", "model_config"], [56, 4, 1, "", "model_fields"], [56, 4, 1, "", "node_name"], [56, 4, 1, "", "node_value"], [56, 4, 1, "", "origin_x"], [56, 4, 1, "", "origin_y"], [56, 4, 1, "", "tag_name"], [56, 4, 1, "", "type"], [56, 4, 1, "", "width"]], "agentscope.service.execute_code": [[58, 0, 0, "-", "exec_notebook"], [59, 0, 0, "-", "exec_python"], [60, 0, 0, "-", "exec_shell"]], "agentscope.service.execute_code.exec_notebook": [[58, 1, 1, "", "NoteBookExecutor"]], "agentscope.service.execute_code.exec_notebook.NoteBookExecutor": [[58, 2, 1, "", "__init__"], [58, 2, 1, "", "async_run_code_on_notebook"], [58, 3, 1, "", "cells_length"], [58, 2, 1, "", "reset_notebook"], [58, 2, 1, "", "run_code_on_notebook"]], "agentscope.service.execute_code.exec_python": [[59, 6, 1, "", "execute_python_code"], [59, 6, 1, "", "sys_python_guard"]], "agentscope.service.execute_code.exec_shell": [[60, 6, 1, "", "execute_shell_command"]], "agentscope.service.file": [[62, 0, 0, "-", "common"], [63, 0, 0, "-", "json"], [64, 0, 0, "-", "text"]], "agentscope.service.file.common": [[62, 6, 1, "", "create_directory"], [62, 6, 1, "", "create_file"], [62, 6, 1, "", "delete_directory"], [62, 6, 1, "", "delete_file"], [62, 6, 1, "", "get_current_directory"], [62, 6, 1, "", "list_directory_content"], [62, 6, 1, "", "move_directory"], [62, 6, 1, "", "move_file"]], "agentscope.service.file.json": [[63, 6, 1, "", "read_json_file"], [63, 6, 1, "", "write_json_file"]], "agentscope.service.file.text": [[64, 6, 1, "", "read_text_file"], [64, 6, 1, "", "write_text_file"]], "agentscope.service.multi_modality": [[66, 0, 0, "-", "dashscope_services"], [67, 0, 0, "-", "openai_services"]], "agentscope.service.multi_modality.dashscope_services": [[66, 6, 1, "", "dashscope_image_to_text"], [66, 6, 1, "", "dashscope_text_to_audio"], [66, 6, 1, "", "dashscope_text_to_image"]], "agentscope.service.multi_modality.openai_services": [[67, 6, 1, "", "openai_audio_to_text"], [67, 6, 1, "", "openai_create_image_variation"], [67, 6, 1, "", "openai_edit_image"], [67, 6, 1, "", "openai_image_to_text"], [67, 6, 1, "", "openai_text_to_audio"], [67, 6, 1, "", "openai_text_to_image"]], "agentscope.service.retrieval": [[69, 0, 0, "-", "retrieval_from_list"], [70, 0, 0, "-", "similarity"]], "agentscope.service.retrieval.retrieval_from_list": [[69, 6, 1, "", "retrieve_from_list"]], "agentscope.service.retrieval.similarity": [[70, 6, 1, "", "cos_sim"]], "agentscope.service.service_response": [[71, 1, 1, "", "ServiceResponse"]], "agentscope.service.service_response.ServiceResponse": [[71, 2, 1, "", "__init__"]], "agentscope.service.service_status": [[72, 1, 1, "", "ServiceExecStatus"]], "agentscope.service.service_status.ServiceExecStatus": [[72, 4, 1, "", "ERROR"], [72, 4, 1, "", "SUCCESS"]], "agentscope.service.service_toolkit": [[73, 1, 1, "", "ServiceFactory"], [73, 1, 1, "", "ServiceFunction"], [73, 1, 1, "", "ServiceToolkit"]], "agentscope.service.service_toolkit.ServiceFactory": [[73, 2, 1, "", "get"]], "agentscope.service.service_toolkit.ServiceFunction": [[73, 2, 1, "", "__init__"], [73, 4, 1, "", "json_schema"], [73, 4, 1, "", "name"], [73, 4, 1, "", "original_func"], [73, 4, 1, "", "processed_func"], [73, 4, 1, "", "require_args"]], "agentscope.service.service_toolkit.ServiceToolkit": [[73, 2, 1, "", "__init__"], [73, 2, 1, "", "add"], [73, 2, 1, "", "get"], [73, 3, 1, "", "json_schemas"], [73, 2, 1, "", "parse_and_call_func"], [73, 4, 1, "", "service_funcs"], [73, 3, 1, "", "tools_calling_format"], [73, 3, 1, "", "tools_instruction"]], "agentscope.service.sql_query": [[75, 0, 0, "-", "mongodb"], [76, 0, 0, "-", "mysql"], [77, 0, 0, "-", "sqlite"]], "agentscope.service.sql_query.mongodb": [[75, 6, 1, "", "query_mongodb"]], "agentscope.service.sql_query.mysql": [[76, 6, 1, "", "query_mysql"]], "agentscope.service.sql_query.sqlite": [[77, 6, 1, "", "query_sqlite"]], "agentscope.service.text_processing": [[79, 0, 0, "-", "summarization"]], "agentscope.service.text_processing.summarization": [[79, 6, 1, "", "summarization"]], "agentscope.service.web": [[81, 0, 0, "-", "arxiv"], [82, 0, 0, "-", "dblp"], [83, 0, 0, "-", "download"], [84, 0, 0, "-", "search"], [85, 0, 0, "-", "tripadvisor"], [86, 0, 0, "-", "web_digest"], [87, 0, 0, "-", "wikipedia"]], "agentscope.service.web.arxiv": [[81, 6, 1, "", "arxiv_search"]], "agentscope.service.web.dblp": [[82, 6, 1, "", "dblp_search_authors"], [82, 6, 1, "", "dblp_search_publications"], [82, 6, 1, "", "dblp_search_venues"]], "agentscope.service.web.download": [[83, 6, 1, "", "download_from_url"]], "agentscope.service.web.search": [[84, 6, 1, "", "bing_search"], [84, 6, 1, "", "google_search"]], "agentscope.service.web.tripadvisor": [[85, 6, 1, "", "tripadvisor_search"], [85, 6, 1, "", "tripadvisor_search_location_details"], [85, 6, 1, "", "tripadvisor_search_location_photos"]], "agentscope.service.web.web_digest": [[86, 6, 1, "", "digest_webpage"], [86, 6, 1, "", "is_valid_url"], [86, 6, 1, "", "load_web"], [86, 6, 1, "", "parse_html_to_text"]], "agentscope.service.web.wikipedia": [[87, 6, 1, "", "wikipedia_search"], [87, 6, 1, "", "wikipedia_search_categories"]], "agentscope.strategy": [[88, 1, 1, "", "MixtureOfAgents"], [89, 0, 0, "-", "mixture_of_agent"]], "agentscope.strategy.MixtureOfAgents": [[88, 2, 1, "", "__init__"]], "agentscope.strategy.mixture_of_agent": [[89, 1, 1, "", "MixtureOfAgents"]], "agentscope.strategy.mixture_of_agent.MixtureOfAgents": [[89, 2, 1, "", "__init__"]], "agentscope.studio": [[90, 6, 1, "", "init"], [91, 0, 0, "-", "utils"]], "agentscope.studio.utils": [[91, 6, 1, "", "decode_jwt"], [91, 6, 1, "", "generate_jwt"]], "agentscope.utils": [[93, 0, 0, "-", "common"], [94, 0, 0, "-", "token_utils"]], "agentscope.utils.common": [[93, 1, 1, "", "ImportErrorReporter"], [93, 6, 1, "", "create_tempdir"], [93, 6, 1, "", "timer"], [93, 6, 1, "", "to_openai_dict"]], "agentscope.utils.common.ImportErrorReporter": [[93, 2, 1, "", "__init__"]], "agentscope.utils.token_utils": [[94, 6, 1, "", "count_openai_token"], [94, 6, 1, "", "get_openai_max_length"], [94, 6, 1, "", "num_tokens_from_content"]], "agentscope.web": [[96, 0, 0, "-", "gradio"], [100, 0, 0, "-", "workstation"]], "agentscope.web.gradio": [[97, 0, 0, "-", "constants"], [98, 0, 0, "-", "studio"], [99, 0, 0, "-", "utils"]], "agentscope.web.gradio.studio": [[98, 6, 1, "", "fn_choice"], [98, 6, 1, "", "get_chat"], [98, 6, 1, "", "import_function_from_path"], [98, 6, 1, "", "init_uid_list"], [98, 6, 1, "", "reset_glb_var"], [98, 6, 1, "", "run_app"], [98, 6, 1, "", "send_audio"], [98, 6, 1, "", "send_image"], [98, 6, 1, "", "send_message"]], "agentscope.web.gradio.utils": [[99, 5, 1, "", "ResetException"], [99, 6, 1, "", "audio2text"], [99, 6, 1, "", "check_uuid"], [99, 6, 1, "", "cycle_dots"], [99, 6, 1, "", "generate_image_from_name"], [99, 6, 1, "", "get_chat_msg"], [99, 6, 1, "", "get_player_input"], [99, 6, 1, "", "get_reset_msg"], [99, 6, 1, "", "init_uid_queues"], [99, 6, 1, "", "send_msg"], [99, 6, 1, "", "send_player_input"], [99, 6, 1, "", "send_reset_msg"], [99, 6, 1, "", "user_input"]], "agentscope.web.workstation": [[101, 0, 0, "-", "workflow"], [102, 0, 0, "-", "workflow_dag"], [103, 0, 0, "-", "workflow_node"], [104, 0, 0, "-", "workflow_utils"]], "agentscope.web.workstation.workflow": [[101, 6, 1, "", "compile_workflow"], [101, 6, 1, "", "load_config"], [101, 6, 1, "", "main"], [101, 6, 1, "", "start_workflow"]], "agentscope.web.workstation.workflow_dag": [[102, 1, 1, "", "ASDiGraph"], [102, 6, 1, "", "build_dag"], [102, 6, 1, "", "remove_duplicates_from_end"], [102, 6, 1, "", "sanitize_node_data"]], "agentscope.web.workstation.workflow_dag.ASDiGraph": [[102, 2, 1, "", "__init__"], [102, 2, 1, "", "add_as_node"], [102, 2, 1, "", "compile"], [102, 2, 1, "", "exec_node"], [102, 4, 1, "", "nodes_not_in_graph"], [102, 2, 1, "", "run"]], "agentscope.web.workstation.workflow_node": [[103, 1, 1, "", "BingSearchServiceNode"], [103, 1, 1, "", "CopyNode"], [103, 1, 1, "", "DialogAgentNode"], [103, 1, 1, "", "DictDialogAgentNode"], [103, 1, 1, "", "ForLoopPipelineNode"], [103, 1, 1, "", "GoogleSearchServiceNode"], [103, 1, 1, "", "IfElsePipelineNode"], [103, 1, 1, "", "ModelNode"], [103, 1, 1, "", "MsgHubNode"], [103, 1, 1, "", "MsgNode"], [103, 1, 1, "", "PlaceHolderNode"], [103, 1, 1, "", "PythonServiceNode"], [103, 1, 1, "", "ReActAgentNode"], [103, 1, 1, "", "ReadTextServiceNode"], [103, 1, 1, "", "SequentialPipelineNode"], [103, 1, 1, "", "SwitchPipelineNode"], [103, 1, 1, "", "UserAgentNode"], [103, 1, 1, "", "WhileLoopPipelineNode"], [103, 1, 1, "", "WorkflowNode"], [103, 1, 1, "", "WorkflowNodeType"], [103, 1, 1, "", "WriteTextServiceNode"], [103, 6, 1, "", "get_all_agents"]], "agentscope.web.workstation.workflow_node.BingSearchServiceNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_node.CopyNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_node.DialogAgentNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_node.DictDialogAgentNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_node.ForLoopPipelineNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_node.GoogleSearchServiceNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_node.IfElsePipelineNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_node.ModelNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_node.MsgHubNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_node.MsgNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_node.PlaceHolderNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_node.PythonServiceNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_node.ReActAgentNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_node.ReadTextServiceNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_node.SequentialPipelineNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_node.SwitchPipelineNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_node.UserAgentNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_node.WhileLoopPipelineNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_node.WorkflowNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_node.WorkflowNodeType": [[103, 4, 1, "", "AGENT"], [103, 4, 1, "", "COPY"], [103, 4, 1, "", "MESSAGE"], [103, 4, 1, "", "MODEL"], [103, 4, 1, "", "PIPELINE"], [103, 4, 1, "", "SERVICE"]], "agentscope.web.workstation.workflow_node.WriteTextServiceNode": [[103, 2, 1, "", "__init__"], [103, 2, 1, "", "compile"], [103, 4, 1, "", "node_type"]], "agentscope.web.workstation.workflow_utils": [[104, 6, 1, "", "deps_converter"], [104, 6, 1, "", "dict_converter"], [104, 6, 1, "", "is_callable_expression"], [104, 6, 1, "", "kwarg_converter"]]}, "objnames": {"0": ["py", "module", "Python \u6a21\u5757"], "1": ["py", "class", "Python \u7c7b"], "2": ["py", "method", "Python \u65b9\u6cd5"], "3": ["py", "property", "Python \u6258\u7ba1\u5c5e\u6027"], "4": ["py", "attribute", "Python \u5c5e\u6027"], "5": ["py", "exception", "Python \u5f02\u5e38"], "6": ["py", "function", "Python \u51fd\u6570"]}, "objtypes": {"0": "py:module", "1": "py:class", "2": "py:method", "3": "py:property", "4": "py:attribute", "5": "py:exception", "6": "py:function"}, "terms": {"0001": [54, 82], "0002": [54, 82], "001": [20, 22, 114], "0017594862": [20, 25], "002": [20, 26, 109, 114], "0023064255": [20, 26], "0028842222": [20, 26], "005519774276763201": [20, 30], "008599704": [20, 25], "009327292": [20, 26], "010071029": [20, 25], "014949671924114227": [20, 30], "019060475751757622": [20, 30], "025878139": [20, 25], "02675454691052437": [20, 30], "03": [20, 22, 119], "034d": [20, 21], "03629": [1, 7], "04": 119, "04692972": [20, 25], "04t19": [20, 25], "04t20": [54, 85], "05": [54, 82, 120], "05007221": [20, 25], "06": 41, "07": 120, "08": [20, 25, 120], "09": [54, 85], "0x16e516fb0": 124, "10": [1, 7, 41, 54, 73, 82, 84, 85, 87, 117, 120], "100": [54, 75, 76, 124], "1000": [41, 54, 87], "1009": [20, 29], "102": [20, 21], "1024": [20, 30, 54, 66, 120], "1024x1024": [54, 67, 114], "1024x1792": [54, 67], "104527_7def6u": 120, "105441414": [20, 25], "1080": [54, 56], "11": [54, 85], "1109": [54, 82], "111": [54, 85], "11186623": [20, 21], "113": [20, 29], "11434": [20, 25], "117": 120, "12": [20, 25, 26, 54, 85], "120": [54, 83], "12001": 121, "12002": 121, "123": [20, 25, 26, 114], "12345": [51, 52], "123456": [54, 85], "1247": [20, 21], "127": [20, 25, 90, 111, 120, 121, 122, 124], "1277": [20, 21], "1280": [54, 56, 66], "129": 120, "12958129": [20, 25], "12t14": [20, 25], "13": [20, 25, 41], "14": [54, 85], "15": [41, 120], "150": [54, 85], "1536": [20, 26], "1589478378": [20, 26], "1677652288": [20, 26], "17": 41, "1703487403": [20, 30], "172": 120, "1792x1024": [54, 67], "18": 123, "188": [54, 85], "1920": [54, 85], "1_code": [54, 67], "20": 120, "200": [20, 21], "2016": [54, 85], "2021": [54, 82], "2023": [20, 25, 54, 82], "2024": [20, 22, 41, 119, 120], "203": [1, 4], "2048": [20, 27], "20th": [54, 85], "21": [20, 22, 26, 120], "211862": [54, 82], "215321638": [54, 85], "2154458": [20, 25], "217": [20, 30], "22": [20, 25, 54, 85, 119], "2210": [1, 7], "23": 41, "233488": [54, 87], "24": 41, "24727": 120, "248": [20, 30], "25": [20, 21, 41], "250": [54, 85], "25395815": [54, 85], "2560": [54, 85], "256x256": [54, 67], "26": [20, 25], "27": [41, 120], "28": 41, "284z": [54, 85], "290": [20, 25], "294014": [54, 85], "298": [20, 25], "298087": [54, 85], "2ee7": [20, 21], "30": [20, 27, 41, 54, 56, 82], "300": [46, 47, 54, 58, 59], "301": 120, "31": [20, 30, 120], "32": 41, "3233": [54, 82], "325953000": [20, 25], "3306": [54, 76], "34": [41, 120], "342": [54, 85], "35": [41, 120], "37": 123, "37db858ae738": [20, 21], "38": 41, "383809000": [20, 25], "40": [41, 54, 85], "401": 91, "403": 91, "4096": 124, "413": [54, 85], "416799z": [20, 25], "42": 41, "4217": [54, 85], "43": [20, 25, 120], "43f7": [20, 21], "45": [20, 25, 41, 120], "455": [54, 82], "459b": [20, 21], "46342": [54, 85], "466": [54, 82], "4709213000": [20, 25], "4799921000": [20, 25], "48000": [54, 66], "499127z": [20, 25], "4o": [20, 26, 54, 67, 119, 120], "50": [41, 54, 85], "5000": [90, 111, 121, 122], "5025959": [20, 25], "5043500667": [20, 25], "512x512": [54, 67, 114], "5191566416": [20, 25], "53": [54, 85], "54": 120, "550": [54, 85], "574818": [54, 85], "5785971": [20, 29], "59": [54, 85], "5m": [20, 25, 114], "60": 41, "60s": [54, 56], "62": [54, 85], "6212": [20, 21], "6300": [54, 82], "639": [54, 67], "67911196": [54, 87], "7108fa70op6eqf": [20, 21], "720": [54, 66], "7200": [1, 2, 8, 51, 52, 53], "77": [20, 21, 120], "7b": 124, "7def6u": 120, "7e346eb5rvirbw": [20, 21], "7fde1f5atqsaln": [20, 21], "8000": 124, "808c": [20, 21], "81": [20, 21], "8192": [1, 2, 8, 51, 52, 53], "82374": [54, 85], "8239375684858666781": [20, 30], "8450357913970947": [20, 21], "889": 120, "890": 120, "891": 120, "891b": [20, 21], "896": [20, 29], "8b": 114, "93e0": [20, 21], "9477984": [54, 82], "957d": [20, 21], "9595": [20, 21], "9667": [20, 21], "996523eb": [20, 21], "9dac": [20, 21], "__": [38, 39, 40], "__call__": [1, 5, 20, 22, 24, 112, 113, 114, 121], "__delattr__": 118, "__fields__": [54, 56], "__getattr__": [117, 118], "__getitem__": 117, "__init__": [0, 1, 2, 3, 4, 6, 7, 8, 9, 11, 13, 14, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 40, 41, 42, 43, 44, 45, 46, 47, 49, 51, 52, 53, 54, 55, 56, 57, 58, 71, 73, 88, 89, 92, 93, 100, 102, 103, 112, 114, 117, 118, 123, 124], "__main__": [54, 56, 124], "__module__": [17, 18], "__name__": [17, 18, 54, 56, 112, 117, 124], "__serialized_attr": [17, 18], "__setattr__": [117, 118], "__setitem__": 117, "__str__": 121, "__type": 118, "_agentmeta": [1, 2, 8, 46, 47], "_code": [32, 33], "_data_to_doc": 124, "_data_to_index": 124, "_default_meta_prompt_templ": 41, "_default_system_prompt": [54, 79], "_default_token_limit_prompt": [54, 79], "_docs_to_nod": 124, "_get_timestamp": 118, "_load_index": 124, "_messag": 46, "_monitor": 120, "_parse_respons": 114, "_print_tabl": 120, "_require_auth": 91, "_upb": 46, "_welco": [54, 67], "a0dc436c": [20, 21], "a2c4g": [20, 21], "a75a1b22": [20, 21], "a_json_dictionari": 115, "aaai": [54, 82], "aaaif": [54, 82], "aac": [54, 67], "abc": [1, 5, 14, 15, 20, 21, 22, 23, 25, 26, 27, 30, 32, 35, 41, 42, 43, 103, 115, 118], "abdullah": [54, 82], "abil": [41, 110], "abort": 91, "about": [1, 4, 20, 21, 22, 41, 54, 56, 85, 102, 109], "abov": [20, 21, 22, 41], "abs": [1, 7, 54, 81], "abstract": [1, 5, 14, 15, 32, 35, 42, 43, 103], "abstractmethod": [113, 115], "abtest": 41, "ac88": [20, 21], "academ": 41, "access": [41, 91], "access_token": 91, "accident": [54, 76, 77], "accommod": [1, 2, 8, 41, 42, 43, 44, 51, 52, 53], "accompani": 41, "accord": [20, 28, 32, 36, 41], "account": [54, 76], "accur": [41, 88, 89], "accuraci": [41, 54, 67, 88, 89], "achiev": 41, "acquir": 41, "acquisit": 41, "acronym": [54, 82], "across": 41, "act": [1, 7, 20, 28, 39, 54, 84, 103, 110, 112], "action": [1, 2, 8, 41, 54, 56, 58, 99, 102, 110], "action_": 125, "action_click": [0, 54, 55, 56, 125], "action_press_key": [0, 54, 55, 56], "action_scroll_down": [0, 54, 55, 56], "action_scroll_up": [0, 54, 55, 56], "action_typ": [0, 54, 55, 56], "action_visit_url": [0, 54, 55, 56, 125], "activ": [0, 12, 41, 108, 120], "actor": [105, 107, 129], "actual": [0, 1, 7, 31, 38, 39, 40, 41], "acycl": 102, "ada": [20, 26, 109, 114], "adapt": 41, "add": [0, 1, 6, 14, 15, 16, 31, 41, 54, 58, 67, 73, 102, 110, 112, 113, 115, 116, 117, 118, 123, 127], "add_argu": 124, "add_as_nod": [100, 102], "add_data_as_knowledg": [0, 42, 44, 124], "add_rpcagentservicer_to_serv": [0, 46, 49], "added": [1, 3, 4, 6, 9, 14, 15, 16, 20, 21, 41, 102, 112, 118], "added_not": 123, "adding": [14, 15, 16, 41, 102], "addit": [1, 9, 17, 18, 19, 41, 54, 59, 79, 84, 91, 112, 117], "address": [17, 19, 41, 54, 75, 76, 85], "address_obj": [54, 85], "address_str": [54, 85], "aden": [54, 85], "adept": [41, 123], "adher": [41, 88, 89], "adjust": [41, 54, 87], "adorn": 41, "adult": 41, "advanc": [20, 21, 32, 36, 41, 42, 44, 45], "advantech": [54, 82], "adversari": [1, 2, 8], "advic": 41, "affect": [54, 67], "affili": [54, 82], "after": [1, 2, 24, 25, 41, 51, 52, 53, 54, 56, 79, 110], "again": [41, 54, 87], "age": 41, "agent": [0, 11, 17, 19, 20, 28, 31, 35, 38, 39, 40, 41, 42, 44, 46, 47, 49, 51, 52, 53, 54, 56, 73, 79, 84, 99, 100, 103, 105, 106, 108, 109, 111, 113, 114, 115, 117, 118, 123, 124, 126, 129], "agent1": [0, 31, 110, 113], "agent1_info": 121, "agent2": [0, 31, 110, 113], "agent2_info": 121, "agent3": [0, 31, 110, 113], "agent4": [110, 113], "agent5": 113, "agent_class": [1, 2, 8], "agent_class_nam": [1, 2], "agent_config": [0, 8, 46, 47, 110], "agent_dir": [51, 52], "agent_exist": [0, 51, 53], "agent_fil": 52, "agent_id": [0, 1, 2, 8, 46, 47, 49, 51, 53, 121], "agent_list": 121, "agent_memori": 121, "agenta": 121, "agentb": 121, "agentbas": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 31, 42, 44, 51, 52, 53, 110, 113, 116, 117, 121, 123], "agentcallerror": [0, 11, 106], "agentcreationerror": [0, 11, 106], "agentscop": [109, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 123, 125, 128], "agentscope_tutorial_rag": [42, 44, 124], "agentserv": [51, 52], "agentservererror": [0, 11, 106], "agentservernotaliveerror": [0, 11, 106], "agentserverservic": [0, 51, 53], "aggreg": [88, 89], "aggregator_prompt": [88, 89], "agre": 115, "agreement": 115, "ai": [20, 22, 23, 25, 45, 54, 79, 109, 112, 114, 123], "aim": 41, "akif": [54, 82], "al": 14, "album": [54, 85], "algorithm": [1, 7, 54, 82], "alic": [109, 119], "align": [20, 28, 41], "alik": 41, "aliv": [11, 46, 47, 49, 51, 53], "aliyun": [20, 21, 54, 66], "all": [0, 1, 2, 9, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23, 24, 25, 29, 30, 31, 38, 40, 41, 42, 46, 47, 49, 51, 52, 53, 54, 62, 73, 79, 81, 88, 89, 103, 110, 123, 125], "allianc": 41, "allow": [20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 32, 35, 36, 37, 54, 56, 59, 76, 77, 103], "allow_change_data": [54, 76, 77], "allow_miss": 35, "alloy": [54, 67], "alreadi": [8, 20, 28, 54, 63, 64, 103], "also": [1, 2, 3, 4, 6, 7, 8, 9, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 41, 110, 118], "altern": [20, 21, 22], "alway": 41, "amin": [20, 30], "among": [0, 31, 38, 40, 41], "an": [1, 2, 4, 5, 6, 7, 8, 11, 17, 18, 19, 20, 21, 23, 24, 27, 29, 30, 38, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 51, 52, 54, 59, 60, 62, 63, 64, 67, 79, 82, 84, 93, 98, 99, 103, 111, 112, 115, 116, 121, 123], "analys": [54, 86], "analysi": 41, "analyst": 41, "analyz": 41, "ancestor": [54, 85], "and": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 49, 51, 52, 54, 56, 58, 59, 62, 63, 64, 66, 67, 69, 73, 75, 79, 81, 82, 84, 85, 86, 87, 88, 89, 91, 93, 98, 99, 101, 102, 103, 110, 111, 112, 115, 116, 117, 118, 119, 123, 124, 125], "andnot": [54, 81], "angel": [20, 29], "ani": [1, 2, 3, 4, 6, 8, 9, 12, 13, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 32, 34, 38, 39, 40, 41, 42, 43, 45, 50, 51, 53, 54, 60, 62, 63, 64, 69, 71, 73, 75, 76, 77, 84, 86, 91, 102, 103, 117, 118], "annot": [54, 56, 117], "announc": [0, 31, 103, 110, 113], "anoth": [1, 6, 54, 84, 103], "answer": [41, 42, 43, 88, 89], "anthropic_api_key": [20, 23], "api": [0, 13, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 54, 66, 67, 73, 79, 81, 82, 84, 85, 93, 94, 107, 108, 109, 112, 116, 117, 118, 119, 120, 121, 123, 129], "api_key": [20, 21, 22, 24, 26, 29, 30, 54, 66, 67, 73, 84, 85, 109, 110, 114, 117, 119, 123], "api_token": 24, "api_url": [20, 24, 27, 114, 124], "app": 124, "appeal": 41, "appear": 41, "append": [14, 15, 16, 17, 18], "applic": [35, 41, 42, 44, 91, 98, 99, 101, 111, 121], "approach": [41, 54, 82], "appropri": [41, 54, 56], "arc": 41, "archaic": 41, "are": [1, 2, 7, 8, 14, 15, 16, 17, 18, 20, 21, 22, 23, 24, 25, 29, 30, 32, 36, 37, 38, 39, 40, 41, 51, 52, 54, 56, 59, 60, 73, 79, 85, 86, 93, 102, 109, 110, 111, 117, 119, 123, 125], "area": 41, "arg": [1, 2, 3, 4, 6, 7, 8, 9, 13, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 42, 43, 46, 47, 54, 73, 102, 110, 112, 113, 117, 118, 124], "argpars": 124, "argument": [0, 1, 2, 7, 11, 13, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 51, 52, 54, 58, 59, 71, 73, 84, 101, 102, 117], "argument1": 117, "argument2": 117, "argumentnotfounderror": [0, 11, 106], "argumentpars": 124, "argumenttypeerror": [0, 11, 106], "aria": [54, 56], "aria_label": [0, 54, 55, 56], "arm": 41, "around": 41, "array": 13, "arrowdown": [54, 56], "arrowright": [54, 56], "arrowup": [54, 56], "art": 41, "arthur": 41, "articl": [54, 82], "articul": 41, "artifici": [54, 82], "arxiv": [1, 7, 54, 80, 117], "arxiv_search": [0, 54, 80, 81, 117], "as": [0, 1, 2, 4, 6, 7, 8, 9, 14, 15, 16, 17, 18, 20, 21, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 36, 37, 38, 39, 40, 41, 46, 47, 49, 51, 52, 53, 54, 56, 59, 60, 67, 79, 86, 87, 88, 89, 91, 93, 97, 98, 102, 103, 109, 110, 112, 113, 114, 115, 116, 117, 118, 124], "as_host": 122, "as_port": 122, "as_serv": [0, 51, 52, 121], "as_studio": 122, "as_workflow": 122, "asdigraph": [95, 100, 102], "asia": [54, 85], "ask": [32, 36, 37, 41], "aslan": [54, 82], "asmanag": [0, 13], "asp": [54, 84], "aspir": 41, "asr": 99, "assert": 121, "assign": 110, "assist": [1, 2, 7, 17, 18, 19, 20, 21, 23, 24, 25, 26, 29, 30, 109, 112, 115, 116, 118, 119, 123], "associ": [54, 85, 91, 102], "assum": [41, 54, 84, 110], "astut": 41, "astyp": 124, "async": [54, 58], "async_run_code_on_notebook": [0, 54, 57, 58], "asynchron": [54, 56], "at": [0, 14, 15, 16, 31, 41, 54, 62, 67, 99, 110, 123, 124], "attach": [20, 21, 32, 36, 41], "attempt": 110, "attent": 41, "attitud": 41, "attract": [41, 54, 85], "attraction_review": [54, 85], "attribut": [14, 16, 17, 19, 54, 56, 82, 118], "attributeerror": 118, "au": [54, 81], "audienc": [1, 2, 41], "audio": [13, 20, 21, 54, 66, 67, 98, 99, 114, 118, 119], "audio2text": [95, 96, 99], "audio_fil": [54, 67], "audio_file_url": [54, 67], "audio_path": [54, 66, 67, 99], "audio_term": 98, "augment": 43, "authent": [54, 84, 91, 117], "author": [24, 54, 81, 82, 91, 114], "authorit": 41, "auto": [51, 53, 124], "automat": [1, 2, 54, 73, 110, 121], "avail": [20, 22, 28, 54, 59, 82, 93, 99, 117, 121], "avatar": 99, "avoid": [13, 41, 54, 75, 76, 77, 103], "award": [54, 85], "azur": [20, 23], "azure_api_bas": [20, 23], "azure_api_key": [20, 23], "azure_api_vers": [20, 23], "b340b95007a4": [20, 21], "b3771cba3788": [20, 21], "b54ffeb8": [20, 21], "b986": [20, 21], "background": 41, "backquot": [54, 56], "backslash": [54, 56], "backspac": [54, 56], "balanc": 41, "band": 41, "bank": [1, 6, 42, 44], "bard": 41, "base": [1, 2, 5, 8, 9, 11, 14, 15, 18, 20, 22, 23, 24, 25, 27, 32, 33, 35, 38, 39, 40, 41, 42, 43, 45, 54, 66, 67, 82, 99, 101, 102, 103, 110, 112, 114, 115, 118, 123], "base64": 119, "base_dir": 120, "base_url": [20, 30], "baseembed": 45, "basemodel": [54, 56, 115], "baseretriev": 45, "bash": [54, 60, 124], "basic": [20, 22, 41, 45], "batch": 43, "battl": 41, "battlefield": 41, "bayesian": [54, 87], "be": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 40, 41, 42, 43, 44, 45, 46, 47, 51, 52, 53, 54, 56, 58, 59, 60, 62, 63, 64, 66, 67, 69, 73, 79, 84, 85, 86, 88, 89, 93, 102, 103, 110, 112, 115, 117, 118, 121], "bearer": [24, 114], "beauti": [54, 66], "becam": 41, "becaus": [13, 20, 25, 54, 56], "been": [1, 2, 13, 20, 28, 88, 89, 103], "befit": 41, "befor": [13, 14, 15, 16, 41, 54, 73, 79, 99], "begin": [0, 11, 20, 22, 31, 32, 33, 37, 41], "behalf": [54, 84], "behavior": [1, 5], "behind": 41, "being": [41, 46, 47, 54, 59, 102, 110], "believ": 41, "below": [1, 2, 32, 37, 115], "beta": 6, "better": [14, 16, 20, 22, 41, 88, 89], "between": [14, 16, 20, 21, 27, 28, 32, 33, 34, 37, 54, 70, 102, 115, 119], "bias": [41, 88, 89], "bigmodel": [20, 30], "bin": 108, "binari": 13, "bing": [54, 56, 73, 84, 103, 117, 125], "bing_api_key": [54, 84], "bing_search": [0, 54, 73, 80, 84, 117], "bingsearchservicenod": [95, 100, 103], "bingwebsearch": 41, "bite": 41, "blank": 41, "blob": [20, 25, 58, 59, 93], "block": [1, 6, 13, 32, 33, 34, 54, 58, 93, 115], "blue": [20, 25], "blueprint": [20, 30], "blunt": 41, "bob": [20, 21, 23, 24, 25, 29, 30, 109, 119], "bodi": [20, 22, 38, 39, 40], "bomb": 59, "book": 41, "bool": [0, 1, 2, 3, 4, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23, 25, 26, 28, 29, 30, 32, 34, 35, 36, 37, 38, 39, 40, 42, 43, 44, 45, 46, 47, 50, 51, 52, 53, 54, 56, 59, 63, 64, 69, 73, 76, 77, 85, 86, 88, 89, 90, 99, 103, 104, 112, 115, 117, 118], "boolean": [14, 16, 54, 62, 63, 64, 81, 115], "boost": 41, "borrow": 93, "both": [14, 15, 16, 41, 54, 59, 85, 88, 89], "bound": 41, "branch": [39, 127], "brave": 41, "braveri": 41, "break": [38, 39, 40, 109, 110, 113, 115], "break_condit": 113, "break_func": [38, 39, 40], "breviti": [112, 117], "bridg": [20, 28], "bring": 41, "broadcast": [0, 31, 103, 110, 113], "brows": [54, 84], "browser": [0, 54, 125], "browser_height": [54, 56], "browser_vis": [54, 56], "browser_width": [54, 56], "budget": 41, "buffer": 48, "build": [1, 6, 20, 22, 41, 45, 102], "build_dag": [95, 100, 102], "built": [54, 79], "burgeon": 41, "busi": [41, 54, 84, 85], "but": [0, 1, 7, 31, 41, 54, 60, 69, 79, 88, 89], "by": [0, 1, 2, 3, 4, 6, 8, 9, 13, 14, 15, 16, 17, 18, 20, 21, 24, 25, 28, 31, 32, 33, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 51, 53, 54, 56, 62, 73, 79, 81, 88, 89, 91, 103, 110, 112, 117, 125], "bygon": 41, "byte": [13, 54, 56, 59], "c462009dec4d": [20, 21], "cach": [0, 1, 2, 13, 51, 52, 53, 120, 123], "cache_dir": [0, 13, 120], "cache_text_embed": [0, 13], "cacheagentscop": 0, "cai": [54, 82], "call": [1, 2, 8, 11, 13, 17, 18, 19, 20, 21, 22, 23, 24, 26, 27, 29, 30, 41, 46, 47, 49, 51, 53, 54, 56, 58, 67, 73, 93, 102, 103, 118, 125], "call_agent_func": [0, 46, 47, 49, 51, 53], "call_credenti": 49, "call_in_thread": [0, 46, 47], "callabl": [1, 5, 14, 15, 16, 38, 39, 40, 41, 54, 56, 69, 73, 86, 98, 102, 104, 118], "calm": 41, "campaign": 41, "can": [0, 1, 2, 3, 4, 6, 7, 8, 9, 14, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 29, 30, 32, 36, 37, 41, 42, 44, 45, 51, 52, 53, 54, 56, 59, 66, 73, 82, 85, 88, 89, 102, 103, 112, 118, 121], "candid": 41, "cannot": [1, 7, 42, 43], "capabl": 41, "capac": [54, 84], "captain": 41, "caption": [54, 85], "captiv": 41, "captur": [41, 54, 59], "care": [54, 60], "career": 41, "carri": 41, "case": [38, 40, 41, 51, 52, 103, 112], "case1": 113, "case2": 113, "case_oper": [38, 39, 40, 113], "castl": 41, "cat": [54, 60, 81, 119], "categori": [41, 54, 85, 87], "caus": [20, 21, 41], "cautious": 41, "cd": [54, 60, 108, 110, 125, 127], "cdn": [54, 85], "cell": [54, 58], "cells_length": [0, 54, 57, 58], "ceo": 41, "certain": [11, 14, 15, 41, 102], "chain": [1, 7], "challeng": 41, "chang": [1, 4, 41, 54, 56, 60, 76, 77, 93], "channel": [46, 49], "channel_credenti": 49, "chao": [54, 82], "charact": [32, 37, 41, 110], "characterist": 41, "chat": [12, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 94, 98, 99, 109, 110, 116, 117, 118, 119], "chatbot": [41, 98], "chatcmpl": [20, 26], "check": [13, 14, 15, 16, 32, 34, 46, 47, 49, 50, 51, 53, 54, 59, 73, 86, 91, 99, 101, 104, 110, 112], "check_uuid": [95, 96, 99], "check_win": 110, "checkout": 127, "chemic": [54, 84], "chengm": [54, 82], "child": 121, "children": 41, "chines": [41, 54, 82, 85], "chinesesystempromptgener": [0, 41, 123], "chivalr": 41, "chivalri": 41, "choic": [1, 6, 20, 21, 23, 26, 29, 30, 114], "choos": [1, 6, 41, 109, 110, 121], "chosen": [17, 18, 19, 41, 54, 56], "chunk": [1, 2, 43], "chunk_lin": 124, "chunk_overlap": 124, "chunk_siz": 124, "citi": [54, 67, 85], "clarifi": 41, "clariti": 41, "class": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 40, 41, 42, 43, 44, 45, 46, 47, 49, 51, 52, 53, 54, 56, 58, 71, 72, 73, 88, 89, 93, 102, 103, 110, 112, 113, 114, 115, 116, 117, 118, 121, 122, 123, 124], "classmethod": [1, 2, 13, 17, 18, 19, 20, 24, 51, 52, 54, 73], "classvar": [54, 56], "claud": [20, 23], "clean": [14, 15, 16, 102], "clear": [0, 13, 14, 15, 16, 41, 46, 49, 51, 53, 118], "clear_audi": [0, 1, 2], "clear_exist": 13, "clear_model_config": [0, 13], "click": [54, 56], "clickabl": [54, 56], "client": [8, 17, 19, 20, 26, 30, 41, 46, 47, 49, 114, 121], "client_arg": [20, 24, 26, 30, 114], "climax": 41, "clone": [8, 46, 47, 49, 51, 53, 108, 125], "clone_ag": [0, 46, 47, 49, 51, 53], "clone_inst": [1, 8], "close": [0, 32, 34, 54, 55, 56], "cloud": [20, 22], "clspipelin": 113, "clue": 41, "cmpl": [20, 29], "cn": [20, 22, 30], "co": [54, 81], "coach": 41, "code": [0, 1, 2, 3, 4, 13, 20, 21, 31, 32, 33, 34, 41, 48, 54, 56, 58, 59, 85, 86, 93, 101, 102, 103, 112, 115, 121], "code_block_pars": [0, 32], "code_dir": [0, 13], "codesplitt": 124, "coher": [88, 89], "colleagu": 41, "collect": [41, 54, 75, 88, 89, 103, 112], "color": [17, 18, 20, 25], "com": [20, 21, 22, 25, 26, 29, 45, 54, 56, 58, 59, 66, 67, 81, 84, 85, 88, 89, 93, 108, 117, 118, 119, 124, 125, 127], "combat": 41, "combin": [20, 22, 41], "command": [41, 51, 52, 54, 60, 99, 101], "comment": 41, "commit": [41, 127], "common": [0, 5, 20, 21, 23, 24, 30, 54, 61, 92], "communic": 41, "compar": [32, 36, 41, 54, 69], "compare_in_dialog": [0, 41, 123], "compare_with_queri": [0, 41, 123], "compared_system_prompt": [41, 123], "comparison": [54, 82], "compat": [20, 27], "compel": 41, "compet": 41, "competit": 41, "competitor": 41, "compil": [100, 102, 103, 122], "compile_workflow": [95, 100, 101], "compiled_filenam": [101, 102], "complet": [20, 23, 25, 26, 29, 41, 42, 44, 54, 82, 117, 120], "completion_token": [13, 20, 23, 26, 29, 30, 120, 124], "complex": 41, "compli": [41, 101], "compon": [42, 43, 45], "compos": 45, "comprehens": [41, 88, 89], "compress": 49, "comput": [14, 16, 54, 56, 70, 82, 102], "computedfieldinfo": [54, 56], "comrad": 41, "conan": 41, "concept": 45, "conceptu": 41, "concern": 41, "concis": 41, "conclus": 41, "condit": [38, 39, 40, 41, 103, 110, 113], "condition_func": [38, 39, 40], "condition_oper": [38, 40], "conduct": 41, "conf": [54, 82], "confer": [54, 82], "confid": [54, 59], "confidenti": 41, "config": [0, 1, 2, 3, 4, 6, 7, 8, 13, 20, 21, 23, 24, 26, 30, 41, 42, 44, 46, 47, 49, 51, 52, 53, 54, 56, 88, 89, 101, 102, 109, 110, 114, 121, 122], "config_nam": [0, 13, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 109, 110, 114, 116, 119, 121, 123, 124], "config_path": 101, "configdict": [54, 56], "configur": [1, 2, 3, 4, 7, 13, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 41, 42, 43, 44, 45, 54, 56, 90, 101, 102, 103, 112], "conflict": 41, "conform": [54, 56], "connect": [1, 2, 17, 19, 46, 47, 102, 121, 122], "connect_exist": 8, "consid": 41, "consider": [20, 22], "consist": [41, 110], "constant": [0, 95, 96, 106], "constraint": [20, 22, 41], "construct": [32, 36, 41, 54, 58, 102, 118], "constructor": [32, 36, 41, 46, 49, 54, 71, 117], "consult": 41, "consum": 41, "contain": [0, 1, 7, 17, 18, 24, 25, 32, 36, 37, 38, 39, 40, 41, 51, 52, 54, 59, 60, 62, 63, 64, 66, 67, 75, 76, 77, 79, 82, 83, 87, 101, 102], "content": [2, 6, 7, 9, 11, 18, 19, 21, 23, 24, 25, 26, 29, 30, 33, 34, 35, 36, 37, 43, 45, 56, 62, 63, 64, 66, 67, 71, 79, 81, 82, 84, 85, 86, 87, 94, 106, 107, 109, 110, 111, 112, 114, 115, 116, 117, 118, 119, 121], "content1": [32, 36], "content2": [32, 36], "content_hint": [0, 32, 33, 34, 37, 110, 115], "contentembed": [20, 22], "context": [20, 25, 41, 46, 49, 51, 53, 54, 56, 93], "contextmanag": 93, "continu": [38, 39, 40, 41], "contribut": [88, 89], "control": [20, 25, 35, 38, 39, 40, 41, 125], "convers": [14, 16, 20, 21, 22, 23, 24, 25, 29, 30, 41, 54, 67, 73, 109, 110, 114, 119], "conversation_with_rag_ag": [42, 44], "convert": [1, 2, 20, 21, 32, 34, 45, 54, 66, 67, 73, 93, 98, 99, 104], "convert_url": [0, 20, 21], "convey": 41, "cook": 41, "cookbook": 118, "coordin": [54, 56], "copi": [42, 44, 100, 103], "copynod": [95, 100, 103], "copyright": 41, "core": [41, 45, 112, 124], "correct": [41, 54, 56], "correspond": [1, 6, 32, 34, 35, 36, 37, 38, 39, 40, 41, 49, 54, 56, 75, 114], "cos_sim": [0, 54, 68, 70, 117], "cosin": [54, 70], "cost": 41, "could": [20, 23, 41, 54, 84], "counselor": 41, "count": [94, 120], "count_openai_token": [0, 92, 94], "counterpart": 39, "countri": [54, 85], "coupl": [54, 85], "cours": [32, 36], "court": 41, "courteous": 41, "cover": [0, 41], "cpu": [114, 121, 122, 123], "craft": 41, "creat": [0, 1, 2, 9, 11, 17, 18, 19, 20, 23, 26, 29, 30, 31, 41, 46, 47, 49, 51, 53, 54, 62, 67, 93, 103, 108, 112, 117, 121, 122, 124], "create_ag": [0, 46, 47, 49, 51, 53], "create_directori": [0, 54, 61, 62, 117], "create_fil": [0, 54, 61, 62, 117], "create_object": 124, "create_tempdir": [0, 92, 93], "create_timestamp": 124, "createagentrequest": [51, 53], "created_at": [20, 25], "creation": [46, 47], "creativ": 41, "creator": 41, "crime": 41, "crimin": 41, "critic": [0, 12, 13, 88, 89, 111], "crown": 41, "crucial": [41, 88, 89, 110], "crucibl": 41, "crusad": 41, "cse": [54, 84], "cse_id": [54, 84], "csv": 124, "cuisin": 41, "culinari": 41, "cultiv": 41, "cultur": 41, "cun": 41, "currenc": [41, 54, 85], "current": [1, 2, 3, 4, 6, 14, 15, 16, 38, 39, 40, 41, 54, 56, 59, 60, 62, 79, 93, 118, 124], "custom": [41, 42, 44, 51, 52, 54, 84, 99, 112, 121], "custom_agent_class": [51, 52, 121], "cut": 41, "cycle_dot": [95, 96, 99], "dag": [102, 107], "daili": 41, "dall": [20, 26, 54, 67, 114, 120], "dall_": 27, "dashscop": [20, 21, 54, 66, 116, 117, 119], "dashscope_chat": [20, 21, 114, 116], "dashscope_image_synthesi": [20, 21, 114], "dashscope_image_to_text": [0, 54, 65, 66, 117], "dashscope_model": [0, 20], "dashscope_multimod": [20, 21, 114], "dashscope_servic": [54, 65], "dashscope_text_embed": [20, 21, 114], "dashscope_text_to_audio": [0, 54, 65, 66, 117], "dashscope_text_to_imag": [0, 54, 65, 66, 117], "dashscopechatwrapp": [0, 20, 21, 114, 116], "dashscopeimagesynthesiswrapp": [0, 20, 21, 114], "dashscopemultimodalwrapp": [0, 20, 21, 114], "dashscopetextembeddingwrapp": [0, 20, 21, 114], "dashscopewrapperbas": [0, 20, 21], "data": [1, 3, 4, 6, 13, 15, 20, 26, 28, 30, 41, 42, 43, 44, 45, 46, 47, 54, 56, 63, 69, 76, 77, 82, 85, 98, 102, 103, 112, 114, 119, 124], "data_dirs_and_typ": [42, 44, 124], "data_process": 124, "databas": [13, 41, 42, 43, 45, 54, 75, 76, 77, 82], "date": [20, 21, 23, 24, 25, 29, 30, 41], "datetim": 124, "day": 110, "daytim": 110, "db": [54, 82, 120], "dblp": [54, 80, 117], "dblp_search_author": [0, 54, 80, 82, 117], "dblp_search_publ": [0, 54, 80, 82, 117], "dblp_search_venu": [0, 54, 80, 82, 117], "dead": 122, "dead_nam": 110, "dead_play": 110, "death": 110, "debug": [0, 12, 13, 90, 110, 111], "decid": [14, 15, 20, 22, 110], "decis": [20, 22, 41], "decod": [1, 4, 91], "decode_jwt": [0, 90, 91], "decor": 91, "dedic": 41, "deduc": [41, 110], "deed": 41, "deep": [41, 54, 81], "deepcopi": [42, 44], "deepli": 41, "def": [54, 73, 110, 112, 113, 114, 115, 116, 117, 118, 123, 124], "default": [0, 1, 2, 3, 4, 6, 7, 8, 9, 11, 12, 13, 14, 16, 17, 18, 19, 20, 21, 22, 23, 25, 26, 27, 29, 30, 31, 32, 34, 36, 37, 38, 39, 40, 41, 42, 43, 45, 46, 47, 51, 52, 53, 54, 56, 58, 59, 64, 66, 67, 69, 73, 75, 76, 77, 79, 81, 82, 83, 84, 85, 88, 89, 90, 99, 102, 103, 117, 118, 124], "default_ag": 113, "default_oper": [38, 39, 40], "defend": 41, "defin": [1, 2, 5, 8, 41, 42, 44, 49, 54, 56, 69, 73, 102, 110, 112], "definit": [54, 84], "del": 118, "delet": [0, 1, 2, 14, 15, 16, 31, 46, 47, 49, 51, 52, 53, 54, 56, 62, 110, 113, 118], "delete_ag": [0, 46, 47, 49, 51, 53, 121], "delete_all_ag": [0, 46, 47, 49, 51, 53, 121], "delete_directori": [0, 54, 61, 62, 117], "delete_fil": [0, 54, 61, 62, 117], "demeanor": 41, "dep_opt": 103, "dep_var": 104, "depart": [54, 82], "depend": [14, 15, 16, 54, 81, 84, 85, 102], "deploy": [20, 27], "deprec": [1, 2], "deprecated_model_typ": [0, 20, 21, 26, 27], "deps_convert": [95, 100, 104], "depth": 41, "describ": [54, 66, 67, 73, 119], "descript": [41, 54, 67, 73, 86, 115, 117], "descriptor": [0, 46], "deseri": [0, 14, 15, 16, 17, 18, 50, 106], "design": [1, 5, 6, 14, 15, 16, 31, 41, 45, 54, 56, 103], "desir": 41, "despit": 41, "destin": [41, 54, 62], "destination_path": [54, 62], "destruct": 59, "detail": [1, 2, 7, 9, 20, 21, 23, 41, 54, 56, 66, 67, 82, 84, 85, 112, 117], "detect": 41, "determin": [38, 39, 40, 41, 54, 59], "detriment": 41, "dev": [20, 22, 30, 127], "develop": [1, 4, 7, 20, 21, 23, 24, 25, 29, 30, 41, 54, 56, 73, 84], "deviat": 41, "devic": 124, "devot": 41, "di": 58, "diagnosi": [54, 82], "dialog": [1, 3, 4, 31, 41, 118, 119, 123], "dialog_ag": [0, 1, 109], "dialog_agent_config": 112, "dialog_histori": 41, "dialogag": [0, 1, 3, 103, 109], "dialogagentnod": [95, 100, 103], "dialogu": [1, 3, 4, 6, 41, 111, 112], "dict": [0, 1, 2, 3, 4, 6, 7, 8, 9, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 54, 56, 63, 66, 67, 69, 71, 73, 75, 84, 86, 91, 93, 99, 101, 102, 103, 104, 112, 113, 114, 115, 117, 118, 124], "dict_convert": [95, 100, 104], "dict_dialog_ag": [0, 1], "dict_input": 117, "dictdialogag": [0, 1, 4, 103, 110, 112, 115], "dictdialogagentnod": [95, 100, 103], "dictfiltermixin": [0, 32, 34, 35, 36, 37], "diction": 41, "dictionari": [4, 13, 17, 18, 19, 20, 21, 23, 26, 32, 34, 35, 36, 37, 38, 39, 40, 41, 42, 44, 54, 56, 66, 67, 73, 81, 82, 84, 85, 99, 101, 102, 104, 115, 117], "didn": 115, "diet": 41, "dietari": 41, "differ": [1, 7, 8, 12, 13, 20, 22, 23, 24, 28, 32, 36, 41, 43, 54, 70, 75, 88, 89, 103, 114, 119, 123], "difficulti": 41, "digest": [54, 86], "digest_prompt": [54, 86], "digest_webpag": [0, 54, 80, 86, 117], "digit0": [54, 56], "digit9": [54, 56], "digraph": 102, "dine": 41, "dingtalk": 128, "dinner": 41, "diplomaci": 41, "dir": [0, 45, 51, 52, 121], "direcotri": [54, 62], "direct": [1, 6, 32, 34, 35, 37, 41, 42, 43, 54, 58, 59, 73, 102, 103, 119, 124], "director": 41, "directori": [0, 1, 9, 12, 13, 42, 44, 45, 51, 52, 54, 60, 62, 63, 64, 66, 67, 90, 93], "directory_path": [54, 62], "disabl": [0, 54, 59], "disable_gradio": 12, "disable_sav": [0, 13, 120], "disciplin": 41, "disclos": 41, "discord": 128, "discours": 41, "discover": 41, "discuss": [20, 22, 41, 110, 115], "dish": 41, "disk": [14, 16], "display": [32, 34, 41, 54, 59, 99], "disput": 41, "distconf": [0, 1, 2, 121], "distinct": [41, 103], "distribut": [1, 2, 13, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 42, 44, 52, 53, 108], "div": [54, 86], "divers": [88, 89], "divid": 110, "do": [38, 39, 40, 41, 54, 60, 84, 85, 110], "do_someth": 121, "doc": [20, 22, 23, 25, 26, 29, 42, 44, 45, 67, 107, 114, 124], "docker": [54, 59, 117], "docstr": [54, 73], "document": [41, 42, 43, 45, 66, 67, 124], "doe": [14, 15, 38, 39, 40, 41], "doesn": [1, 2, 3, 4, 6, 8, 9, 13, 14, 16], "dog": 119, "doi": [54, 82], "domest": 41, "don": [13, 118], "done": [20, 25], "dong": [54, 82], "dot": 99, "down": [54, 56], "download": [25, 46, 47, 51, 53, 54, 80], "download_fil": [0, 46, 47, 49, 51, 53], "download_from_url": [0, 54, 80, 83, 117], "draw": [20, 30], "dream": 41, "dri": 41, "drive": 41, "due": [32, 37], "dump": [117, 118, 120], "duplic": [42, 44, 102, 103, 124], "durdu": [54, 82], "dure": [1, 7, 11, 35, 41, 110], "duti": 41, "dynam": [32, 36, 41, 110], "e512": [20, 21], "ea89ae83": [20, 29], "each": [0, 1, 6, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 37, 41, 51, 53, 54, 58, 82, 84, 85, 88, 89, 102, 110], "earn": 41, "easi": [0, 1, 6, 31, 41, 42, 44], "easier": 44, "easili": [41, 110], "echo": [17, 18, 54, 67, 118], "edg": 102, "edit": [54, 60, 67], "edited_image_url1": [54, 67], "edited_image_url2": [54, 67], "educ": 41, "effect": [0, 1, 2, 31, 41, 54, 84], "effici": 41, "effort": 41, "eiffel": [54, 85], "either": [14, 15, 16, 20, 22, 54, 60, 84, 85, 110], "eleg": [0, 31, 41], "element": [20, 30, 54, 56, 59, 69, 86, 102], "element_id": [54, 56], "elementari": 41, "elif": [113, 116], "elimin": [41, 110], "els": [38, 39, 40, 41, 103, 110, 113, 116, 117, 118], "else_body_oper": [38, 39, 40], "emb": [14, 16, 41, 54, 69, 124], "emb_model": [42, 43, 45], "emb_model_config_nam": 124, "emb_model_nam": [42, 44, 124], "embed": [13, 14, 16, 20, 21, 22, 25, 26, 27, 28, 30, 41, 42, 43, 44, 45, 54, 69, 70, 109, 114, 117, 118, 120, 123], "embed_model_config_nam": [41, 123], "embedding_cache_dir": [0, 13], "embedding_model": [13, 14, 16, 54, 69], "emblemat": 41, "embodi": 41, "emma": 41, "emot": 41, "empathet": 41, "empir": [88, 89], "employ": 41, "empti": [20, 25, 51, 53, 54, 73, 86, 98, 102, 117, 119], "en": [1, 4, 42, 44, 45, 54, 67, 84, 85, 117, 124], "enabl": [20, 23, 25, 26, 30, 42, 44, 45, 90, 103], "encapsul": [1, 9, 20, 28], "enclos": 41, "encod": [91, 124], "encoding_format": 114, "encount": 111, "encourag": [1, 7, 20, 21, 23, 24, 25, 29, 30, 41, 88, 89], "end": [1, 7, 11, 14, 15, 16, 20, 22, 32, 33, 34, 36, 37, 41, 54, 56, 58, 102, 110, 115], "end_discuss": 115, "endow": 41, "engag": 41, "engin": [1, 7, 20, 21, 23, 24, 25, 29, 30, 41, 54, 73, 82, 84, 102, 112, 123], "english": 41, "englishsystempromptgener": [0, 41, 123], "enhanc": [41, 88, 89], "enjoy": 41, "enrich": 112, "ensur": [41, 54, 56, 88, 89], "enter": [54, 56], "entiti": [54, 87], "entj": 41, "entri": [0, 54, 56, 85, 90, 98], "enum": [10, 54, 72, 81, 82, 84, 85, 103], "environ": [1, 2, 8, 20, 22, 23, 26, 30, 54, 59, 109, 114, 124], "equal": [32, 37, 54, 56, 110], "equip": [0, 1, 6, 41, 42, 44, 124], "era": 41, "error": [0, 11, 12, 13, 20, 21, 41, 54, 59, 60, 62, 63, 64, 71, 72, 75, 76, 77, 79, 81, 82, 83, 84, 85, 91, 93, 111, 117], "escap": [32, 37, 54, 56], "especi": [41, 54, 59], "essenc": 41, "essenti": [54, 56], "estim": 41, "estj": 41, "etc": [20, 29, 41, 54, 56, 59, 71, 84, 114, 117], "ethic": 41, "europ": 41, "evafalleth": [54, 85], "eval": [59, 93], "eval_count": [20, 25], "eval_dur": [20, 25], "evalu": [88, 89, 102, 103], "even": 41, "event": [51, 53, 98, 110], "eventdata": 98, "everi": 41, "evid": 41, "evok": 41, "exam": 41, "exampl": [1, 2, 4, 6, 7, 20, 21, 23, 24, 25, 29, 30, 32, 34, 41, 42, 44, 45, 54, 58, 67, 79, 81, 84, 85, 86, 87, 107, 110, 116, 118, 119, 121], "example_dict": 115, "example_list": [41, 123], "example_num": [41, 123], "example_prompt_templ": 41, "example_selection_strategi": [41, 123], "exceed": [1, 2, 9, 11, 41, 51, 52, 53, 54, 59, 79], "excel": 41, "except": [0, 20, 27, 32, 36, 41, 99, 105, 106, 117, 118], "exchang": 41, "exec_nod": [100, 102], "exec_notebook": [54, 57], "exec_python": [54, 57], "exec_shel": [54, 57], "execut": [1, 5, 7, 38, 39, 40, 41, 54, 56, 58, 59, 60, 71, 72, 73, 75, 76, 77, 83, 84, 87, 93, 102, 103, 117], "execute_cod": [0, 54], "execute_nb_cod": 58, "execute_python_cod": [0, 54, 57, 59, 117], "execute_shell_command": [0, 54, 57, 60], "exercis": 41, "exert": [54, 84], "exeuct": [38, 39], "exist": [1, 2, 20, 21, 28, 32, 34, 51, 53, 54, 63, 64, 86], "existing_ag": 113, "exit": [1, 2, 41, 109, 121, 123], "expect": [1, 4, 41, 45, 54, 69, 111], "experi": 41, "experienc": 41, "expert": [41, 123], "expertis": 41, "expir": [1, 2, 51, 52, 53, 91], "explain": 41, "explan": 41, "explanatori": [54, 73], "explicit": [41, 54, 84], "exploit": 41, "export": [0, 14, 15, 16, 118, 124], "expos": 35, "express": [41, 102, 104], "extend": [8, 102], "extens": [41, 42, 44], "extra": [20, 21, 23, 25, 26, 30, 93], "extract": [20, 24, 32, 33, 36, 37, 41, 54, 56, 73, 86, 103], "extract_name_and_id": 110, "extras_requir": 93, "extrem": [41, 54, 82], "f1": [54, 56], "f12": [54, 56], "fabl": [41, 54, 67], "facilit": 125, "fact": 41, "factor": 41, "factori": [54, 73], "fail": [1, 4, 11, 20, 21, 27, 51, 53, 54, 82], "failur": 41, "fair": 41, "fall": [54, 82], "fals": [0, 1, 2, 7, 8, 9, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23, 25, 26, 29, 30, 32, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 49, 51, 52, 54, 56, 59, 63, 64, 73, 76, 77, 85, 86, 88, 89, 90, 99, 103, 110, 115, 118, 120, 121, 124], "falsehood": 41, "famili": [54, 85], "familiar": 41, "faq": 82, "fast": [42, 44], "fastchat": [20, 27, 110, 114], "fat": 41, "fatih": [54, 82], "fault": [54, 82], "favor": 41, "fd564688": [20, 21], "feasibl": 41, "featur": [41, 127], "fed": 35, "feed": [54, 79, 86], "feedback": 41, "feel": 41, "fenc": [32, 33, 34, 115], "festiv": 41, "fetch": [13, 82], "fetch_cached_text_embed": [0, 13], "field": [1, 2, 4, 7, 9, 11, 20, 21, 22, 25, 28, 32, 33, 34, 35, 36, 37, 51, 53, 54, 56, 86, 115], "fieldinfo": [54, 56], "fierc": 41, "fig_path": [54, 66], "fight": 41, "figur": [20, 21], "figure1": [20, 21], "figure2": [20, 21], "figure3": [20, 21], "file": [0, 1, 6, 9, 12, 13, 14, 15, 16, 20, 21, 24, 42, 44, 46, 47, 49, 51, 52, 53, 54, 59, 60, 67, 83, 86, 99, 101, 110, 117, 118, 120], "file_dir": [0, 13], "file_path": [14, 15, 16, 54, 62, 63, 64, 117, 118], "filemanag": [0, 13], "filenam": 13, "filenotfounderror": 101, "filepath": [54, 83], "filesystem": 59, "fill": [1, 2, 32, 34, 41, 54, 86], "filter": [1, 4, 14, 15, 16, 32, 34, 35, 36, 37], "filter_func": [14, 15, 16, 118], "final": [32, 37, 45, 88, 89, 102], "financi": 41, "find": [41, 54, 60, 75, 85], "fine": 111, "finish": [0, 1, 7, 115], "finish_discuss": [110, 115], "finish_reason": [20, 21, 23, 26, 29, 30], "firm": 41, "first": [14, 15, 16, 20, 21, 25, 31, 54, 58, 81, 82, 87, 102, 110, 119], "fit": [1, 7, 41], "fix": [32, 36], "flac": [54, 67], "flask": [114, 124], "flask_model": 124, "flavor": 41, "flexibl": [32, 36], "fli": 45, "float": [13, 14, 16, 20, 26, 29, 54, 56, 59, 67, 69, 70, 93, 114, 124], "flow": [38, 39, 40, 103, 111], "flush": [0, 13, 99], "fn_choic": [95, 96, 98], "focus": 41, "foe": 41, "follow": [0, 1, 7, 12, 20, 21, 22, 23, 24, 25, 27, 29, 30, 31, 32, 33, 36, 38, 40, 41, 43, 51, 52, 54, 56, 79, 82, 84, 85, 115, 116, 117], "food": 41, "for": [0, 1, 2, 4, 5, 6, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 51, 52, 53, 54, 56, 58, 59, 62, 63, 64, 66, 67, 69, 70, 72, 73, 75, 79, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 93, 98, 102, 103, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 124], "forc": [54, 84], "forecast": 41, "fork": 59, "forlooppipelin": [0, 38, 39, 40, 122], "forlooppipelinenod": [95, 100, 103], "form": 41, "formal": 41, "format": [0, 1, 3, 4, 6, 9, 10, 11, 17, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 36, 37, 41, 42, 43, 54, 56, 59, 67, 73, 79, 94, 110, 112, 114, 115, 117, 119, 123], "format_": 124, "format_exampl": [32, 34], "format_for_common_chat_model": [0, 20, 24], "format_instruct": [0, 32, 33, 34, 36, 37, 115], "format_map": 110, "formatted_str": [0, 17, 18], "former": [51, 53], "forthright": 41, "forward": [20, 25, 41], "fought": 41, "found": [7, 11, 20, 22, 54, 66, 101, 103], "four": 43, "fp_44709d6fcb": [20, 26], "fragment": [14, 15, 16], "frame": 41, "framework": [41, 45], "free": 41, "friend": [41, 54, 85], "from": [1, 2, 3, 4, 6, 7, 11, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 29, 30, 31, 32, 36, 41, 42, 43, 44, 45, 46, 47, 49, 51, 52, 53, 54, 56, 58, 59, 60, 62, 67, 69, 73, 75, 81, 82, 83, 84, 85, 86, 87, 88, 89, 93, 98, 99, 102, 103, 109, 110, 112, 113, 114, 115, 117, 118, 119, 123, 124, 125], "from_dict": [0, 17, 18, 19], "fulfil": 41, "full": [41, 54, 66, 108, 125], "func": [46, 49, 54, 73, 117], "func_nam": [46, 47], "funcpipelin": 113, "function": [0, 1, 2, 3, 4, 6, 7, 11, 13, 14, 15, 16, 17, 18, 20, 21, 22, 24, 32, 35, 36, 38, 40, 41, 42, 43, 45, 46, 47, 50, 51, 53, 54, 56, 58, 59, 69, 70, 73, 75, 79, 85, 86, 91, 93, 98, 101, 102, 109, 111, 112, 113, 115, 116, 117, 118, 125], "function_nam": 98, "functioncallerror": [0, 11, 106], "functioncallformaterror": [0, 11, 106], "functionnotfounderror": [0, 11, 106], "futur": [1, 2, 41, 54, 56, 75], "futurist": [54, 67], "fuzzi": [54, 82], "gain": [41, 110], "galleri": 122, "game": 110, "game_werewolf": [1, 4, 110], "gather": 41, "geekan": 58, "gemini": [20, 22, 108, 109, 116, 119], "gemini_api_key": 114, "gemini_chat": [20, 22, 114, 116], "gemini_embed": [20, 22, 114], "gemini_model": [0, 20], "geminichatwrapp": [0, 20, 22, 114, 116], "geminiembeddingwrapp": [0, 20, 22, 114], "geminiwrapperbas": [0, 20, 22], "general": [3, 111], "generalrespons": [51, 53], "generat": [0, 1, 2, 3, 4, 6, 7, 8, 9, 13, 14, 16, 17, 18, 19, 20, 21, 22, 23, 25, 26, 28, 29, 30, 32, 33, 37, 41, 42, 43, 45, 46, 47, 48, 51, 52, 53, 54, 59, 66, 67, 73, 82, 88, 89, 91, 93, 99, 101, 112, 114, 115], "generate_agent_id": [0, 1, 2], "generate_arg": [20, 21, 23, 24, 26, 30, 110, 114], "generate_cont": [20, 22], "generate_image_from_nam": [95, 96, 99], "generate_jwt": [0, 90, 91], "generate_not": [0, 41, 123], "generate_server_id": [0, 51, 52], "generatecont": [20, 22], "generated_system_prompt": 123, "generation_method": [0, 20, 22], "generatortyp": 116, "generic": [98, 103], "gentl": 41, "geo_location_id": [54, 85], "geo_location_nam": [54, 85], "get": [0, 1, 2, 13, 14, 16, 17, 19, 20, 24, 32, 34, 37, 41, 42, 44, 46, 47, 49, 51, 53, 54, 62, 73, 85, 88, 89, 94, 99, 110, 124], "get_action_funct": [0, 54, 55, 56, 125], "get_ag": [0, 51, 53], "get_agent_class": [0, 1, 2], "get_agent_list": [0, 46, 47, 49, 51, 53, 121], "get_agent_memori": [0, 46, 47, 49, 51, 53, 121], "get_all_ag": [95, 100, 103], "get_chat": [95, 96, 98], "get_chat_msg": [95, 96, 99], "get_config_by_nam": [0, 13], "get_current_directori": [0, 54, 61, 62], "get_embed": [0, 14, 16, 118, 124], "get_help": [0, 54], "get_inst": [0, 13], "get_json": 124, "get_knowledg": [0, 42, 44, 124], "get_memori": [0, 14, 15, 16, 112, 118, 123], "get_model_by_config_nam": [0, 13], "get_openai_max_length": [0, 92, 94], "get_player_input": [95, 96, 99], "get_reset_msg": [95, 96, 99], "get_respons": [0, 46, 47], "get_server_info": [0, 46, 47, 49, 51, 53, 121], "get_task_id": [0, 51, 53], "get_tripadvisor_location_detail": [54, 85], "get_wrapp": [0, 20, 24], "getaway": [54, 85], "git": [108, 125, 127], "github": [1, 4, 20, 22, 25, 45, 58, 59, 81, 88, 89, 93, 108, 110, 125, 127, 128], "give": [41, 54, 66], "given": [1, 2, 7, 8, 9, 13, 20, 21, 31, 41, 54, 56, 60, 66, 67, 81, 83, 84, 86, 87, 88, 89, 90, 93, 98, 99, 101, 102, 103], "glm": [20, 30, 114, 119], "global": [41, 98, 124], "globe": 41, "gluten": 41, "goal": 41, "gone": 111, "good": [32, 37], "googl": [20, 22, 46, 54, 73, 84, 103, 109, 117], "google_search": [0, 54, 80, 84, 117], "googlesearchservicenod": [95, 100, 103], "govern": [54, 84], "gpt": [20, 23, 24, 26, 54, 67, 109, 110, 112, 114, 119, 120, 123], "grace": 41, "gradio": [0, 12, 95], "graph": 102, "grasp": 41, "great": 41, "greater": 110, "grep": [54, 60], "group": [0, 31, 32, 36, 54, 84, 85, 110], "growth": 41, "grpc": [8, 46, 49], "gte": 124, "guid": 41, "guidanc": 41, "habit": 41, "handl": [41, 54, 73, 98, 103, 116], "happen": 41, "hard": [1, 2, 3, 4, 14, 16, 32, 36, 41], "has": [0, 1, 2, 3, 4, 13, 17, 18, 20, 21, 28, 31, 41, 54, 59, 69, 84, 110, 111, 112], "hash": 99, "hasn": 110, "have": [13, 14, 16, 20, 21, 22, 41, 73, 88, 89, 103, 118], "hawkwood": 41, "hd": [54, 67], "hd_1024": 120, "hdr": [54, 67], "header": [20, 24, 27, 114], "heal": 110, "healing_used_tonight": 110, "healthi": 41, "heart": 41, "height": [0, 54, 55, 56, 85], "hello": [20, 25, 26, 54, 67, 111, 115], "helloworld": [54, 58], "helloworldn": [54, 58], "help": [1, 7, 20, 21, 23, 24, 25, 29, 30, 41, 54, 66, 79, 109, 110, 119], "here": [54, 71, 73, 110, 112, 115, 117], "heterogen": [88, 89], "hex": 118, "hf": 124, "hf_endpoint": 124, "hi": [20, 21, 23, 24, 25, 29, 30, 109, 119], "high": [17, 18, 41, 88, 89], "higher": [14, 16, 41], "highest": [54, 69, 88, 89], "hinder": 41, "hint": [1, 9, 32, 33, 34, 37, 110], "hire": 41, "his": 41, "histor": 41, "histori": [20, 21, 23, 24, 25, 29, 30, 41, 90, 110, 119], "hl": [20, 22], "hold": 41, "home": [0, 41, 54, 56, 84], "hong": [54, 82], "honor": 41, "host": [0, 1, 2, 8, 11, 17, 18, 19, 20, 25, 46, 47, 51, 52, 53, 54, 59, 75, 76, 90, 110, 121, 122], "hostmsg": 110, "hostnam": [1, 2, 8, 11, 17, 19, 46, 47, 51, 52, 53, 54, 75, 122], "hous": 41, "how": [6, 14, 15, 16, 20, 21, 23, 24, 25, 26, 29, 30, 41, 54, 66, 67, 82, 111, 116], "how_to_format_inputs_to_chatgpt_model": 118, "howev": [13, 41, 118], "hr": 41, "html": [0, 1, 4, 42, 44, 45, 54, 55, 56, 82, 86, 117, 122, 124, 125], "html_selected_tag": [54, 86], "html_text": [54, 86], "html_to_text": [54, 86], "http": [20, 30, 111, 114, 121, 122, 124], "https": [1, 4, 7, 20, 21, 22, 23, 25, 26, 29, 30, 45, 54, 56, 58, 59, 66, 67, 81, 82, 84, 85, 88, 89, 93, 108, 114, 117, 118, 119, 124, 125, 127], "hu": [54, 82], "hub": [31, 103, 110, 113], "hub_manag": 113, "huggingfac": [24, 109, 114, 124], "human": [41, 59, 93], "human_ev": [59, 93], "humor": 41, "hygien": 41, "i3": [20, 21], "icl": 123, "id": [0, 1, 2, 6, 8, 17, 18, 19, 20, 21, 24, 26, 27, 29, 30, 42, 43, 44, 45, 46, 47, 49, 51, 52, 53, 54, 56, 85, 87, 98, 109, 116, 118, 122, 124], "id_list": [54, 81], "idea": [1, 7, 20, 22, 32, 37], "ident": [17, 18, 19, 110], "identifi": [0, 20, 21, 23, 24, 25, 26, 27, 29, 30, 41, 54, 84, 85, 91, 102, 109, 110], "ids": [1, 6, 42, 44, 54, 81, 98], "idx": 110, "if": [0, 1, 2, 3, 4, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22, 24, 26, 28, 30, 32, 34, 35, 36, 37, 38, 39, 40, 41, 45, 46, 47, 50, 51, 52, 53, 54, 56, 59, 60, 62, 63, 64, 66, 67, 69, 71, 79, 82, 84, 85, 86, 91, 99, 101, 102, 103, 109, 110, 112, 113, 115, 116, 117, 118, 121, 123, 124], "if_body_oper": [38, 39, 40], "ifelsepipelin": [0, 38, 39, 40, 122], "ifelsepipelinenod": [95, 100, 103], "ignor": 112, "illeg": 41, "imag": [13, 20, 21, 26, 28, 54, 59, 66, 67, 71, 85, 98, 99, 114, 117, 118, 119, 120], "image_count": [13, 20, 21, 120], "image_term": 98, "image_to_text": [54, 66], "image_token": [20, 21], "image_url": [20, 28, 54, 66, 67, 119], "image_url1": [54, 66, 67], "image_url2": [54, 66, 67], "imagin": 41, "imbu": 41, "imit": 41, "immedi": [1, 2, 17, 19, 111, 112], "impact": 41, "implement": [1, 2, 5, 7, 20, 21, 23, 24, 25, 29, 30, 38, 40, 54, 56, 58, 59, 73, 81, 93, 103, 110, 112], "import": [0, 1, 13, 14, 20, 38, 41, 42, 44, 45, 46, 51, 54, 56, 58, 59, 88, 90, 98, 109, 110, 111, 112, 113, 114, 115, 117, 119, 120, 121, 122, 123, 124, 125], "import_function_from_path": [95, 96, 98], "importantand": [54, 86], "importerror": 93, "importerrorreport": [0, 92, 93], "impos": [54, 59], "improv": [41, 54, 67], "in": [0, 1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 51, 52, 53, 54, 56, 58, 59, 66, 67, 69, 73, 75, 76, 77, 79, 81, 82, 84, 85, 86, 87, 88, 89, 91, 93, 94, 97, 99, 102, 103, 109, 110, 112, 113, 114, 115, 116, 117, 118, 121, 124], "in_subprocess": [51, 52], "includ": [0, 1, 2, 8, 12, 13, 17, 18, 20, 30, 38, 40, 41, 54, 56, 60, 62, 63, 64, 82, 84, 85, 102, 117], "including_self": 8, "incompet": 41, "incorpor": 41, "incorrect": [88, 89], "increas": 41, "increment": [51, 53], "indent": 120, "independ": 41, "index": [14, 15, 16, 20, 21, 23, 26, 29, 30, 41, 42, 43, 44, 45, 54, 81, 82, 117, 118], "indic": [11, 14, 15, 16, 20, 21, 41, 46, 47, 54, 62, 63, 64, 82, 111], "individu": [54, 84], "indpend": 121, "industri": 41, "inf": [88, 89], "infer": [24, 27, 109, 114], "influenc": 41, "influenti": 41, "info": [0, 12, 13, 102, 111, 120], "inform": [1, 7, 9, 13, 17, 18, 19, 20, 22, 41, 45, 46, 47, 49, 51, 53, 54, 56, 79, 81, 82, 84, 85, 86, 88, 89, 102, 103, 110, 111, 112, 118], "ingredi": 41, "inhabit": 41, "inherit": [1, 2, 20, 24], "init": [0, 1, 2, 8, 11, 13, 20, 30, 41, 46, 47, 51, 52, 53, 54, 58, 90, 93, 106, 109, 110, 111, 114, 120, 121, 122, 123], "init_arg": 124, "init_uid_list": [95, 96, 98], "init_uid_queu": [95, 96, 99], "initi": [0, 1, 2, 3, 4, 6, 7, 8, 9, 11, 13, 17, 18, 20, 21, 22, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 40, 41, 42, 43, 44, 45, 54, 56, 73, 98, 99, 101, 102, 103, 110, 112, 113, 118, 119], "initial_announc": 113, "inner": 41, "inner_text": [0, 54, 55, 56], "innoc": 41, "innov": 41, "input": [1, 2, 3, 4, 6, 8, 9, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 38, 39, 40, 41, 46, 47, 51, 52, 54, 67, 79, 86, 88, 89, 98, 99, 102, 103, 112, 114, 117, 123, 124], "input_dir": 124, "input_hint": [1, 9], "input_ob": [54, 58], "input_token": [20, 21], "inquir": 41, "inquiri": 41, "insecur": 49, "insert": [54, 56], "insight": 41, "inspect": 117, "inspir": 41, "instal": [25, 54, 56, 93, 108, 125, 127], "instanc": [1, 2, 8, 11, 13, 17, 19, 41, 46, 47, 51, 53, 88, 89, 90, 102], "instanti": [42, 43], "instead": 13, "instruct": [1, 4, 32, 33, 34, 36, 37, 41, 54, 67, 73, 79, 88, 89, 114, 115, 124], "instruction_format": 115, "insur": 41, "int": [1, 2, 4, 6, 7, 8, 9, 11, 13, 14, 15, 16, 17, 19, 20, 23, 27, 29, 38, 39, 40, 41, 42, 43, 45, 46, 47, 51, 52, 53, 54, 56, 58, 59, 66, 67, 69, 73, 75, 76, 77, 79, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 99, 117, 118, 124], "integ": [20, 23], "integr": 45, "intel": [54, 82], "intellig": [54, 82], "intent": 41, "intenum": [10, 54, 72, 103], "interact": [11, 38, 40, 41, 54, 56, 58, 59, 60, 112], "interest": 41, "interf": 59, "interfac": [38, 40, 98, 103], "intermedi": 41, "intern": [41, 88, 89, 112], "interpret": 41, "interv": [20, 27], "into": [1, 2, 8, 9, 12, 13, 17, 18, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 35, 41, 43, 45, 54, 56, 62, 64, 66, 73, 88, 89, 110], "introduc": 41, "introduct": 41, "invalid": 91, "invest": 41, "investopedia": [54, 84], "invoc": [0, 13], "invok": [1, 3, 4, 6, 41, 54, 60, 86, 103, 112], "invoke_dir": [0, 13], "involv": [32, 37], "io": [1, 4], "ip": [1, 2, 54, 75, 76, 121, 122], "ip_a": 121, "ip_b": 121, "ipython": [54, 58, 59, 117], "is": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 34, 36, 37, 38, 40, 41, 45, 46, 47, 49, 50, 51, 53, 54, 56, 59, 63, 66, 67, 69, 71, 73, 75, 79, 81, 82, 84, 85, 86, 88, 89, 91, 93, 99, 101, 102, 103, 109, 110, 111, 112, 115, 116, 117, 118, 119, 121, 123], "is_al": [0, 46, 47, 49, 51, 53, 121], "is_bless": [54, 85], "is_callable_express": [95, 100, 104], "is_click": [0, 54, 55, 56], "is_initi": [0, 13], "is_play": 99, "is_serializ": [0, 50, 106], "is_stream_exhaust": [0, 20, 28], "is_valid_url": [54, 80, 86], "isinst": [112, 116, 124], "island": [54, 85], "isn": 111, "iso": [54, 67, 85], "issu": [32, 37, 41, 111], "it": [0, 1, 2, 4, 8, 9, 12, 14, 15, 16, 20, 21, 22, 25, 26, 28, 30, 31, 32, 33, 34, 35, 36, 37, 41, 45, 46, 47, 54, 56, 59, 62, 63, 64, 73, 82, 84, 86, 87, 88, 89, 93, 101, 103, 110, 112, 117, 118, 119], "item": [54, 82, 85, 93, 117, 118], "iter": [1, 7, 14, 15, 16, 103, 118], "itinerari": 41, "its": [1, 2, 3, 14, 16, 24, 41, 54, 56, 62, 73, 75, 82, 102, 118], "itself": [14, 16], "jargon": 41, "jif": [54, 82], "job": [41, 54, 86], "john": 41, "johnson": 41, "join": [110, 117, 123], "journal": [54, 82], "journey": 41, "joy": 41, "jpg": [54, 66, 67, 85, 109, 119], "jr": [54, 81], "json": [0, 1, 4, 10, 11, 20, 21, 22, 23, 25, 26, 27, 29, 30, 32, 34, 36, 37, 41, 50, 51, 52, 54, 61, 73, 84, 85, 86, 91, 101, 109, 110, 112, 117, 118, 120, 121, 122, 124], "json_arg": [20, 27, 124], "json_object_pars": [0, 32], "json_required_hint": [0, 32, 37], "json_schema": [0, 54, 73, 117], "jsondecodeerror": [1, 4], "jsondictvalidationerror": [0, 11, 106], "jsonparsingerror": [0, 11, 106], "jsontypeerror": [0, 11, 106], "jupyt": [54, 58], "just": [14, 15, 16, 38, 39, 40], "justic": 41, "jwt": 91, "k1": [38, 40], "k2": [38, 40], "keen": 41, "keep": [20, 21, 22, 41, 54, 79, 86, 115], "keep_al": [20, 25, 114], "keep_raw": [54, 86], "kernel": [54, 82], "keskin": [54, 82], "keskinday21": [54, 82], "key": [1, 9, 17, 18, 20, 21, 23, 26, 27, 29, 30, 32, 34, 35, 36, 37, 41, 42, 44, 54, 56, 66, 67, 73, 79, 84, 85, 86, 87, 91, 103, 109, 112, 114, 115, 117, 118, 119, 121], "keya": [54, 56], "keyerror": 118, "keys_allow_miss": [32, 37], "keys_to_cont": [32, 34, 35, 36, 37, 110, 115], "keys_to_memori": [32, 34, 35, 36, 37, 110, 115], "keys_to_metadata": [32, 34, 35, 36, 37, 115], "keyword": [20, 21, 23, 25, 26, 30, 41, 54, 84, 87, 117], "keyz": [54, 56], "kill": [59, 110], "kind": [38, 40], "king": 41, "kingdom": 41, "kingsley": 41, "kitchen": 41, "knight": 41, "knighthood": 41, "know": [32, 36, 41, 110], "knowledg": [0, 1, 6, 41, 42, 44, 45, 54, 69], "knowledge_bank": [0, 42, 124], "knowledge_config": [42, 43, 44, 45, 124], "knowledge_id": [42, 43, 44, 45, 124], "knowledge_id_list": [1, 6, 42, 44, 124], "knowledge_list": [1, 6, 124], "knowledgebank": [0, 42, 44, 124], "knowledgebas": [42, 44], "known": [32, 36, 41], "kong": [54, 82], "kwarg": [1, 2, 3, 4, 6, 7, 8, 9, 12, 13, 17, 18, 20, 21, 22, 23, 24, 25, 26, 27, 30, 42, 43, 45, 54, 73, 75, 76, 77, 84, 102, 104, 112, 114, 117, 118, 123], "kwarg_convert": [95, 100, 104], "lab": [54, 82], "label": [54, 56], "lace": 41, "lack": 41, "ladi": 41, "lambda": [38, 39, 40], "lancelot": 41, "land": 41, "langchain": 124, "languag": [1, 3, 4, 6, 32, 33, 41, 45, 54, 67, 85, 112, 124], "language_nam": [32, 33, 115], "larg": [20, 29, 41, 54, 85, 114], "last": [12, 14, 16, 20, 21, 88, 89, 116], "last_chunk": 116, "latenc": [54, 67], "latest": [20, 25, 41, 88, 89], "latitud": [54, 85], "launch": [0, 1, 2, 8, 51, 52, 101, 121], "launch_serv": [1, 2], "launcher": [0, 51], "layer": [54, 59], "lazy_launch": [1, 2, 8], "lead": [1, 9, 41], "learn": [41, 54, 81, 82, 84, 87, 110, 117], "least": 41, "leav": [54, 75], "lecun": [54, 81], "led": 41, "legendari": 41, "length": [20, 27, 41, 54, 58, 94], "less": [54, 79], "level": [0, 12, 41, 54, 85, 120], "leverag": [88, 89], "li": [54, 86], "librari": [20, 25, 41], "licens": [81, 107], "lie": 41, "life": [41, 110], "lihong": [54, 82], "like": [20, 23, 38, 39, 40, 41], "limit": [1, 9, 41, 54, 59, 79, 93], "line": [41, 51, 52, 99, 101, 112], "lingyiwanwu": [20, 29], "link": [54, 56, 84, 86], "linux": 0, "list": [0, 1, 6, 8, 9, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 41, 42, 43, 44, 45, 46, 47, 49, 51, 52, 53, 54, 56, 62, 66, 67, 69, 70, 73, 81, 82, 84, 85, 88, 89, 90, 94, 98, 99, 102, 103, 104, 110, 112, 113, 114, 115, 118, 119, 124, 125], "list_directory_cont": [0, 54, 61, 62], "list_model": [20, 22], "list_of_iso_639": [54, 67], "listen": [1, 2, 8, 51, 52], "lite_llm_openai_chat_gpt": 114, "litellm": [20, 23, 108, 116, 119], "litellm_chat": [20, 23, 114, 116], "litellm_model": [0, 20], "litellmchatmodelwrapp": 114, "litellmchatwrapp": [0, 20, 23, 114, 116], "litellmwrapperbas": [0, 20, 23], "liter": [0, 12, 13, 17, 18, 19, 41, 54, 66, 67, 102, 111], "literatur": 41, "littl": [41, 54, 75], "liu": [54, 82], "ll": 41, "llama": [42, 44, 45, 114], "llama2": [114, 119], "llama3": [20, 25], "llama_index": [45, 124], "llama_index_knowledg": [0, 42, 124], "llamaindex": [1, 6, 45, 124], "llamaindexag": [0, 1, 6, 124], "llamaindexknowledg": [0, 42, 45], "llm": [0, 32, 34, 36, 37, 41, 42, 43, 44, 45, 54, 87, 115, 117, 119, 123, 124], "llms": [20, 23, 88, 89, 119], "load": [0, 1, 2, 3, 4, 7, 13, 14, 15, 16, 20, 22, 25, 32, 37, 41, 42, 43, 45, 52, 54, 56, 101, 103, 115, 117, 118, 124], "load_agents_from_dir": [0, 51, 52], "load_agents_from_fil": [0, 51, 52], "load_config": [95, 100, 101], "load_data": 124, "load_dict": [0, 13], "load_dur": [20, 25], "load_model_config": [0, 13], "load_web": [0, 54, 80, 86, 117], "loader": [42, 44, 45, 124], "local": [0, 1, 2, 8, 12, 13, 20, 21, 41, 46, 47, 51, 52, 53, 54, 67], "local_embedding_model": [41, 123], "local_mod": [1, 2, 8, 51, 52], "localhost": [1, 2, 8, 51, 52, 53, 54, 76], "localized_nam": [54, 85], "locat": [17, 19, 54, 83, 85], "location_id": [54, 85], "log": [0, 13, 106], "log_gradio": [0, 12, 106], "log_level": [0, 111], "log_msg": [0, 12, 106], "log_retriev": [1, 6, 124], "log_stream_msg": [0, 12, 106, 116], "logger": [0, 12, 118, 120], "logger_level": [0, 13, 110, 111], "logic": [1, 5, 38, 40, 41, 103, 110, 112], "login": 91, "logprob": [20, 26], "loguru": [12, 111], "long": [10, 20, 25, 41, 54, 87], "longitud": [54, 85], "loop": [1, 7, 38, 39, 40, 103], "loop_body_oper": [38, 39, 40], "lord": 41, "los": [20, 29], "love": 41, "low": 41, "loyal": 41, "loyalti": 41, "ls": [54, 60, 62], "lst": 102, "ltd": [54, 82], "lukasschwab": 81, "lynch": 110, "maa": [20, 30], "mac": 0, "machin": [46, 47, 54, 82, 87], "machine1": 121, "machine2": 121, "machine_learn": [54, 87], "machinesand": [54, 82], "made": [54, 56, 67], "magic": 41, "main": [20, 25, 28, 54, 56, 58, 95, 100, 101, 110, 121, 127], "main_model": [88, 89], "maintain": [41, 118], "mainthread": 93, "majority_vot": 110, "make": [20, 22, 41, 42, 44, 88, 89], "manag": [0, 31, 32, 36, 41, 93, 103, 106, 120, 121], "mani": [54, 75, 76], "manner": 41, "map": [38, 39, 40, 54, 56], "mari": 41, "mark": [54, 56], "markdown": [32, 33, 34, 41, 54, 56, 115, 125], "markdowncodeblockpars": [0, 32, 33], "markdownifi": 125, "markdownjsondictpars": [0, 32, 34, 110], "markdownjsonobjectpars": [0, 32, 34], "market": 41, "martial": 41, "mask": [54, 67], "mask_imag": [54, 67], "mask_url": [54, 67], "master": [41, 59, 93], "masteri": 41, "match": [14, 15, 16, 41, 54, 85, 110], "materi": 41, "math": 41, "matplotlib": [54, 59], "matter": 41, "max": [1, 2, 8, 51, 52, 53, 94, 114, 119, 120], "max_game_round": 110, "max_it": [1, 7], "max_iter": 113, "max_length": [20, 24, 27, 124], "max_length_of_model": 24, "max_loop": [38, 39, 40], "max_memb": [54, 87], "max_pool_s": [1, 2, 8, 51, 52, 53], "max_result": [54, 81], "max_retri": [1, 4, 20, 24, 27, 114], "max_return_token": [54, 79], "max_timeout_second": [1, 2, 8, 51, 52, 53], "max_token": [20, 29], "max_werewolf_discussion_round": 110, "maxcount_result": [54, 75, 76, 77], "maxim": 41, "maximum": [1, 2, 4, 7, 20, 27, 29, 38, 39, 40, 51, 52, 53, 54, 59, 69, 75, 76, 77, 81, 87], "maximum_memory_byt": [54, 59], "may": [20, 21, 22, 26, 41, 54, 73, 84, 88, 89, 102, 114], "mayb": [1, 7, 20, 21, 23, 24, 25, 29, 30, 32, 37, 54, 87], "md": [20, 25, 42, 44, 114, 124], "mean": [0, 1, 2, 7, 14, 16, 17, 18, 31, 54, 87], "measur": 41, "mechan": [41, 54, 87], "media": [41, 54, 85], "mediev": 41, "medium": [20, 29, 54, 85, 114], "meet": [38, 39, 40, 41, 119], "mem": 121, "member": [54, 87], "memori": [0, 1, 2, 3, 4, 6, 8, 9, 20, 25, 32, 35, 36, 41, 42, 43, 46, 47, 49, 51, 53, 54, 59, 69, 105, 106, 107, 112, 115, 116, 121, 123], "memorybas": [0, 14, 15, 16], "men": 41, "mention": 41, "mentor": 41, "mer": [54, 82], "mercenari": 41, "merg": [20, 21], "messag": [0, 1, 2, 3, 4, 6, 8, 9, 11, 12, 14, 15, 16, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 35, 36, 46, 47, 51, 52, 53, 54, 60, 62, 63, 64, 69, 71, 75, 76, 77, 79, 82, 83, 98, 99, 100, 103, 105, 106, 109, 110, 112, 113, 114, 117, 119, 123, 124], "message_from_alic": 109, "message_from_bob": 109, "messages_key": [20, 27, 114], "meta": [41, 54, 56, 82, 114, 123], "meta_data": [0, 54, 55, 56], "meta_prompt": [41, 123], "meta_prompt_templ": 41, "metadata": [0, 17, 18, 19, 49, 54, 56, 110, 115], "metagpt": 58, "method": [1, 2, 5, 7, 8, 9, 14, 15, 16, 17, 19, 20, 22, 26, 32, 34, 35, 36, 37, 41, 54, 56, 82, 102, 103, 112, 124, 125], "meticul": 41, "metric": [11, 14, 16], "microsoft": [54, 84, 117], "midterm": 41, "might": [41, 110], "militari": 41, "mine": [20, 21], "mini": [20, 26], "minilm": [20, 25], "minus": [54, 56], "mirror": 124, "mislead": 41, "miss": [11, 32, 34, 37, 93, 112], "missing_begin_tag": [0, 11], "missing_end_tag": [0, 11], "mistak": 41, "misunderstand": [20, 21, 41], "misunderstood": 41, "mit": 81, "mix": 89, "mixin": 35, "mixture_of_ag": [0, 88], "mixtureofag": [0, 88, 89], "mkt": [54, 84], "moa": [88, 89], "mock": 41, "mode": [13, 20, 22, 23, 25, 26, 30, 51, 52, 90, 121], "model": [0, 1, 2, 3, 4, 6, 7, 10, 11, 13, 14, 16, 32, 33, 34, 35, 36, 37, 41, 42, 43, 44, 45, 46, 47, 49, 51, 52, 53, 54, 56, 66, 67, 69, 73, 79, 86, 88, 89, 94, 100, 102, 103, 105, 106, 107, 109, 110, 112, 115, 116, 117, 119, 120, 121, 122, 123], "model_computed_field": [0, 54, 55, 56], "model_config": [0, 13, 46, 47, 54, 55, 56, 109, 110, 114, 116, 120, 121, 123], "model_config_nam": [1, 2, 3, 4, 6, 7, 41, 109, 110, 112, 121, 123, 124], "model_config_or_path": 114, "model_config_path_a": 121, "model_config_path_b": 121, "model_configs_templ": 121, "model_field": [0, 54, 55, 56], "model_nam": [0, 13, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 42, 44, 94, 109, 110, 114, 119, 120, 123], "model_name_for_openai": 24, "model_name_or_path": 124, "model_or_model_config_nam": [41, 123], "model_respons": 117, "model_typ": [0, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 109, 110, 114, 116, 121, 123], "modelmanag": [0, 13], "modelnod": [95, 100, 103], "modelrespons": [0, 20, 21, 28, 32, 33, 34, 35, 36, 37, 115], "modelscop": [1, 4, 108, 109, 114, 124, 125], "modelscope_cfg_dict": 109, "modelwrapp": 114, "modelwrapperbas": [0, 13, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 41, 42, 43, 45, 54, 69, 79, 86, 88, 89, 114], "moder": 110, "modifi": [1, 7, 59], "modul": [105, 106, 124, 125], "module_nam": 98, "module_path": 98, "monasteri": 41, "mongodb": [54, 74, 117], "monitor": [0, 13, 120], "monitormanag": [0, 13], "more": [0, 1, 7, 20, 21, 22, 23, 31, 32, 36, 41, 42, 44, 45, 54, 66, 67, 84, 85, 88, 89, 117], "most": [1, 6, 14, 15, 41, 42, 43, 45, 51, 52, 110], "motiv": 41, "mountain": [54, 66], "move": [54, 62], "move_directori": [0, 54, 61, 62, 117], "move_fil": [0, 54, 61, 62, 117], "mp3": [54, 67, 119], "mpnet": [41, 123], "msg": [0, 1, 2, 3, 4, 6, 7, 8, 9, 12, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 41, 46, 47, 50, 54, 73, 93, 98, 99, 109, 110, 111, 112, 113, 115, 116, 117, 119, 121, 123], "msg1": 121, "msg2": 121, "msg_hub": 113, "msg_id": 99, "msghub": [0, 105, 106, 109, 122, 129], "msghubmanag": [0, 31, 106, 113], "msghubnod": [95, 100, 103], "msgnode": [95, 100, 103], "much": [0, 31], "muhammet": [54, 82], "multi": [20, 22, 41, 105, 107, 108, 113, 121, 126, 129], "multi_mod": [0, 54], "multimod": [17, 18, 20, 21, 54, 66, 114], "multipl": [1, 6, 15, 20, 21, 32, 36, 37, 38, 39, 40, 42, 44, 54, 66, 88, 89, 103], "multitaggedcontentpars": [0, 32, 37], "must": [14, 15, 16, 17, 18, 20, 21, 22, 23, 32, 37, 41, 54, 85, 110, 115], "my": [41, 123], "my_ag": [51, 52, 121], "my_arg1": 114, "my_arg2": 114, "my_dashscope_chat_config": 114, "my_dashscope_image_synthesis_config": 114, "my_dashscope_multimodal_config": 114, "my_dashscope_text_embedding_config": 114, "my_gemini_chat_config": 114, "my_gemini_embedding_config": 114, "my_model": 114, "my_model_config": 114, "my_ollama_chat_config": 114, "my_ollama_embedding_config": 114, "my_ollama_generate_config": 114, "my_openai": 121, "my_postapiwrapper_config": 114, "my_zhipuai_chat_config": 114, "my_zhipuai_embedding_config": 114, "myagent": [110, 116, 121, 123], "mymodelwrapp": 114, "mysql": [54, 74, 75, 117], "mysteri": 41, "mysystempromptgener": 123, "n1": [41, 110], "n2": [41, 110], "n2s": 110, "n3": 41, "n4": 41, "n5": 41, "n6": 41, "n7": 41, "n8": 41, "n9": 41, "nalic": 119, "name": [0, 1, 2, 3, 4, 6, 7, 8, 9, 11, 13, 14, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 32, 33, 34, 36, 37, 41, 42, 44, 46, 47, 54, 56, 58, 59, 73, 75, 76, 77, 79, 82, 85, 88, 89, 99, 101, 102, 107, 109, 110, 111, 112, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 127], "name1": [32, 36], "name2": [32, 36], "namespac": [54, 87], "nanyang": [54, 82], "narrow": 41, "nation": [54, 82], "nativ": [54, 59], "natur": [41, 54, 59, 67, 85], "nature_park": [54, 85], "navig": 41, "nbe": [54, 58], "nbelief": 41, "nbob": 119, "ncharact": 41, "nconstraint": 110, "ndarray": 13, "near": 41, "necessari": [41, 73, 102, 117], "need": [1, 2, 3, 4, 6, 7, 8, 9, 14, 16, 17, 18, 20, 23, 24, 41, 45, 51, 52, 54, 67, 79, 87, 103, 112], "negative_prompt": 114, "neighborhood_info": [54, 85], "neither": [54, 85], "networkx": 102, "neutral": 41, "new": [14, 15, 16, 31, 41, 46, 47, 49, 51, 53, 54, 62], "new_ag": 113, "new_particip": [31, 113], "next": [41, 99, 103, 110], "nfor": 110, "nfrom": 41, "ngame": 110, "nice": 119, "nif": 41, "night": 110, "nin": [41, 110], "nmari": 41, "nnow": 41, "no": [1, 9, 41, 54, 59, 69, 82, 101, 110, 118], "nobil": 41, "nobl": 41, "node": [54, 56, 102, 103, 104, 124], "node_id": [102, 103], "node_info": 102, "node_nam": [0, 54, 55, 56], "node_pars": 124, "node_typ": [100, 103], "node_valu": [0, 54, 55, 56], "nodes_not_in_graph": [100, 102], "nodewithscor": 45, "non": [54, 59, 102], "none": [0, 1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 51, 52, 53, 54, 56, 58, 59, 66, 67, 69, 73, 75, 76, 77, 81, 85, 86, 88, 89, 90, 91, 93, 98, 99, 101, 102, 103, 109, 110, 112, 113, 115, 116, 117, 118, 119, 121, 123], "nonetyp": [54, 56], "nonsens": 41, "nor": [54, 85], "normal": [17, 18, 54, 67], "not": [1, 2, 4, 11, 13, 14, 15, 16, 20, 21, 22, 23, 24, 25, 26, 29, 30, 32, 36, 37, 38, 39, 40, 41, 51, 52, 54, 59, 60, 66, 67, 73, 85, 86, 88, 89, 102, 110, 112, 115, 117], "note": [1, 2, 12, 13, 20, 21, 23, 24, 25, 29, 30, 32, 36, 41, 46, 47, 51, 52, 53, 54, 60, 87, 110, 114, 115, 121, 123], "notebook": [54, 58], "notebookexecutor": [0, 54, 57, 58, 117], "noth": [38, 39, 40], "notic": [6, 14, 15, 16, 54, 79], "notifi": [1, 2], "notimplementederror": [112, 118], "noun": [54, 84], "nova": [54, 67], "now": [41, 50, 54, 75, 124], "np": 13, "nperson": 41, "nplayer": 110, "npleas": 41, "nrais": 41, "nrespons": [88, 89], "ns": [54, 87], "nseer": 110, "nsinc": 41, "nskill": 41, "nstrength": 41, "nsummar": [54, 79], "nthe": [41, 110], "nthere": 110, "null": [20, 21, 26, 120], "num_complet": [54, 82], "num_dot": 99, "num_inst": 8, "num_result": [54, 73, 82, 84, 117], "num_review": [54, 85], "num_tokens_from_cont": [0, 92, 94], "number": [1, 2, 4, 6, 7, 8, 14, 15, 16, 20, 27, 29, 32, 36, 38, 39, 40, 41, 42, 43, 45, 51, 52, 53, 54, 66, 67, 69, 70, 73, 75, 76, 77, 79, 81, 82, 83, 84, 87, 88, 89, 93, 110, 115, 117], "numer": 41, "nurtur": 41, "nuser": 119, "nutrit": 41, "nvictori": 110, "nvillag": 110, "nweak": 41, "nwerewolv": 110, "nwitch": 110, "nyou": [41, 54, 79, 110], "nyour": 41, "obj": [17, 18, 50], "object": [0, 1, 2, 6, 7, 9, 11, 12, 13, 14, 16, 17, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 37, 41, 42, 44, 45, 46, 47, 49, 50, 51, 52, 54, 56, 58, 71, 73, 75, 76, 77, 83, 86, 88, 89, 93, 102, 103, 112, 115, 117, 118, 119, 124], "observ": [0, 1, 2, 8, 31, 110, 112, 113], "obtain": [1, 6, 13, 41, 51, 52, 54, 85, 86], "obvious": 41, "occas": 41, "occasion": 41, "occur": 112, "of": [0, 1, 2, 3, 4, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 51, 52, 53, 54, 56, 58, 59, 62, 64, 66, 67, 69, 71, 73, 75, 76, 77, 79, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 93, 94, 99, 102, 103, 110, 111, 114, 115, 116, 117, 118, 119, 125], "off": 43, "offer": [41, 88, 89], "offici": [66, 67], "often": [41, 118], "ok": 121, "old": [14, 15, 16, 41], "oldest": [1, 2, 51, 52, 53], "ollama": [20, 25, 108, 116, 119], "ollama_chat": [20, 25, 114, 116], "ollama_embed": [20, 25, 114], "ollama_gener": [20, 25, 114], "ollama_model": [0, 20], "ollamachatwrapp": [0, 20, 25, 114, 116], "ollamaembeddingwrapp": [0, 20, 25, 114], "ollamagenerationwrapp": [0, 20, 25, 114], "ollamawrapperbas": [0, 20, 25], "omit": [1, 2, 3, 4, 6, 8, 9, 112, 117], "on": [1, 2, 6, 8, 9, 14, 15, 16, 17, 19, 20, 22, 23, 27, 38, 39, 40, 41, 42, 43, 45, 46, 47, 49, 51, 53, 54, 56, 58, 66, 67, 81, 82, 84, 85, 99, 101, 102, 103, 110, 112], "onc": 41, "one": [0, 12, 14, 15, 16, 20, 21, 22, 24, 31, 41, 45, 54, 69, 99, 103, 110, 112], "onli": [1, 2, 4, 7, 8, 17, 18, 20, 21, 41, 51, 52, 54, 59, 75, 93, 110, 118], "onlin": 41, "onyx": [54, 67], "open": [20, 30, 32, 34, 54, 73, 79, 88, 89], "openai": [20, 23, 24, 26, 27, 54, 59, 67, 73, 93, 94, 109, 110, 116, 117, 118, 119, 123], "openai_api_key": [20, 23, 26, 109, 114], "openai_audio_to_text": [0, 54, 65, 67, 117], "openai_cfg_dict": 109, "openai_chat": [20, 24, 26, 109, 110, 114, 116, 121, 123], "openai_create_image_vari": [0, 54, 65, 67, 117], "openai_dall_": [20, 26, 109, 114], "openai_edit_imag": [0, 54, 65, 67, 117], "openai_embed": [20, 26, 109, 114], "openai_image_to_text": [0, 54, 65, 67, 117], "openai_model": [0, 20], "openai_organ": [20, 26, 109], "openai_servic": [54, 65], "openai_text_to_audio": [0, 54, 65, 67, 117], "openai_text_to_imag": [0, 54, 65, 67, 117], "openaichatwrapp": [0, 20, 26, 114, 116], "openaidallewrapp": [0, 20, 26, 114], "openaiembeddingwrapp": [0, 20, 26, 114], "openaiwrapp": 114, "openaiwrapperbas": [0, 20, 26], "oper": [0, 1, 2, 38, 39, 40, 54, 56, 59, 62, 63, 64, 75, 81, 102, 103, 112, 113], "opinion": 41, "opposit": [54, 82], "opt": 103, "opt_kwarg": 103, "opt_prompt": [41, 123], "optim": 41, "optimist": 41, "option": [0, 1, 2, 3, 4, 6, 8, 9, 13, 14, 15, 16, 17, 18, 19, 20, 25, 28, 29, 31, 32, 33, 34, 35, 36, 37, 38, 39, 41, 42, 44, 45, 46, 47, 49, 51, 52, 54, 59, 66, 67, 69, 73, 81, 85, 86, 90, 91, 103, 110, 112, 113, 114, 115, 116, 117, 118, 123], "opus": [54, 67], "or": [0, 1, 2, 3, 4, 9, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 54, 56, 60, 62, 64, 66, 67, 75, 76, 77, 81, 82, 83, 84, 85, 86, 88, 89, 91, 99, 103, 108, 109, 110, 112, 115, 117, 118, 121], "orat": 41, "order": [14, 16, 20, 21, 54, 69, 102, 110], "org": [1, 7, 54, 67, 82], "organ": [15, 20, 24, 26, 41, 54, 84, 109, 110, 114], "origin": [14, 16, 41, 46, 47, 51, 53, 54, 56, 69, 73, 85, 93], "origin_i": [0, 54, 55, 56], "origin_x": [0, 54, 55, 56], "original_func": [54, 73], "original_imag": [54, 67], "os": [20, 23, 54, 59, 124], "other": [0, 1, 2, 8, 20, 30, 31, 32, 35, 36, 37, 41, 54, 59, 75, 82, 85, 112, 115, 118], "otherwis": [0, 1, 2, 12, 14, 15, 16, 20, 21, 51, 52, 54, 56, 71, 73, 79, 86, 117], "our": [1, 4, 20, 22], "out": [1, 2, 7, 9, 38, 39, 40], "outburst": 41, "outlin": [32, 37, 115], "outlook": 41, "output": [0, 1, 2, 3, 4, 6, 8, 9, 20, 21, 23, 31, 38, 39, 40, 41, 54, 58, 59, 60, 67, 73, 86, 87, 102, 103], "output_token": [20, 21], "over": [41, 103], "overload": 41, "overrid": 0, "overridden": [1, 5], "overview": 67, "overwrit": [14, 15, 16, 45, 54, 63, 64, 118], "overwrite_index": 45, "own": [1, 7, 20, 21, 23, 24, 25, 29, 30, 41, 45], "paa": [20, 30], "packag": [43, 45, 50, 56, 93, 105, 106, 121, 122], "page": [54, 56, 82, 86, 87], "page_": 125, "page_html": [0, 54, 55, 56, 125], "page_markdown": [0, 54, 55, 56, 125], "page_screenshot": [0, 54, 55, 56], "page_titl": [0, 54, 55, 56, 125], "page_url": [54, 56, 125], "pagedown": [54, 56], "pageid": [54, 87], "pageup": [54, 56], "paper": [1, 7, 54, 81, 82, 88, 89], "paragon": 41, "param": [1, 6, 14, 15, 16, 32, 34, 36, 37, 41, 42, 43, 44, 45, 54, 58, 67, 86, 117], "paramet": [0, 1, 2, 17, 19, 20, 24, 29, 54, 84, 86, 114, 117], "params_prompt": 117, "parent": [41, 103], "parent_dir_of_agent_a_and_b": 121, "park": [54, 85], "pars": [0, 1, 4, 11, 20, 28, 32, 33, 34, 35, 36, 37, 54, 63, 73, 82, 86, 101, 115, 117], "parse_and_call_func": [0, 54, 58, 73, 117], "parse_arg": 124, "parse_func": [20, 27, 115], "parse_html_to_text": [0, 54, 80, 86], "parse_json": [0, 32, 37, 115], "parsed_respons": 35, "parser": [0, 1, 4, 28, 105, 106, 115, 124], "parser_bas": [0, 32], "parserbas": [0, 1, 4, 32, 33, 34, 35, 36, 37, 115], "part": [1, 6, 41, 103, 119], "parti": [20, 22], "partial": 58, "particip": [0, 31, 38, 39, 103, 110, 113], "pass": [0, 1, 2, 3, 4, 6, 14, 15, 16, 20, 22, 31, 45, 54, 73, 103, 110, 117], "passion": 41, "password": [54, 76], "path": [0, 13, 14, 15, 16, 41, 42, 44, 46, 47, 51, 52, 53, 54, 62, 63, 64, 66, 67, 83, 98, 99, 101, 109, 121], "path_db": [0, 13, 120], "path_log": 12, "path_sav": 111, "path_to_gte_qwen2_7b_instruct": 124, "path_to_your_data_dir_1": 124, "path_to_your_python_code_data_dir": 124, "patient": 41, "pattern": [32, 36], "payload": 91, "pcm": [54, 67], "pdf": 124, "peer": 41, "peerless": 41, "percept": 41, "perform": [1, 3, 41, 54, 82, 88, 89, 102, 103, 110], "period": 41, "permiss": [54, 84], "persist": 45, "persist_dir": [42, 44], "persist_root": 45, "person": [41, 54, 84, 110], "pessimist": 41, "phase": 110, "phenomenon": [54, 84], "photo": [54, 85], "photo0": [54, 85], "photo_count": [54, 85], "photo_data": [54, 85], "phrase": 41, "physic": 41, "pictur": [20, 21, 109, 119], "pid": [54, 82, 120], "piec": [1, 6, 14, 15, 54, 59], "pip": [54, 56, 125, 127], "pipe": [110, 113], "pipe1": 113, "pipe2": 113, "pipe3": 113, "pipelin": [0, 42, 100, 103, 105, 106, 107, 109, 122, 129], "pipelinebas": [0, 5, 38, 40, 113], "piplin": 45, "placehold": [0, 17, 18, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 38, 39, 40, 41, 46, 47, 51, 53, 93, 103, 113], "placeholdermessag": [0, 17, 19, 46, 47, 49], "placeholdernod": [95, 100, 103], "plain": [1, 4], "plan": 41, "platform": [20, 26, 29, 41, 67], "play": [41, 110, 118], "playback": [54, 67], "player": [98, 99, 110], "player1": 110, "player2": 110, "player3": 110, "player4": 110, "player5": 110, "player6": 110, "player_nam": 110, "playwright": [54, 56, 125], "pleas": [1, 4, 20, 23, 25, 41, 51, 52, 54, 60, 66, 82, 84, 117], "pledg": 41, "plot": [41, 54, 59], "plt": [54, 59], "plus": [20, 21, 54, 66, 114, 119], "png": [54, 67, 119], "point": [41, 54, 56, 67, 90, 98], "poison": 110, "pool": [1, 2, 51, 52, 53], "pop": [110, 124], "popular": 41, "port": [0, 1, 2, 8, 11, 17, 18, 19, 20, 25, 46, 47, 51, 52, 53, 54, 75, 76, 90, 121, 122, 124], "pose": [41, 54, 59], "posit": 41, "possess": 41, "possibl": 41, "post": [20, 24, 27, 41, 42, 43, 44, 110, 124], "post_api": [20, 24, 27, 114], "post_api_chat": [20, 27, 114], "post_api_dall": 27, "post_api_dall_": [27, 114], "post_api_embed": [27, 114], "post_arg": [20, 27], "post_model": [0, 20, 124], "post_process": [0, 42, 43], "postalcod": [54, 85], "postapichatwrapp": [0, 20, 27, 114], "postapidallewrapp": [0, 20, 27, 114], "postapiembeddingwrapp": [0, 20, 27, 114, 124], "postapimodelwrapp": [20, 27], "postapimodelwrapperbas": [0, 20, 27, 114], "postprocessing_model": [42, 43], "potenti": [1, 9, 41, 42, 44, 54, 59, 111], "potion": 110, "power": [41, 54, 82, 84], "practic": [41, 54, 56], "pre": 127, "preced": [54, 85], "precis": 41, "predecessor": 102, "predict": 41, "prefer": 41, "prefix": [13, 20, 21, 54, 81, 99, 125], "prepar": [32, 36, 41, 110, 112], "preprocess": [45, 54, 86], "presenc": 41, "present": [41, 54, 59], "preserv": [14, 16, 54, 69], "preserve_ord": [14, 16, 54, 69], "press": [41, 54, 56], "pretend": 115, "prevent": [14, 15, 16, 20, 22, 41, 59, 103], "previous": [88, 89], "price": 41, "primari": 41, "principl": 41, "print": [0, 1, 6, 7, 12, 13, 17, 18, 54, 58, 66, 67, 82, 84, 85, 87, 109, 112, 115, 116, 117, 119, 120, 121, 123, 124, 125], "print_llm_usag": [0, 13, 106, 120], "priorit": 41, "prioriti": [17, 18], "pro": [20, 22, 114, 119], "problem": [7, 41], "problemat": 111, "proceed": 101, "process": [1, 2, 3, 4, 6, 9, 20, 28, 41, 42, 43, 44, 45, 51, 52, 54, 59, 73, 79, 86, 88, 89, 102, 111, 112, 121], "processed_func": [54, 73], "produc": [1, 3, 4, 6, 88, 89, 112], "product": 41, "profession": 41, "profici": 41, "profil": 41, "program": [41, 54, 56, 84], "programm": [54, 84], "progress": [41, 45], "project": [0, 10, 13, 41, 88, 89, 120, 122], "promot": 41, "prompt": [0, 1, 2, 3, 4, 6, 7, 9, 10, 20, 21, 22, 23, 24, 25, 29, 30, 32, 36, 42, 43, 54, 66, 67, 73, 79, 86, 88, 89, 93, 105, 106, 107, 110, 112, 115, 116, 117, 118, 119, 120, 122], "prompt1": [20, 21, 23, 24, 29, 30], "prompt2": [20, 21, 23, 24, 30], "prompt_eval_count": [20, 25], "prompt_eval_dur": [20, 25], "prompt_gen_method": 123, "prompt_gener": 123, "prompt_not": 41, "prompt_token": [13, 20, 23, 26, 29, 30, 120, 124], "prompttyp": 118, "proper": [54, 73], "properti": [1, 2, 13, 17, 18, 19, 20, 28, 32, 34, 36, 54, 56, 58, 73, 115, 117], "prospect": 41, "protect": [41, 91], "protobuf": 49, "protocol": [1, 5, 48], "provid": [1, 2, 4, 9, 14, 16, 17, 18, 20, 22, 32, 34, 36, 41, 42, 44, 54, 59, 67, 73, 79, 84, 85, 86, 88, 89, 91, 99, 101, 102, 103, 117, 124], "provok": 41, "prowess": 41, "psycholog": 41, "pte": [54, 82], "public": [54, 82], "published_d": [54, 85], "pull": [20, 22, 25], "pulsat": 41, "purpos": [20, 28, 41, 110], "puzzl": 41, "py": [42, 44, 58, 59, 81, 93, 101, 107, 110, 122, 124], "pydant": [32, 34, 54, 56, 115], "pypi": 108, "python": [51, 52, 54, 58, 59, 60, 84, 101, 102, 103, 105, 107, 108, 109, 110, 111, 117, 118, 121, 122, 124, 129], "python3": 108, "pythonservicenod": [95, 100, 103], "qianwen": [20, 21], "qualiti": [41, 54, 67, 88, 89], "quarter": 41, "queri": [1, 6, 14, 16, 41, 42, 43, 44, 45, 54, 69, 73, 75, 76, 77, 81, 82, 84, 85, 87, 88, 89, 117, 123, 124], "query_mongodb": [0, 54, 74, 75, 117], "query_mysql": [0, 54, 74, 76, 117], "query_sqlit": [0, 54, 74, 77, 117], "query_transform": 45, "query_transform_cookbook": 45, "quest": 41, "question": [41, 45, 54, 82, 84, 117], "queue": 99, "quick": [20, 21, 41], "quota": 11, "quotaexceedederror": [0, 11, 106], "quotaexceederror": 11, "qwen": [54, 66, 114, 119, 120], "qwen2": 124, "qwen_emb_config": [42, 44, 124], "rag": [0, 1, 6, 20, 29, 105, 106, 129], "rag_ag": [0, 1], "rag_storag": [42, 44, 45], "rag_work": 124, "rais": [1, 9, 11, 20, 27, 32, 34, 36, 91, 93, 101, 112, 118], "raise_except": [54, 73], "ralli": 41, "random": [0, 8, 13, 20, 29, 41, 51, 52, 54, 67, 123], "rang": [14, 15, 20, 29, 38, 40, 41, 88, 89, 103, 110, 113], "rank": [41, 54, 85], "ranking_data": [54, 85], "ranking_out_of": [54, 85], "ranking_str": [54, 85], "rate": [54, 85], "rather": [17, 18, 118], "rating_image_url": [54, 85], "ration": 41, "raw": [11, 20, 28, 54, 86, 102], "raw_info": 102, "raw_respons": [0, 11], "re": [1, 7, 20, 21, 23, 24, 25, 29, 30, 54, 86, 119], "reach": 115, "react": [1, 7, 112, 123], "react_ag": [0, 1], "reactag": [0, 1, 7, 103, 112, 115, 117, 122], "reactagentnod": [95, 100, 103], "read": [13, 20, 26, 30, 54, 63, 64, 103, 110], "read_json_fil": [0, 54, 61, 63, 117], "read_text_fil": [0, 54, 61, 64, 117], "readabl": 41, "readi": [42, 44], "readm": 114, "readtextservicenod": [95, 100, 103], "real": [17, 19, 41], "realiz": 115, "realm": 41, "reason": [1, 7, 11, 41], "rec": [54, 82], "receiv": [41, 124], "recent": [14, 15], "recent_n": [14, 15, 16, 118], "recent_n_mem_for_retriev": [1, 6, 124], "recogn": [88, 89], "recommend": [41, 54, 87], "reconstruct": 41, "record": [1, 2, 8, 11, 13, 17, 19, 112], "recoveri": 41, "rectitud": 41, "recurs": [103, 124], "red": 41, "redirect": 12, "redund": 41, "refer": [1, 4, 7, 17, 18, 20, 21, 22, 23, 25, 26, 41, 42, 44, 45, 54, 66, 67, 81, 82, 84, 88, 89, 110, 114, 117, 118], "referenc": 58, "reference_model": [88, 89], "refin": [41, 88, 89], "reflect": 41, "refrain": 41, "refresh": 45, "refresh_index": [42, 45], "regex": [32, 36], "regex_tagged_content_pars": [0, 32], "regextaggedcontentpars": [0, 32, 36], "region": [41, 54, 67], "regist": [1, 2, 11, 54, 73, 116, 117, 121], "register_agent_class": [0, 1, 2], "registri": [1, 2, 20, 25], "relat": [1, 11, 13, 14, 38, 41, 42, 46, 51, 54, 87, 103], "releas": [1, 2], "relev": [14, 16, 41], "reliabl": [88, 89], "remain": [41, 110], "remind": [32, 34, 36, 37, 41], "remot": [46, 47], "remote_machine_port": 122, "remov": [1, 2, 13, 54, 56, 59, 102], "remove_duplicates_from_end": [95, 100, 102], "remove_interactive_mark": [0, 54, 55, 56, 125], "renown": 41, "repeat": [103, 110], "replac": [54, 56], "repli": [0, 1, 2, 3, 4, 6, 7, 8, 9, 35, 51, 52, 53, 88, 89, 99, 110, 112, 115, 116, 117, 118, 121, 123, 124], "replic": [88, 89, 103], "repons": 112, "report": 41, "repositori": [20, 22, 81], "repres": [38, 40, 54, 84, 85, 102, 103, 111], "represent": 118, "reput": 41, "request": [1, 2, 8, 20, 21, 22, 25, 27, 30, 41, 46, 47, 49, 51, 52, 53, 54, 73, 83, 85, 86, 111, 117, 124], "request_id": [20, 21, 30], "requir": [0, 1, 4, 9, 11, 20, 21, 23, 24, 25, 26, 27, 29, 30, 31, 32, 34, 36, 37, 39, 41, 54, 56, 85, 91, 93, 102, 112, 114, 115, 117, 124], "require_arg": [54, 73], "require_url": [1, 9, 112], "required_ext": 124, "required_key": [0, 1, 9, 32, 34, 36, 37, 110, 112, 115], "requiredfieldnotfounderror": [0, 11, 32, 34, 106], "res": [115, 123], "res_dict": 115, "res_format": [54, 67], "res_of_dict_input": 117, "res_of_string_input": [54, 58, 117], "research": 41, "reserv": [1, 7], "reset": [54, 58, 98, 99], "reset_audi": [0, 1, 2], "reset_glb_var": [95, 96, 98], "reset_notebook": [0, 54, 57, 58], "resetexcept": [95, 96, 99], "resolut": [13, 120], "resolv": 41, "reson": 41, "resourc": [41, 46, 47, 49, 51, 53], "respect": [41, 54, 59], "respond": [32, 37, 41, 110, 115], "respons": [0, 1, 2, 3, 4, 6, 7, 8, 10, 11, 13, 17, 18, 20, 21, 22, 23, 25, 26, 29, 30, 31, 32, 33, 34, 35, 36, 37, 41, 46, 47, 54, 56, 71, 85, 86, 87, 88, 89, 103, 110, 112, 114, 115, 116, 117, 123, 124], "response_prompt_templ": 41, "responseformat": [0, 10, 106], "responseparsingerror": [0, 11, 106], "responsestub": [0, 46, 47], "rest": [54, 84], "restrict": 41, "result": [1, 2, 8, 20, 21, 32, 36, 41, 45, 54, 58, 62, 71, 73, 75, 76, 77, 81, 82, 83, 84, 85, 86, 102, 103, 110, 117, 123], "result_url1": [20, 21], "result_url2": [20, 21], "results_per_pag": [54, 82], "resurrect": 110, "retain": 41, "retri": [1, 4, 20, 27, 54, 83], "retriev": [0, 1, 6, 14, 16, 42, 43, 45, 54, 85, 87, 98, 99, 103, 124, 125], "retrieval_from_list": [54, 68], "retrieve_by_embed": [0, 14, 16, 118], "retrieve_from_list": [0, 54, 68, 69, 117], "retrieved_doc": [42, 43], "retriv": [1, 6], "retry_interv": [20, 27], "return": [1, 4, 8, 9, 13, 14, 15, 16, 17, 18, 19, 20, 21, 28, 32, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 54, 56, 58, 66, 67, 69, 73, 75, 76, 77, 79, 81, 82, 84, 86, 87, 99, 110, 112, 113, 115, 116, 117, 118, 120, 123, 124, 126, 127], "return_typ": 118, "return_var": 103, "reusabl": [42, 44], "reveal": [41, 110], "revers": [14, 16], "review": [54, 85], "review_rating_count": [54, 85], "revis": 41, "rewrit": [42, 44], "rife": 41, "righteous": 41, "rigid": 41, "risk": [41, 54, 59], "rival": 41, "rm": [54, 60], "rm_audienc": [0, 1, 2], "rm_databas": [0, 13], "rn": [54, 81], "roadmap": 41, "robot": 41, "role": [0, 1, 2, 3, 9, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 29, 30, 41, 54, 79, 99, 110, 112, 115, 116, 118, 119, 122], "romanc": 41, "romant": 41, "root": 45, "round": [41, 88, 89, 110], "rout": [41, 103, 124], "rpc": [0, 1, 2, 8, 17, 19, 51, 53, 105, 106, 107], "rpc_agent": [0, 1], "rpc_agent_cli": [0, 46], "rpc_agent_pb2": [0, 46], "rpc_agent_pb2_grpc": [0, 46], "rpcagent": [0, 1, 8, 17, 19, 46, 49], "rpcagentcli": [0, 17, 19, 46, 47, 121], "rpcagentserverlaunch": [0, 51, 52, 121, 122], "rpcagentservic": [0, 46, 49, 51, 53], "rpcagentstub": [0, 46, 49], "rpcmsg": [0, 46, 51, 53], "rpcserversidewrapp": [51, 53], "rule": 110, "run": [0, 1, 2, 8, 13, 41, 45, 46, 47, 49, 54, 58, 59, 98, 100, 102, 111, 120, 122, 124], "run_20240731": 120, "run_app": [95, 96, 98], "run_code_on_notebook": [0, 54, 57, 58], "run_dir": [13, 90, 120, 122], "run_id": [13, 120], "runnabl": 102, "runner": 0, "runtim": [0, 13, 90], "runtime_id": 0, "runtime_info": 13, "safe": 41, "safeti": [41, 54, 59], "sambert": [54, 66], "same": [0, 31, 41, 88, 89, 103, 117], "sample_r": [54, 66], "sampler": [54, 66], "sanit": 102, "sanitize_node_data": [95, 100, 102], "satisfi": [54, 79], "save": [0, 12, 13, 14, 15, 16, 32, 36, 46, 47, 54, 66, 67, 83, 110], "save_api_invoc": [0, 13], "save_api_invok": [0, 13, 120], "save_cod": [0, 13, 120], "save_dir": [0, 13, 54, 66, 67], "save_fil": [0, 13], "save_imag": [0, 13], "save_loc": 13, "save_log": [0, 13, 120], "save_python_cod": [0, 13], "save_runtime_inform": [0, 13], "savori": 41, "scenario": [20, 21, 23, 24, 25, 29, 30, 32, 36, 41, 118], "scene": 41, "schema": [32, 34, 54, 73, 115, 117], "school": 41, "scienc": [54, 82], "scientif": 41, "scope": [41, 50], "score": [54, 69], "score_func": [54, 69], "screen": 41, "screenshot": [54, 56], "script": [41, 107, 108, 114], "scriptwrit": 41, "scroll": [54, 56], "search": [0, 41, 54, 73, 80, 81, 82, 85, 87, 90, 103, 117], "search_queri": [54, 81], "search_result": [54, 82], "search_tripadvisor": [54, 85], "season": 41, "second": [20, 21, 41, 46, 47, 51, 52, 54, 56, 59, 93, 119], "secret": 91, "secret_key": 91, "section": 41, "secur": [41, 54, 59, 91], "sed": [54, 60], "see": [1, 2, 41, 119, 125], "see_all_photo": [54, 85], "seed": [20, 21, 23, 25, 26, 30, 114], "seek": 41, "seen": [41, 103], "seen_ag": 103, "seer": 110, "seer_pars": 110, "segment": [14, 15, 16], "select": [41, 54, 86, 98, 121], "selected_tags_text": [54, 86], "self": [1, 6, 13, 41, 42, 43, 54, 73, 110, 112, 113, 114, 115, 116, 117, 118, 123], "self_define_func": [54, 86], "self_parse_func": [54, 86], "selim": [54, 82], "sell": [54, 84], "send": [12, 17, 18, 98, 99, 118], "send_audio": [95, 96, 98], "send_imag": [95, 96, 98], "send_messag": [95, 96, 98], "send_msg": [95, 96, 99], "send_player_input": [95, 96, 99], "send_reset_msg": [95, 96, 99], "sender": [17, 18, 19, 118], "senior": 41, "sens": 41, "sensit": 41, "sentenc": [41, 123], "sentence_transform": [123, 124], "sentencesplitt": 124, "sentencetransform": [123, 124], "seo": 41, "sequenc": [0, 1, 2, 3, 4, 6, 7, 8, 9, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 46, 47, 54, 66, 69, 86, 103, 110, 112, 113, 115, 116, 117, 118, 123], "sequenti": [38, 40, 102, 103], "sequentialpipelin": [0, 38, 39, 40, 109, 110, 122], "sequentialpipelinenod": [95, 100, 103], "seri": [8, 54, 82, 103], "serial": [0, 13, 14, 16, 17, 18, 19, 46, 47, 54, 63, 106, 118], "serializ": 50, "serialized_dict": [17, 18, 19], "serious": 41, "serv": [41, 103, 110], "server": [0, 1, 2, 8, 11, 17, 19, 20, 25, 46, 47, 49, 54, 75, 76, 105, 106], "server_host": 121, "server_id": [51, 52, 53], "server_info": 121, "server_port": 121, "servic": [0, 41, 46, 49, 51, 100, 103, 105, 106, 108, 121, 125, 129], "service_bot": 112, "service_func": [0, 54, 73], "service_respons": [0, 54], "service_status": [0, 54], "service_toolkit": [0, 1, 7, 54, 58, 117], "servicebot": 112, "serviceexecstatus": [0, 54, 66, 67, 71, 72, 79, 81, 82, 84, 85, 87, 117], "serviceexestatus": [54, 71, 117], "servicefactori": [0, 54, 73], "servicefunct": [0, 54, 73], "servicercontext": [51, 53], "servicerespons": [0, 1, 7, 54, 56, 58, 59, 60, 62, 63, 64, 66, 67, 69, 70, 71, 73, 75, 76, 77, 79, 81, 82, 83, 84, 85, 86, 87], "servicetoolkit": [0, 1, 7, 54, 58, 73, 125], "session": [54, 60], "set": [0, 1, 2, 3, 4, 6, 8, 9, 13, 14, 16, 20, 23, 30, 35, 41, 42, 44, 46, 47, 51, 52, 53, 54, 56, 59, 82, 88, 89, 101, 102, 103, 114, 118, 124], "set_interactive_mark": [0, 54, 55, 56, 125], "set_model_config": [0, 46, 47, 49, 51, 53, 121], "set_pars": [0, 1, 4, 110, 115], "set_respons": [0, 46, 47], "setitim": [54, 59, 93], "setup": [12, 107], "setup_logg": [0, 12, 106], "setup_ms_servic": 124, "sever": 41, "shape": 41, "sharabl": [42, 44], "share": [0, 31, 41], "sharp": 41, "shell": [54, 60], "shift": 41, "shimmer": [54, 67], "shock": 41, "shoot": 41, "short": 41, "shot": 41, "should": [0, 1, 2, 12, 14, 15, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 32, 33, 34, 36, 41, 54, 56, 58, 73, 85, 87, 88, 89, 110, 114, 115, 118], "shouldn": [20, 25], "show": [6, 13, 41, 45, 54, 59, 62, 88, 89], "show_image_token": [0, 13], "show_intern": [88, 89], "show_text_and_embedding_token": [0, 13], "showcas": 41, "showprogress": 45, "shrewd": 41, "shrink": 10, "shrinkpolici": [0, 10, 106], "shutdown": [0, 51, 52], "side": 110, "sig": 117, "sign": 91, "signal": [54, 59, 93, 99], "signatur": 117, "signific": 103, "similar": [1, 6, 41, 42, 43, 45, 54, 68, 123], "similarity_top_k": [1, 6, 42, 43, 45, 124], "simpl": [1, 3, 20, 22, 42, 44, 111], "simpledirectoryread": 124, "simpli": [88, 89], "sinc": [41, 54, 59, 93, 119], "singapor": [54, 82], "singl": [12, 20, 21, 22, 25, 54, 66, 88, 89], "singleton": 13, "sir": 41, "situat": 41, "siu": [54, 82], "siu53274": [54, 82], "size": [0, 1, 2, 14, 15, 16, 51, 52, 53, 54, 66, 67, 114, 118], "skill": 41, "sky": [20, 25, 54, 67], "skylin": [54, 67], "sleep": [54, 56], "slow": 41, "slower": 111, "small": [54, 85, 114], "smooth": 41, "snippet": [41, 54, 84], "so": [1, 4, 32, 37, 54, 60, 73, 84], "social": 41, "societi": 41, "socket": [51, 52], "socotra": [54, 85], "soft": 41, "soldier": 41, "solid": 41, "solo": [54, 85], "solut": [20, 21, 41, 42, 43], "solv": [7, 41], "some": [1, 2, 8, 10, 17, 18, 19, 41, 54, 59, 73, 84, 87, 88, 89, 97, 114, 121, 122, 123], "some_messag": 113, "someon": [54, 84], "someth": [110, 111], "sometim": [41, 110], "song": [54, 82], "soon": 115, "sop": 110, "sort": 102, "sourc": [8, 42, 44, 54, 62, 73, 85, 86, 88, 89, 108, 124], "source_kwarg": 103, "source_path": [54, 62], "sparrow": [54, 82], "speak": [0, 1, 2, 7, 9, 20, 22, 35, 41, 112, 115, 116, 123], "speaker": 111, "special": [38, 40, 41, 69, 110], "specif": [0, 1, 2, 9, 14, 16, 20, 24, 32, 35, 37, 41, 46, 47, 49, 51, 53, 54, 56, 59, 85, 99, 102, 103, 112, 115], "specifi": [1, 4, 5, 13, 20, 24, 26, 30, 41, 51, 52, 54, 59, 62, 66, 67, 73, 83, 91, 93, 103, 110, 112], "speech": [41, 54, 67], "speed": [54, 67], "sphinx_doc": [42, 44, 124], "spice": 41, "spm": [20, 21], "spoken": [1, 2, 9], "spread": 41, "sql": [54, 76, 117], "sql_queri": [0, 54], "sqlite": [54, 74, 75, 117], "src": 107, "ssh": 122, "stabl": 45, "stage": 43, "stanc": 41, "standard": [41, 54, 59, 67, 88, 89], "standard_1024": 120, "start": [1, 2, 8, 20, 21, 25, 51, 52, 54, 81, 82, 90, 101, 110, 111, 121, 123], "start_workflow": [95, 100, 101], "state": [54, 60, 85, 112, 125], "state_dict": [0, 13, 106, 120], "static": [1, 7, 20, 22, 24, 26, 49], "static_format": [0, 20, 26], "statur": 41, "status": [0, 41, 54, 58, 66, 67, 71, 72, 73, 81, 82, 84, 85, 87, 117, 122], "status_cod": [20, 21], "stay": [20, 25], "stderr": [12, 111], "stduio": 121, "stem": [54, 59], "step": [1, 7, 41, 102, 112], "still": [13, 54, 56], "stop": [0, 1, 8, 20, 21, 23, 26, 29, 30, 46, 47, 49, 51, 53, 121], "stop_ev": [51, 53], "storag": 43, "store": [1, 2, 4, 8, 9, 14, 15, 16, 17, 18, 19, 32, 33, 34, 35, 37, 42, 43, 45, 54, 86, 98, 115], "store_and_index": 124, "stori": 41, "storyboard": 41, "storylin": 41, "str": [0, 1, 2, 3, 4, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 41, 42, 43, 44, 45, 46, 47, 50, 51, 52, 53, 54, 56, 58, 59, 60, 62, 63, 64, 66, 67, 71, 73, 75, 76, 77, 79, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 93, 94, 98, 99, 101, 102, 103, 104, 112, 114, 117, 118, 123, 124], "straightforward": [20, 22, 41], "strateg": [41, 110], "strategi": [0, 10, 20, 21, 22, 23, 24, 25, 29, 30, 41, 106, 110], "stream": [0, 12, 20, 21, 22, 23, 25, 26, 28, 29, 30, 116], "street": [54, 85], "street1": [54, 85], "street2": [54, 85], "strength": [41, 88, 89], "strftime": 124, "strict": 41, "string": [1, 2, 9, 14, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 30, 32, 34, 42, 43, 45, 50, 54, 59, 60, 73, 81, 82, 84, 86, 91, 101, 102, 104, 111, 115, 117, 118], "string_input": 117, "stringmsg": [51, 53], "strong": 41, "structur": [15, 41, 45, 54, 82, 85, 88, 89, 103], "struggl": 41, "stub": [46, 47], "student": 41, "studio": [0, 11, 12, 51, 52, 53, 95, 96, 97, 105, 106, 110, 116, 120, 129], "studio_ip": [121, 122], "studio_port": [121, 122], "studio_url": [0, 13, 51, 52, 53, 120, 121, 122], "studioerror": [0, 11, 106], "studioregistererror": [0, 11, 106], "style": [41, 54, 67, 73], "sub": [1, 2, 46, 47, 52], "subcategori": [54, 85], "subclass": [1, 2, 5, 8, 103], "submit": [54, 56], "submodul": [95, 106], "subpackag": 106, "subprocess": [51, 52, 121], "subsequ": [41, 103], "subset": [54, 86], "substanc": [54, 84], "substr": [20, 26], "substrings_in_vision_models_nam": [0, 20, 26], "succeed": [20, 21], "success": [0, 12, 13, 20, 21, 46, 47, 54, 58, 62, 63, 64, 66, 67, 71, 72, 79, 82, 84, 85, 86, 87, 91, 111, 117], "sucess": [54, 60], "such": [41, 51, 52, 54, 56, 59, 102, 109, 114], "suggest": [41, 54, 73], "suit": 102, "suitabl": [20, 21, 23, 24, 25, 29, 30, 41, 112], "summar": [0, 10, 54, 78, 87, 88, 89, 117], "summari": [46, 47, 54, 79], "sun": [54, 67], "sung": 41, "sunni": 119, "sunset": [54, 66, 67], "super": [114, 118, 123], "suppli": [54, 67], "support": [1, 7, 20, 21, 41, 50, 54, 59, 60, 71, 75, 81, 102, 114, 117], "survey": 41, "surviv": 110, "survivor": 110, "survivors_discuss_pars": 110, "survivors_vote_pars": 110, "suspect": 110, "svg": [54, 85], "sweet": 41, "switch": [38, 39, 40, 103, 113], "switch_result": 113, "switchpipelin": [0, 38, 39, 40], "switchpipelinenod": [95, 100, 103], "sword": 41, "swordsman": 41, "swordsmanship": 41, "sworn": 41, "symposium": [54, 82], "synthes": [42, 43, 88, 89], "synthesi": [20, 21, 45, 114], "sys_prompt": [1, 2, 3, 4, 6, 7, 109, 110, 112, 123, 124], "sys_python_guard": [54, 57, 59], "syst": [54, 82], "system": [1, 2, 3, 4, 6, 7, 13, 17, 18, 19, 20, 21, 23, 24, 25, 29, 30, 41, 54, 59, 79, 86, 112, 118, 119, 122], "system_fingerprint": [20, 26], "system_prompt": [41, 54, 79], "systempromptcompar": [0, 41, 123], "systempromptgeneratorbas": [0, 41, 123], "systempromptoptim": [0, 41, 123], "sythesi": 114, "tab": [54, 56], "tabl": 41, "tactic": 41, "tag": [11, 32, 33, 34, 36, 37, 41, 54, 86, 115], "tag_begin": [0, 32, 33, 34, 37, 115], "tag_end": [0, 32, 33, 34, 37, 115], "tag_lines_format": [32, 37], "tag_nam": [0, 54, 55, 56], "tage": [54, 56], "tagged_cont": [32, 37], "tagged_content_pars": [0, 32], "tagged_content_pattern": [32, 36], "taggedcont": [0, 32, 37, 115], "tagnotfounderror": [0, 11, 106], "take": [1, 2, 14, 15, 16, 43, 54, 56, 69, 85, 88, 89], "taken": [1, 2, 8, 110], "talent": 41, "tan": [54, 82], "tang": [54, 82], "target": [41, 49], "task": [1, 2, 8, 17, 19, 41, 51, 53, 88, 89, 114, 123], "task_id": [17, 18, 19, 20, 21, 46, 47], "task_metr": [20, 21], "task_status": [20, 21], "tast": 41, "teach": 41, "teacher": 41, "teammat": 110, "teamwork": 41, "technic": 41, "techniqu": 41, "technolog": [54, 82], "tell": 118, "temperatur": [20, 21, 23, 24, 25, 26, 29, 30, 54, 67, 110, 114, 124], "templat": [32, 36, 38, 40, 41], "temporari": [14, 16, 93], "temporary_memori": [0, 14], "temporarymemori": [0, 14, 16], "tend": 41, "tension": 41, "tensorflow": 107, "term": [41, 54, 84], "termin": [12, 25, 51, 52, 54, 59, 116], "terminolog": 41, "test": [41, 59, 107, 119, 124], "test_config": 124, "text": [0, 1, 4, 13, 20, 21, 26, 28, 32, 33, 34, 35, 36, 37, 54, 56, 61, 66, 67, 73, 79, 86, 87, 98, 99, 103, 109, 112, 114, 115, 116, 117, 119, 120, 123], "text_and_embed": 120, "text_chunk": 116, "text_cmd": [54, 73], "text_complet": 124, "text_index": [20, 21], "text_process": [0, 54], "text_to_audio": [54, 66], "textur": 41, "than": [17, 18, 20, 21, 41, 54, 79, 88, 89, 110, 111, 118], "thank": [111, 119], "that": [0, 1, 2, 4, 5, 7, 8, 9, 11, 14, 16, 17, 18, 20, 21, 23, 24, 25, 26, 27, 30, 31, 32, 35, 36, 37, 38, 39, 40, 41, 46, 47, 51, 52, 53, 54, 56, 59, 60, 67, 73, 75, 76, 77, 83, 84, 87, 88, 89, 93, 102, 103, 111, 114, 118], "the": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 51, 52, 53, 54, 56, 58, 59, 60, 62, 63, 64, 66, 67, 69, 70, 71, 73, 75, 76, 77, 79, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 93, 94, 97, 98, 99, 101, 102, 103, 109, 110, 111, 112, 114, 115, 116, 117, 118, 119, 120, 121, 123, 125, 126, 127], "thee": 41, "their": [1, 2, 7, 8, 14, 16, 20, 21, 23, 24, 25, 29, 30, 32, 37, 38, 39, 40, 41, 45, 54, 56, 73, 82, 88, 89, 110], "them": [8, 13, 38, 40, 41, 54, 60, 67, 110], "themselv": [32, 36], "then": [1, 3, 4, 6, 9, 14, 16, 20, 21, 32, 37, 41, 54, 58, 86, 102], "there": [17, 18, 20, 21, 26, 41, 54, 59, 112], "therefor": [32, 36], "these": [41, 88, 89, 102, 119], "they": [41, 110], "thi": 41, "thing": [41, 54, 84, 85], "think": [41, 99], "this": [0, 1, 2, 6, 7, 8, 12, 13, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 28, 29, 30, 31, 32, 36, 37, 41, 45, 46, 47, 50, 51, 52, 54, 56, 59, 67, 69, 81, 84, 91, 93, 101, 102, 103, 109, 110, 112, 114, 115, 119], "thorough": 41, "those": [41, 88, 89], "thou": 41, "thought": [1, 2, 7, 8, 41, 110, 115], "thread": [12, 46, 47], "three": [0, 31], "through": [41, 103], "thumbnail": [54, 85], "ti": [54, 81], "tight": 41, "time": [1, 2, 9, 41, 51, 52, 53, 54, 56, 59, 93, 103, 110, 118, 120, 122], "timeout": [1, 2, 8, 9, 20, 24, 27, 30, 46, 47, 49, 51, 52, 54, 56, 58, 59, 83, 86, 99], "timeouterror": [1, 9], "timer": [0, 92, 93], "timestamp": [0, 17, 18, 19, 118, 120, 124], "timezon": [54, 85], "ting": 41, "titl": [41, 54, 56, 81, 82, 84, 87, 115], "to": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 51, 52, 53, 54, 56, 58, 59, 60, 62, 63, 64, 66, 67, 69, 71, 73, 75, 76, 77, 79, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 93, 98, 99, 101, 102, 103, 104, 109, 110, 112, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 125, 126, 127], "to_all_continu": 110, "to_all_r": 110, "to_all_vot": 110, "to_cont": [32, 34, 35, 37, 115], "to_dict": [0, 17, 18, 19], "to_dist": [0, 1, 2, 112], "to_list_str": [42, 43, 45, 124], "to_mem": [14, 15, 16, 118], "to_memori": [32, 34, 35, 37, 115], "to_metadata": [32, 34, 35, 36, 37, 115], "to_openai_dict": [0, 92, 93], "to_seer": 110, "to_seer_result": 110, "to_str": 118, "to_witch_resurrect": 110, "to_wolv": 110, "to_wolves_r": 110, "to_wolves_vot": 110, "today": [20, 21, 23, 24, 25, 26, 29, 30, 54, 66, 119], "todo": [15, 42, 44], "togeth": 110, "togethercomput": [88, 89], "toke": 24, "token": [13, 20, 21, 29, 54, 79, 91, 94, 115, 120], "token_limit_prompt": [54, 79], "token_util": [0, 92], "tolist": 124, "tone": 41, "tongu": 41, "tongyi": [20, 21], "tongyi_chat": [20, 21], "too": [10, 54, 75, 76, 87], "took": 109, "tool": [1, 7, 41, 54, 73, 117], "toolkit": [54, 58, 73], "tools_calling_format": [0, 54, 73, 117], "tools_instruct": [0, 54, 73, 117], "top": [54, 69, 116, 120, 126, 127], "top_k": [14, 16, 54, 69], "top_p": [20, 29], "topic": 41, "topolog": 102, "total": [20, 21, 26, 30, 110, 120], "total_dur": [20, 25], "total_token": [13, 20, 21, 23, 26, 29, 30, 120, 124], "tour": [54, 85], "tournament": 41, "toward": 41, "tower": [54, 85], "town": 41, "trace": [0, 12, 13, 111], "track": [41, 103], "tradit": 41, "train": 41, "trainer": 41, "trait": 41, "transcrib": [54, 67], "transcript": [54, 67], "transfer": [46, 49], "transform": [41, 42, 44, 54, 82, 114, 123, 124], "transit": 41, "transport": 41, "travel": [41, 54, 85], "travers": 103, "treat": [1, 4], "trend": 41, "tri": [32, 36, 110, 112, 117, 118], "trigger": [38, 39, 40], "trip_typ": [54, 85], "tripadvisor": [54, 80, 117], "tripadvisor_search": [0, 54, 80, 85, 117], "tripadvisor_search_location_detail": [0, 54, 80, 85, 117], "tripadvisor_search_location_photo": [0, 54, 80, 85, 117], "true": [0, 1, 2, 3, 4, 6, 7, 8, 11, 12, 13, 14, 15, 16, 20, 21, 25, 32, 34, 35, 36, 37, 38, 39, 40, 41, 45, 51, 52, 54, 56, 69, 86, 109, 110, 112, 115, 116, 118, 120, 121, 123, 124], "truncat": [0, 10], "truth": 41, "try_parse_json": [32, 36, 115], "tts": [54, 67], "tupl": [1, 2, 3, 4, 6, 7, 8, 9, 20, 28, 32, 37, 54, 64, 73], "turbo": [20, 23, 24, 26, 54, 67, 109, 110, 114, 119, 120], "turn": [41, 54, 73, 110], "tutori": [1, 2, 4, 42, 44, 124], "tutorial_assist": [42, 44], "two": [17, 18, 32, 36, 54, 59, 66, 67, 69, 70, 81, 84, 85, 110, 119], "txt": [64, 124], "type": [0, 1, 2, 6, 8, 11, 14, 15, 16, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 38, 39, 40, 41, 42, 43, 44, 45, 54, 55, 56, 60, 62, 63, 64, 67, 73, 82, 84, 86, 102, 110, 112, 115, 117, 119, 124], "typic": [54, 63, 112], "ui": [90, 98, 99, 122], "uid": [12, 98, 99], "unawar": 41, "uncertain": [11, 41], "uncompromis": 41, "under": [54, 56], "understand": [41, 54, 73, 111, 112], "undetect": 110, "unexpect": 111, "unfamiliar": 41, "unifi": 0, "union": [0, 1, 2, 3, 4, 6, 8, 9, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 41, 54, 56, 59, 66, 67, 88, 89, 90, 110, 112, 113, 115, 117, 118, 123], "uniqu": [1, 2, 41, 42, 44, 51, 53, 54, 84, 85, 87, 103, 109], "unit": [14, 16, 18, 42, 43, 45], "univers": [54, 82], "unix": [54, 59, 93], "unknown": [41, 122], "unless": 110, "unmatch": 41, "unnecessari": 13, "unrel": 41, "unset": 109, "unsur": 41, "until": 110, "untrust": [54, 59], "unwav": 41, "up": [1, 6, 54, 56, 101, 124], "updat": [13, 20, 22, 28, 46, 47, 49, 51, 53, 110, 112, 118], "update_alive_play": 110, "update_image_token": [0, 13], "update_placehold": [0, 46, 47, 49, 51, 53], "update_text_and_embedding_token": [0, 13], "update_valu": [0, 17, 19], "updateplaceholderrequest": [51, 53], "uphold": 41, "url": [0, 1, 9, 13, 17, 18, 19, 20, 21, 26, 27, 28, 51, 52, 53, 54, 55, 56, 66, 67, 82, 83, 85, 86, 107, 109, 112, 114, 117, 118, 119, 121, 122, 125], "url_to_png1": 119, "url_to_png2": 119, "url_to_png3": 119, "urlpars": 86, "us": [20, 22, 54, 84, 110, 117], "usag": [0, 1, 4, 13, 20, 21, 23, 26, 29, 30, 45, 46, 47, 51, 53, 54, 73, 82, 84, 118, 122, 124], "usd": [54, 85], "use": [0, 1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 13, 14, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 34, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 54, 56, 58, 59, 60, 66, 67, 69, 71, 73, 75, 76, 77, 79, 84, 85, 86, 88, 89, 91, 93, 97, 99, 102, 103, 109, 110, 111, 112, 117, 118, 121], "use_dock": [54, 59], "use_memori": [1, 2, 3, 4, 110, 112], "use_monitor": [0, 13, 120], "user": [0, 1, 4, 6, 7, 9, 13, 17, 18, 19, 20, 21, 22, 23, 24, 25, 29, 30, 32, 35, 36, 41, 42, 44, 45, 54, 69, 76, 79, 85, 88, 89, 91, 93, 98, 99, 111, 112, 117, 118, 119, 120, 123], "user_ag": [0, 1, 109], "user_agent_config": 112, "user_input": [41, 95, 96, 99, 123], "user_login": 91, "user_nam": 122, "user_prompt": [41, 123], "user_proxy_ag": 112, "userag": [0, 1, 9, 51, 52, 103, 109, 122], "useragentnod": [95, 100, 103], "usernam": [0, 54, 76, 85, 124, 127], "userreview": [54, 85], "util": [0, 12, 46, 49, 89, 90, 95, 96, 104, 105, 106, 107], "uuid": 99, "uuid4": 118, "v1": [54, 56, 66, 84, 114], "v2": [41, 114, 123], "v4": [20, 30], "valiant": 41, "valid": [1, 4, 11, 86, 102], "valor": 41, "valu": [0, 10, 12, 13, 14, 16, 17, 19, 20, 21, 32, 34, 35, 36, 37, 41, 46, 47, 49, 51, 52, 53, 54, 56, 66, 67, 72, 73, 85, 103, 118], "valueerror": [1, 2, 54, 85, 102], "variabl": [20, 22, 23, 26, 30, 41, 54, 66, 67, 81, 84, 85, 98, 109, 110, 114], "variat": [54, 67], "variation_url1": [54, 67], "variation_url2": [54, 67], "varieti": [54, 84], "various": [41, 54, 59, 71, 88, 89, 102, 117], "vast": 41, "vdb": 43, "ve": 41, "vector": [14, 16, 42, 43, 45], "vegetarian": 41, "vener": 41, "venu": [54, 82], "verbos": [1, 7], "veri": [0, 31, 54, 60], "verif": 91, "verification_token": 91, "vers": 41, "version": [1, 2, 6, 20, 26, 38, 39, 54, 79, 91], "vertex": [20, 22], "via": [1, 4], "video": [13, 41, 54, 71, 117, 118], "view": 91, "villag": [110, 115], "vim": [54, 60], "violat": 41, "virtu": 41, "visa": 41, "visibl": [54, 56], "vision": [20, 26], "visit": [54, 56], "visual": 41, "vivid": [41, 54, 67], "vl": [20, 21, 54, 66, 114, 119, 120], "vllm": [20, 27, 110, 114], "vocabulari": 41, "voic": [54, 67, 112], "vote": 110, "vote_r": 110, "wait": [51, 52, 54, 56], "wait_for_readi": 49, "wait_until_termin": [0, 51, 52, 121], "want": [54, 60], "wanx": [54, 66, 114], "war": 41, "warfar": 41, "warm": 41, "warn": [0, 12, 13, 54, 59, 111], "warrior": 41, "was": [54, 58, 115], "wav": [54, 67], "way": [17, 18, 41, 42, 44], "wbcd": [54, 82], "we": [0, 1, 7, 13, 20, 21, 22, 31, 32, 36, 37, 43, 54, 69, 71, 75, 88, 89, 117, 119], "weak": 41, "weather": [20, 29, 54, 66, 119], "weav": 41, "web": [0, 54, 56, 66, 67, 90, 91, 105, 106, 107, 111, 117, 122, 125], "web_brows": [54, 55], "web_digest": [54, 80], "web_text_or_url": [54, 86], "web_url": [54, 85], "webbrows": [0, 54, 55, 56, 125], "webelementinfo": [0, 54, 55, 56], "webpag": [54, 86], "websit": [1, 9, 118], "weimin": [54, 82], "welcom": [20, 22, 54, 67, 110], "well": [41, 54, 73, 79, 88, 89], "were": 41, "werewolf": [1, 4, 110, 115], "werewolv": 110, "what": [0, 20, 21, 23, 24, 25, 29, 30, 31, 32, 34, 54, 84, 109, 110, 115, 119], "when": [0, 1, 2, 4, 6, 7, 8, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 27, 38, 39, 40, 41, 45, 54, 59, 60, 73, 93, 102, 103, 111, 118], "where": [1, 4, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 32, 36, 41, 54, 56, 62, 63, 64, 67, 86, 102, 103], "whether": [0, 1, 2, 3, 4, 6, 7, 8, 9, 13, 14, 16, 17, 18, 20, 22, 23, 25, 26, 28, 29, 30, 32, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 51, 52, 53, 54, 56, 58, 59, 63, 64, 69, 73, 76, 77, 79, 86, 88, 89, 90, 99, 104, 110, 115], "whi": 41, "which": [0, 1, 2, 3, 4, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 32, 33, 35, 36, 37, 38, 39, 40, 41, 45, 46, 47, 54, 56, 67, 73, 81, 84, 85, 87, 103, 110, 118, 121], "while": [38, 40, 41, 45, 54, 73, 103, 109, 110, 111, 113, 115, 121], "whilelooppipelin": [0, 38, 39, 40, 122], "whilelooppipelinenod": [95, 100, 103], "who": [17, 18, 41, 54, 84, 110, 118], "whole": [32, 34, 35, 36, 37], "whose": 102, "width": [0, 54, 55, 56, 85], "wiki": [54, 67], "wiki_get_category_memb": [54, 87], "wikipedia": [54, 67, 80], "wikipedia_search": [0, 54, 80, 87], "wikipedia_search_categori": [0, 54, 80, 87], "will": [0, 1, 2, 4, 7, 8, 9, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 41, 45, 51, 52, 53, 54, 56, 59, 60, 62, 63, 64, 66, 67, 73, 79, 85, 86, 88, 89, 93, 101, 110, 112, 116, 118], "win": [41, 110], "window": [0, 54, 59], "wise": 41, "wit": 41, "witch": 110, "witch_nam": 110, "witch_resurrect_pars": 110, "with": [0, 1, 2, 5, 6, 7, 8, 9, 11, 13, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 36, 37, 41, 42, 43, 44, 45, 46, 47, 49, 51, 52, 54, 56, 58, 59, 66, 67, 69, 73, 79, 81, 82, 84, 85, 86, 88, 89, 90, 91, 102, 103, 110, 111, 112, 113, 115, 117, 123], "within": [1, 7, 32, 36, 41, 54, 56, 59, 75, 76, 77, 103, 110], "without": [0, 1, 2, 8, 20, 26, 31, 32, 36, 41, 103, 112], "wolf": 110, "wolv": 110, "wolves_discuss_pars": 110, "wolves_vote_pars": 110, "won": [1, 7, 32, 36, 41, 110], "wonder": [20, 21], "word": 41, "work": [1, 4, 41, 42, 44, 54, 62, 69, 93, 110], "workflow": [35, 38, 40, 45, 95, 100, 102, 103, 104], "workflow_dag": [95, 100], "workflow_nod": [95, 100], "workflow_util": [95, 100], "workflownod": [95, 100, 103], "workflownodetyp": [95, 100, 103], "workshop": [54, 82], "workstat": [0, 95], "world": [41, 111, 115], "worldwid": 41, "wrap": [1, 2, 20, 22, 54, 67, 71, 117], "wrapper": [8, 13, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 45, 116, 119, 123], "write": [14, 16, 41, 54, 62, 64, 103, 117, 123], "write_json_fil": [0, 54, 61, 63, 117], "write_review": [54, 85], "write_text_fil": [0, 54, 61, 64, 117], "writetextservicenod": [95, 100, 103], "written": [14, 16, 41, 54, 63, 64], "wrong": 111, "www": [54, 56, 84, 85, 125], "x1": [0, 31], "x2": [0, 31], "x_in": 102, "xiaohongshu": 41, "xxx": [20, 21, 109, 110, 114, 116, 117, 119, 120, 121, 122, 123], "xxx1": 119, "xxx2": 119, "xxxagent": [1, 2], "xxxxx": [54, 86], "year": [41, 54, 82], "yemen": [54, 85], "yes": 115, "yet": [41, 54, 60], "yi": [20, 29, 114], "yi_chat": [20, 29, 114], "yi_model": [0, 20], "yichatwrapp": [0, 20, 29, 114], "you": [1, 7, 14, 16, 20, 21, 22, 23, 24, 25, 26, 29, 30, 32, 33, 41, 51, 52, 54, 56, 58, 59, 60, 79, 86, 87, 88, 89, 109, 110, 111, 114, 115, 118, 119, 123], "young": 41, "your": [1, 2, 3, 20, 23, 24, 41, 51, 52, 54, 73, 84, 85, 87, 88, 89, 109, 110, 115, 119, 121, 123, 127], "your_": [32, 33], "your_api_key": [24, 54, 67, 85, 114], "your_config_nam": [114, 123], "your_cse_id": [54, 84], "your_embed_model_config_nam": 124, "your_google_api_key": [54, 84], "your_json_dictionari": [32, 34], "your_json_object": [32, 34], "your_knowledge_id": 124, "your_meta_prompt": 123, "your_model": 124, "your_organ": [24, 114], "your_prompt": 124, "your_python_cod": 115, "your_python_script_nam": 122, "your_save_path": 111, "yourag": 117, "yourself": 41, "youth": 41, "yu": [54, 82], "yusefi": [54, 82], "yutztch23": [54, 82], "ywjjzgvm": 119, "yyy": 114, "zh": [20, 21, 22, 54, 66, 85], "zhang": [54, 82], "zhichu": [54, 66], "zhipu_model": [0, 20], "zhipuai": [20, 30, 108, 116, 119], "zhipuai_chat": [20, 30, 114, 116], "zhipuai_embed": [20, 30, 114], "zhipuaichatwrapp": [0, 20, 30, 114, 116], "zhipuaiembeddingwrapp": [0, 20, 30, 114], "zhipuaiwrapperbas": [0, 20, 30], "ziwei": [54, 82], "zsz0po": 120}, "titles": ["agentscope package", "agentscope.agents package", "agentscope.agents.agent module", "agentscope.agents.dialog_agent module", "agentscope.agents.dict_dialog_agent module", "agentscope.agents.operator module", "agentscope.agents.rag_agent module", "agentscope.agents.react_agent module", "agentscope.agents.rpc_agent module", "agentscope.agents.user_agent module", "agentscope.constants module", "agentscope.exception module", "agentscope.logging module", "agentscope.manager package", "agentscope.memory package", "agentscope.memory.memory module", "agentscope.memory.temporary_memory module", "agentscope.message package", "agentscope.message.msg module", "agentscope.message.placeholder module", "agentscope.models package", "agentscope.models.dashscope_model module", "agentscope.models.gemini_model module", "agentscope.models.litellm_model module", "agentscope.models.model module", "agentscope.models.ollama_model module", "agentscope.models.openai_model module", "agentscope.models.post_model module", "agentscope.models.response module", "agentscope.models.yi_model module", "agentscope.models.zhipu_model module", "agentscope.msghub module", "agentscope.parsers package", "agentscope.parsers.code_block_parser module", "agentscope.parsers.json_object_parser module", "agentscope.parsers.parser_base module", "agentscope.parsers.regex_tagged_content_parser module", "agentscope.parsers.tagged_content_parser module", "agentscope.pipelines package", "agentscope.pipelines.functional module", "agentscope.pipelines.pipeline module", "agentscope.prompt package", "agentscope.rag package", "agentscope.rag.knowledge module", "agentscope.rag.knowledge_bank module", "agentscope.rag.llama_index_knowledge module", "agentscope.rpc package", "agentscope.rpc.rpc_agent_client module", "agentscope.rpc.rpc_agent_pb2 module", "agentscope.rpc.rpc_agent_pb2_grpc module", "agentscope.serialize module", "agentscope.server package", "agentscope.server.launcher module", "agentscope.server.servicer module", "agentscope.service package", "agentscope.service.browser package", "agentscope.service.browser.web_browser module", "agentscope.service.execute_code package", "agentscope.service.execute_code.exec_notebook module", "agentscope.service.execute_code.exec_python module", "agentscope.service.execute_code.exec_shell module", "agentscope.service.file package", "agentscope.service.file.common module", "agentscope.service.file.json module", "agentscope.service.file.text module", "agentscope.service.multi_modality package", "agentscope.service.multi_modality.dashscope_services module", "agentscope.service.multi_modality.openai_services module", "agentscope.service.retrieval package", "agentscope.service.retrieval.retrieval_from_list module", "agentscope.service.retrieval.similarity module", "agentscope.service.service_response module", "agentscope.service.service_status module", "agentscope.service.service_toolkit module", "agentscope.service.sql_query package", "agentscope.service.sql_query.mongodb module", "agentscope.service.sql_query.mysql module", "agentscope.service.sql_query.sqlite module", "agentscope.service.text_processing package", "agentscope.service.text_processing.summarization module", "agentscope.service.web package", "agentscope.service.web.arxiv module", "agentscope.service.web.dblp module", "agentscope.service.web.download module", "agentscope.service.web.search module", "agentscope.service.web.tripadvisor module", "agentscope.service.web.web_digest module", "agentscope.service.web.wikipedia module", "agentscope.strategy package", "agentscope.strategy.mixture_of_agent module", "agentscope.studio package", "agentscope.studio.utils module", "agentscope.utils package", "agentscope.utils.common module", "agentscope.utils.token_utils module", "agentscope.web package", "agentscope.web.gradio package", "agentscope.web.gradio.constants module", "agentscope.web.gradio.studio module", "agentscope.web.gradio.utils module", "agentscope.web.workstation package", "agentscope.web.workstation.workflow module", "agentscope.web.workstation.workflow_dag module", "agentscope.web.workstation.workflow_node module", "agentscope.web.workstation.workflow_utils module", "AgentScope \u6587\u6863", "agentscope", "\u5173\u4e8eAgentScope", "\u5b89\u88c5", "\u5feb\u901f\u5f00\u59cb", "\u6837\u4f8b\uff1a\u72fc\u4eba\u6740\u6e38\u620f", "\u65e5\u5fd7", "Agent", "Pipeline\u548cMsgHub", "\u6a21\u578b", "\u7ed3\u679c\u89e3\u6790", "\u6d41\u5f0f\u8f93\u51fa", "\u5de5\u5177", "\u8bb0\u5fc6", "\u63d0\u793a\u5de5\u7a0b", "\u76d1\u63a7", "\u5206\u5e03\u5f0f", "AgentScope Studio", "\u7cfb\u7edf\u63d0\u793a\u4f18\u5316", "\u7b80\u8981\u4ecb\u7ecdAgentScope\u4e2d\u7684RAG", "\u9884\u5907", "\u52a0\u5165AgentScope\u793e\u533a", "\u8d21\u732e\u5230AgentScope", "\u53c2\u4e0e\u8d21\u732e", "\u6b22\u8fce\u6765\u5230 AgentScope \u6559\u7a0b"], "titleterms": {"actor": 121, "agent": [1, 2, 3, 4, 5, 6, 7, 8, 9, 107, 110, 112, 121, 122], "agentbas": 112, "agentpool": 112, "agentscop": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 110, 121, 122, 124, 126, 127, 129], "api": [105, 110, 114], "arxiv": 81, "bank": 124, "browser": [55, 56], "chat": [111, 114], "clone": 127, "code_block_pars": 33, "common": [62, 93], "compar": 123, "conda": 108, "constant": [10, 97], "content": [0, 1, 13, 14, 17, 20, 32, 38, 41, 42, 46, 51, 54, 55, 57, 61, 65, 68, 74, 78, 80, 88, 90, 92, 95, 96, 100], "context": 123, "dashboard": 122, "dashscop": 114, "dashscope_model": 21, "dashscope_servic": 66, "dashscopechatwrapp": 119, "dashscopemultimodalwrapp": 119, "dblp": 82, "dialog_ag": 3, "dialogag": 112, "dict_dialog_ag": 4, "dictfiltermixin": 115, "dingtalk": 126, "discord": 126, "download": 83, "embed": 124, "except": 11, "exec_notebook": 58, "exec_python": 59, "exec_shel": 60, "execute_cod": [57, 58, 59, 60], "file": [61, 62, 63, 64], "fork": 127, "forlooppipelin": 113, "function": 39, "gemini": 114, "gemini_model": 22, "geminichatwrapp": 119, "generat": 123, "github": 126, "gradio": [96, 97, 98, 99], "guidanc": 125, "ifelsepipelin": 113, "in": 123, "json": [63, 115], "json_object_pars": 34, "knowledg": [43, 124], "knowledge_bank": 44, "launcher": 52, "learn": 123, "linux": 108, "litellm": 114, "litellm_model": 23, "litellmchatwrapp": 119, "llama_index_knowledg": 45, "llamaindexknowledg": 124, "log": [12, 111], "logger": 111, "mac": 108, "manag": [13, 122], "markdowncodeblockpars": 115, "markdownjsondictpars": 115, "markdownjsonobjectpars": 115, "memori": [14, 15, 16, 118, 122], "memorybas": 118, "messag": [17, 18, 19, 107, 111, 118], "messagebas": 118, "mixture_of_ag": 89, "model": [20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 114, 124], "modul": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104], "mongodb": 75, "msg": [18, 118], "msghub": [31, 110, 113], "multi_mod": [65, 66, 67], "multitaggedcontentpars": 115, "mysql": 76, "ollama": 114, "ollama_model": 25, "ollamachatwrapp": 119, "ollamagenerationwrapp": 119, "openai": 114, "openai_model": 26, "openai_servic": 67, "openaichatwrapp": 119, "oper": 5, "optim": 123, "packag": [0, 1, 13, 14, 17, 20, 32, 38, 41, 42, 46, 51, 54, 55, 57, 61, 65, 68, 74, 78, 80, 88, 90, 92, 95, 96, 100], "parser": [32, 33, 34, 35, 36, 37, 110], "parser_bas": 35, "pip": 108, "pipelin": [38, 39, 40, 110, 113], "placehold": [19, 121], "post": 114, "post_model": 27, "prompt": [41, 123], "pull": 127, "python": 115, "rag": [42, 43, 44, 45, 124], "rag_ag": 6, "react": 115, "react_ag": 7, "regex_tagged_content_pars": 36, "regextaggedcontentpars": 115, "request": [114, 127], "respons": 28, "retriev": [68, 69, 70], "retrieval_from_list": 69, "rpc": [46, 47, 48, 49], "rpc_agent": 8, "rpc_agent_cli": 47, "rpc_agent_pb2": 48, "rpc_agent_pb2_grpc": 49, "search": 84, "sequentialpipelin": 113, "serial": 50, "server": [51, 52, 53, 121, 122], "servic": [53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 107, 117], "service_respons": 71, "service_status": 72, "service_toolkit": 73, "servicerespons": 117, "servicetoolkit": 117, "similar": 70, "sql_queri": [74, 75, 76, 77], "sqlite": 77, "str": 115, "strategi": [88, 89], "studio": [90, 91, 98, 121, 122], "submodul": [0, 1, 14, 17, 20, 32, 38, 42, 46, 51, 54, 55, 57, 61, 65, 68, 74, 78, 80, 88, 90, 92, 96, 100], "subpackag": [0, 54, 95], "summar": 79, "switchpipelin": 113, "system": 123, "tagged_content_pars": 37, "temporary_memori": 16, "temporarymemori": 118, "text": 64, "text_process": [78, 79], "to_dist": 121, "token_util": 94, "tripadvisor": 85, "user_ag": 9, "userag": 112, "util": [91, 92, 93, 94, 99], "virtualenv": 108, "vision": 119, "web": [80, 81, 82, 83, 84, 85, 86, 87, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104], "web_brows": 56, "web_digest": 86, "webui": 111, "whilelooppipelin": 113, "wikipedia": 87, "window": 108, "workflow": [101, 107], "workflow_dag": 102, "workflow_nod": 103, "workflow_util": 104, "workstat": [100, 101, 102, 103, 104, 122], "wrapper": 114, "yi_model": 29, "zhipu_model": 30, "zhipuai": 114, "zhipuaichatwrapp": 119}}) \ No newline at end of file diff --git a/zh_CN/tutorial/102-installation.html b/zh_CN/tutorial/102-installation.html index 3012643a9..375522658 100644 --- a/zh_CN/tutorial/102-installation.html +++ b/zh_CN/tutorial/102-installation.html @@ -63,6 +63,11 @@
    • 安装AgentScope
    @@ -173,25 +178,49 @@

    从源码安装# 针对本地化的multi-agent应用 pip install -e . -# 为分布式multi-agent应用 -pip install -e .[distribute] # 在Mac上使用`pip install -e .\[distribute\]`

  • -

    注意[distribute]选项安装了分布式应用程序所需的额外依赖项。在运行这些命令之前,请激活您的虚拟环境。

    使用Pip安装

    如果您选择从Pypi安装AgentScope,可以使用pip轻松地完成:

    # 针对本地化的multi-agent应用
    -pip install agentscope --pre
    -
    -# 为分布式multi-agent应用
    -pip install agentscope[distribute] --pre  # 在Mac上使用`pip install agentscope\[distribute\] --pre`
    +pip install agentscope
    +
    +
    +
    +
    +

    额外依赖

    +

    AgentScope 支持可选依赖如下,用户可以根据自己的需求选择安装:

    +
      +
    • ollama: Ollama API

    • +
    • litellm: Litellm API

    • +
    • zhipuai: Zhipuai API

    • +
    • gemini: Gemini API

    • +
    • service: 不同工具函数的依赖

    • +
    • distribute: 分布式模式的依赖

    • +
    • full: 一次性安装上述所有的依赖,可能耗时较长

    • +
    +

    可以通过将它们添加到安装命令中来安装这些依赖。

    +
    +

    Windows

    +
    pip install agentscope[gemini]
    +# or
    +pip install agentscope[ollama,distribute]
    +
    +
    +
    +
    +

    Mac & Linux

    +
    pip install agentscope\[gemini\]
    +# or
    +pip install agentscope\[ollama,distribute\]
     

    [返回顶端]

    +