Skip to content

Commit 3fe4467

Browse files
Fix broken links
1 parent 687af85 commit 3fe4467

File tree

40 files changed

+69
-69
lines changed

40 files changed

+69
-69
lines changed

autogen/agentchat/assistant_agent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ def __init__(
6363
default to None (no limit provided, class attribute MAX_CONSECUTIVE_AUTO_REPLY will be used as the limit in this case).
6464
The limit only plays a role when human_input_mode is not "ALWAYS".
6565
**kwargs (dict): Please refer to other kwargs in
66-
[ConversableAgent](conversable_agent#__init__).
66+
[ConversableAgent](conversable_agent#init).
6767
"""
6868
super().__init__(
6969
name,

autogen/agentchat/contrib/agent_eval/critic_agent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def __init__(
3737
Please override this attribute if you want to reprogram the agent.
3838
description (str): The description of the agent.
3939
**kwargs (dict): Please refer to other kwargs in
40-
[ConversableAgent](../../conversable_agent#__init__).
40+
[ConversableAgent](../../conversable_agent#init).
4141
"""
4242
super().__init__(
4343
name=name,

autogen/agentchat/contrib/agent_eval/quantifier_agent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,6 @@ def __init__(
3737
Please override this attribute if you want to reprogram the agent.
3838
description (str): The description of the agent.
3939
**kwargs (dict): Please refer to other kwargs in
40-
[ConversableAgent](../../conversable_agent#__init__).
40+
[ConversableAgent](../../conversable_agent#init).
4141
"""
4242
super().__init__(name=name, system_message=system_message, description=description, **kwargs)

autogen/agentchat/contrib/agent_eval/subcritic_agent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def __init__(
3838
Please override this attribute if you want to reprogram the agent.
3939
description (str): The description of the agent.
4040
**kwargs (dict): Please refer to other kwargs in
41-
[ConversableAgent](../../conversable_agent#__init__).
41+
[ConversableAgent](../../conversable_agent#init).
4242
"""
4343
super().__init__(
4444
name=name,

autogen/agentchat/contrib/graph_rag/neo4j_graph_rag_capability.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
class Neo4jGraphCapability(GraphRagCapability):
1515
"""
1616
The Neo4j graph capability integrates Neo4j Property graph into a graph rag agent.
17-
Ref: https://neo4j.com/labs/genai-ecosystem/llamaindex/#_property_graph_constructing_modules/
17+
Ref: https://neo4j.com/labs/genai-ecosystem/llamaindex/#_property_graph_constructing_modules
1818
1919
2020
For usage, please refer to example notebook/agentchat_graph_rag_neo4j.ipynb

autogen/agentchat/contrib/llamaindex_conversable_agent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def __init__(
5656
description (str): a short description of the agent. This description is used by other agents
5757
(e.g. the GroupChatManager) to decide when to call upon this agent.
5858
**kwargs (dict): Please refer to other kwargs in
59-
[ConversableAgent](../conversable_agent#__init__).
59+
[ConversableAgent](../conversable_agent#init).
6060
"""
6161

6262
if llama_index_agent is None:

autogen/agentchat/contrib/llava_agent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def __init__(
4040
system_message (str): system message for the ChatCompletion inference.
4141
Please override this attribute if you want to reprogram the agent.
4242
**kwargs (dict): Please refer to other kwargs in
43-
[ConversableAgent](../conversable_agent#__init__).
43+
[ConversableAgent](../conversable_agent#init).
4444
"""
4545
super().__init__(
4646
name,

autogen/agentchat/contrib/math_user_proxy_agent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ def __init__(
163163
when the number of auto reply reaches the max_consecutive_auto_reply or when is_termination_msg is True.
164164
default_auto_reply (str or dict or None): the default auto reply message when no code execution or llm based reply is generated.
165165
max_invalid_q_per_step (int): (ADDED) the maximum number of invalid queries per step.
166-
**kwargs (dict): other kwargs in [UserProxyAgent](../user_proxy_agent#__init__).
166+
**kwargs (dict): other kwargs in [UserProxyAgent](../user_proxy_agent#init).
167167
"""
168168
super().__init__(
169169
name=name,

autogen/agentchat/contrib/multimodal_conversable_agent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def __init__(
4040
system_message (str): system message for the OpenAIWrapper inference.
4141
Please override this attribute if you want to reprogram the agent.
4242
**kwargs (dict): Please refer to other kwargs in
43-
[ConversableAgent](../conversable_agent#__init__).
43+
[ConversableAgent](../conversable_agent#init).
4444
"""
4545
super().__init__(
4646
name,

autogen/agentchat/contrib/qdrant_retrieve_user_proxy_agent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ def __init__(
9797
- payload_indexing: Whether to create a payload index for the document field. Default is False.
9898
You can find more info about the payload indexing options at https://qdrant.tech/documentation/concepts/indexing/#payload-index
9999
API Reference: https://qdrant.github.io/qdrant/redoc/index.html#tag/collections/operation/create_field_index
100-
**kwargs (dict): other kwargs in [UserProxyAgent](../user_proxy_agent#__init__).
100+
**kwargs (dict): other kwargs in [UserProxyAgent](../user_proxy_agent#init).
101101
102102
"""
103103
warnings.warn(

0 commit comments

Comments
 (0)