From 2be5b4b297e443ca48d8123aacddffcb35d39f84 Mon Sep 17 00:00:00 2001 From: Qingyun Wu Date: Sun, 20 Oct 2024 11:04:05 -0700 Subject: [PATCH] Update link to new org (#70) * update org link * update date --- .devcontainer/Dockerfile | 4 +- .devcontainer/README.md | 2 +- .devcontainer/dev/Dockerfile | 14 ++-- .devcontainer/full/Dockerfile | 4 +- .github/PULL_REQUEST_TEMPLATE.md | 4 +- LICENSE | 2 +- MAINTAINERS.md | 2 +- NOTICE.md | 4 +- README.md | 72 +++++++++---------- autogen/__init__.py | 2 +- autogen/_pydantic.py | 2 +- autogen/agentchat/__init__.py | 2 +- autogen/agentchat/agent.py | 2 +- autogen/agentchat/assistant_agent.py | 2 +- autogen/agentchat/chat.py | 2 +- autogen/agentchat/contrib/agent_builder.py | 2 +- .../agentchat/contrib/agent_eval/README.md | 4 +- .../contrib/agent_eval/agent_eval.py | 2 +- .../agentchat/contrib/agent_eval/criterion.py | 2 +- .../contrib/agent_eval/critic_agent.py | 2 +- .../contrib/agent_eval/quantifier_agent.py | 2 +- .../contrib/agent_eval/subcritic_agent.py | 2 +- autogen/agentchat/contrib/agent_eval/task.py | 2 +- autogen/agentchat/contrib/agent_optimizer.py | 4 +- .../contrib/capabilities/agent_capability.py | 2 +- .../contrib/capabilities/generate_images.py | 2 +- .../contrib/capabilities/teachability.py | 2 +- .../contrib/capabilities/text_compressors.py | 2 +- .../capabilities/transform_messages.py | 2 +- .../contrib/capabilities/transforms.py | 2 +- .../contrib/capabilities/transforms_util.py | 2 +- .../contrib/capabilities/vision_capability.py | 2 +- .../agentchat/contrib/gpt_assistant_agent.py | 2 +- autogen/agentchat/contrib/img_utils.py | 2 +- .../contrib/llamaindex_conversable_agent.py | 2 +- autogen/agentchat/contrib/llava_agent.py | 2 +- .../contrib/math_user_proxy_agent.py | 2 +- .../contrib/multimodal_conversable_agent.py | 2 +- .../qdrant_retrieve_user_proxy_agent.py | 2 +- .../contrib/retrieve_assistant_agent.py | 2 +- .../contrib/retrieve_user_proxy_agent.py | 2 +- .../contrib/society_of_mind_agent.py | 2 +- .../agentchat/contrib/text_analyzer_agent.py | 2 +- autogen/agentchat/contrib/vectordb/base.py | 2 +- .../agentchat/contrib/vectordb/chromadb.py | 2 +- autogen/agentchat/contrib/vectordb/mongodb.py | 2 +- .../agentchat/contrib/vectordb/pgvectordb.py | 2 +- autogen/agentchat/contrib/vectordb/qdrant.py | 2 +- autogen/agentchat/contrib/vectordb/utils.py | 2 +- autogen/agentchat/contrib/web_surfer.py | 2 +- autogen/agentchat/conversable_agent.py | 4 +- autogen/agentchat/groupchat.py | 2 +- autogen/agentchat/user_proxy_agent.py | 2 +- autogen/agentchat/utils.py | 2 +- autogen/browser_utils.py | 2 +- autogen/cache/__init__.py | 2 +- autogen/cache/abstract_cache_base.py | 2 +- autogen/cache/cache.py | 2 +- autogen/cache/cache_factory.py | 2 +- autogen/cache/cosmos_db_cache.py | 2 +- autogen/cache/disk_cache.py | 2 +- autogen/cache/in_memory_cache.py | 2 +- autogen/cache/redis_cache.py | 2 +- autogen/code_utils.py | 2 +- autogen/exception_utils.py | 2 +- autogen/formatting_utils.py | 2 +- autogen/function_utils.py | 2 +- autogen/graph_utils.py | 2 +- autogen/io/__init__.py | 2 +- autogen/io/base.py | 2 +- autogen/io/console.py | 2 +- autogen/io/websockets.py | 2 +- autogen/logger/__init__.py | 2 +- autogen/logger/base_logger.py | 2 +- autogen/logger/file_logger.py | 2 +- autogen/logger/logger_factory.py | 2 +- autogen/logger/logger_utils.py | 2 +- autogen/logger/sqlite_logger.py | 2 +- autogen/math_utils.py | 2 +- autogen/oai/__init__.py | 2 +- autogen/oai/anthropic.py | 2 +- autogen/oai/client.py | 2 +- autogen/oai/client_utils.py | 2 +- autogen/oai/cohere.py | 2 +- autogen/oai/completion.py | 6 +- autogen/oai/gemini.py | 4 +- autogen/oai/groq.py | 2 +- autogen/oai/mistral.py | 2 +- autogen/oai/openai_utils.py | 2 +- autogen/oai/together.py | 2 +- autogen/retrieve_utils.py | 2 +- autogen/runtime_logging.py | 2 +- autogen/token_count_utils.py | 2 +- autogen/types.py | 2 +- autogen/version.py | 2 +- dotnet/README.md | 4 +- dotnet/eng/MetaInfo.props | 2 +- dotnet/nuget/NUGET.md | 8 +-- dotnet/nuget/nuget-package.props | 2 +- .../Anthropic_Agent_With_Prompt_Caching.cs | 4 +- .../Create_Anthropic_Agent.cs | 4 +- .../Create_Anthropic_Agent_With_Tool.cs | 4 +- .../AutoGen.Anthropic.Samples/Program.cs | 4 +- .../CodeSnippet/AgentCodeSnippet.cs | 4 +- .../CodeSnippet/BuildInMessageCodeSnippet.cs | 4 +- .../CodeSnippet/CreateAnAgent.cs | 4 +- .../CodeSnippet/FunctionCallCodeSnippet.cs | 4 +- .../CodeSnippet/GetStartCodeSnippet.cs | 4 +- .../CodeSnippet/MiddlewareAgentCodeSnippet.cs | 4 +- .../CodeSnippet/MistralAICodeSnippet.cs | 4 +- .../CodeSnippet/OpenAICodeSnippet.cs | 4 +- .../PrintMessageMiddlewareCodeSnippet.cs | 4 +- .../CodeSnippet/RunCodeSnippetCodeSnippet.cs | 4 +- .../CodeSnippet/SemanticKernelCodeSnippet.cs | 4 +- .../TypeSafeFunctionCallCodeSnippet.cs | 4 +- .../CodeSnippet/UserProxyAgentCodeSnippet.cs | 4 +- .../Example01_AssistantAgent.cs | 4 +- .../Example02_TwoAgent_MathChat.cs | 4 +- .../Example03_Agent_FunctionCall.cs | 4 +- ...Example04_Dynamic_GroupChat_Coding_Task.cs | 4 +- .../Example05_Dalle_And_GPT4V.cs | 4 +- .../Example06_UserProxyAgent.cs | 4 +- ...7_Dynamic_GroupChat_Calculate_Fibonacci.cs | 4 +- .../Example08_LMStudio.cs | 4 +- .../Example09_LMStudio_FunctionCall.cs | 4 +- .../Example10_SemanticKernel.cs | 4 +- .../Example11_Sequential_GroupChat_Example.cs | 4 +- .../Example12_TwoAgent_Fill_Application.cs | 4 +- .../Example13_OpenAIAgent_JsonMode.cs | 4 +- ...Example14_MistralClientAgent_TokenCount.cs | 4 +- .../Example15_GPT4V_BinaryDataImageMessage.cs | 4 +- ...nAIChatAgent_ConnectToThirdPartyBackend.cs | 4 +- .../Example17_ReActAgent.cs | 4 +- .../GettingStart/Agent_Middleware.cs | 4 +- .../GettingStart/Chat_With_Agent.cs | 4 +- .../GettingStart/Dynamic_Group_Chat.cs | 4 +- .../GettingStart/FSM_Group_Chat.cs | 4 +- .../GettingStart/Image_Chat_With_Agent.cs | 4 +- .../GettingStart/Streaming_Tool_Call.cs | 4 +- .../GettingStart/Use_Tools_With_Agent.cs | 4 +- .../AutoGen.BasicSamples/GlobalUsing.cs | 4 +- .../AutoGen.BasicSamples/LLMConfiguration.cs | 4 +- dotnet/sample/AutoGen.BasicSamples/Program.cs | 4 +- .../Chat_With_Google_Gemini.cs | 4 +- .../Chat_With_Vertex_Gemini.cs | 4 +- .../Function_Call_With_Gemini.cs | 4 +- .../Image_Chat_With_Vertex_Gemini.cs | 4 +- .../sample/AutoGen.Gemini.Sample/Program.cs | 4 +- .../AutoGen.Ollama.Sample/Chat_With_LLaMA.cs | 4 +- .../AutoGen.Ollama.Sample/Chat_With_LLaVA.cs | 4 +- .../sample/AutoGen.Ollama.Sample/Program.cs | 4 +- .../Connect_To_Ollama.cs | 4 +- .../sample/AutoGen.OpenAI.Sample/Program.cs | 4 +- .../Tool_Call_With_Ollama_And_LiteLLM.cs | 4 +- .../AutoGen.OpenAI.Sample/Use_Json_Mode.cs | 4 +- .../Create_Semantic_Kernel_Agent.cs | 4 +- .../Create_Semantic_Kernel_Chat_Agent.cs | 4 +- .../AutoGen.SemanticKernel.Sample/Program.cs | 4 +- ..._Bing_Search_With_Semantic_Kernel_Agent.cs | 4 +- .../Use_Kernel_Functions_With_Other_Agent.cs | 4 +- .../sample/AutoGen.WebAPI.Sample/Program.cs | 4 +- .../Agent/AnthropicClientAgent.cs | 4 +- .../src/AutoGen.Anthropic/AnthropicClient.cs | 4 +- .../Converters/ContentBaseConverter.cs | 4 +- .../JsonPropertyNameEnumCoverter.cs | 4 +- .../Converters/SystemMessageConverter.cs | 4 +- .../DTO/ChatCompletionRequest.cs | 4 +- .../DTO/ChatCompletionResponse.cs | 4 +- dotnet/src/AutoGen.Anthropic/DTO/Content.cs | 4 +- .../AutoGen.Anthropic/DTO/ErrorResponse.cs | 4 +- dotnet/src/AutoGen.Anthropic/DTO/Tool.cs | 4 +- .../src/AutoGen.Anthropic/DTO/ToolChoice.cs | 4 +- .../Extensions/AnthropicAgentExtension.cs | 4 +- .../Middleware/AnthropicMessageConnector.cs | 4 +- .../Utils/AnthropicConstants.cs | 4 +- .../Agent/ChatCompletionsClientAgent.cs | 4 +- .../ChatComptionClientAgentExtension.cs | 4 +- .../Extension/FunctionContractExtension.cs | 4 +- ...eAIInferenceChatRequestMessageConnector.cs | 4 +- .../AutoGen.Core/Agent/DefaultReplyAgent.cs | 4 +- .../AutoGen.Core/Agent/GroupChatManager.cs | 4 +- dotnet/src/AutoGen.Core/Agent/IAgent.cs | 4 +- .../AutoGen.Core/Agent/IMiddlewareAgent.cs | 4 +- .../src/AutoGen.Core/Agent/IStreamingAgent.cs | 4 +- .../src/AutoGen.Core/Agent/MiddlewareAgent.cs | 4 +- .../Agent/MiddlewareStreamingAgent.cs | 4 +- .../AutoGen.Core/Extension/AgentExtension.cs | 4 +- .../Extension/GroupChatExtension.cs | 4 +- .../Extension/MessageExtension.cs | 4 +- .../Extension/MiddlewareExtension.cs | 4 +- .../PrintMessageMiddlewareExtension.cs | 4 +- .../Extension/StreamingMiddlewareExtension.cs | 4 +- .../Function/FunctionAttribute.cs | 4 +- dotnet/src/AutoGen.Core/GroupChat/Graph.cs | 4 +- .../src/AutoGen.Core/GroupChat/GroupChat.cs | 4 +- .../src/AutoGen.Core/GroupChat/IGroupChat.cs | 4 +- .../GroupChat/RoundRobinGroupChat.cs | 4 +- dotnet/src/AutoGen.Core/ILLMConfig.cs | 4 +- .../AutoGen.Core/Message/AggregateMessage.cs | 4 +- dotnet/src/AutoGen.Core/Message/IMessage.cs | 4 +- .../src/AutoGen.Core/Message/ImageMessage.cs | 4 +- dotnet/src/AutoGen.Core/Message/Message.cs | 6 +- .../AutoGen.Core/Message/MessageEnvelope.cs | 4 +- .../AutoGen.Core/Message/MultiModalMessage.cs | 4 +- dotnet/src/AutoGen.Core/Message/Role.cs | 4 +- .../src/AutoGen.Core/Message/TextMessage.cs | 4 +- .../Message/ToolCallAggregateMessage.cs | 4 +- .../AutoGen.Core/Message/ToolCallMessage.cs | 4 +- .../Message/ToolCallResultMessage.cs | 4 +- .../Middleware/DelegateMiddleware.cs | 4 +- .../Middleware/FunctionCallMiddleware.cs | 4 +- .../AutoGen.Core/Middleware/IMiddleware.cs | 4 +- .../Middleware/IStreamingMiddleware.cs | 4 +- .../Middleware/MiddlewareContext.cs | 4 +- .../Middleware/PrintMessageMiddleware.cs | 4 +- .../Orchestrator/IOrchestrator.cs | 4 +- .../Orchestrator/RolePlayOrchestrator.cs | 4 +- .../Orchestrator/RoundRobinOrchestrator.cs | 4 +- .../Orchestrator/WorkflowOrchestrator.cs | 4 +- .../DotnetInteractiveFunction.cs | 4 +- .../DotnetInteractiveKernelBuilder.cs | 4 +- .../DotnetInteractiveStdioKernelConnector.cs | 4 +- .../Extension/AgentExtension.cs | 4 +- .../Extension/KernelExtension.cs | 4 +- .../Extension/MessageExtension.cs | 4 +- .../AutoGen.DotnetInteractive/GlobalUsing.cs | 4 +- ...nProccessDotnetInteractiveKernelBuilder.cs | 4 +- .../InteractiveService.cs | 4 +- .../Extension/FunctionContractExtension.cs | 4 +- dotnet/src/AutoGen.Gemini/GeminiChatAgent.cs | 4 +- .../src/AutoGen.Gemini/GoogleGeminiClient.cs | 4 +- dotnet/src/AutoGen.Gemini/IGeminiClient.cs | 4 +- .../Middleware/GeminiAgentExtension.cs | 4 +- .../Middleware/GeminiMessageConnector.cs | 4 +- .../src/AutoGen.Gemini/VertexGeminiClient.cs | 4 +- dotnet/src/AutoGen.LMStudio/GlobalUsing.cs | 4 +- dotnet/src/AutoGen.LMStudio/LMStudioAgent.cs | 4 +- dotnet/src/AutoGen.LMStudio/LMStudioConfig.cs | 4 +- .../Agent/MistralClientAgent.cs | 4 +- .../JsonPropertyNameEnumConverter.cs | 4 +- .../DTOs/ChatCompletionRequest.cs | 4 +- .../DTOs/ChatCompletionResponse.cs | 4 +- .../src/AutoGen.Mistral/DTOs/ChatMessage.cs | 4 +- dotnet/src/AutoGen.Mistral/DTOs/Choice.cs | 4 +- dotnet/src/AutoGen.Mistral/DTOs/Error.cs | 4 +- .../src/AutoGen.Mistral/DTOs/ErrorResponse.cs | 4 +- .../DTOs/FunctionDefinition.cs | 4 +- dotnet/src/AutoGen.Mistral/DTOs/Model.cs | 4 +- .../AutoGen.Mistral/DTOs/ResponseFormat.cs | 4 +- dotnet/src/AutoGen.Mistral/DTOs/Tool.cs | 4 +- dotnet/src/AutoGen.Mistral/DTOs/Usage.cs | 4 +- .../Extension/FunctionContractExtension.cs | 4 +- .../Extension/MistralAgentExtension.cs | 4 +- .../Middleware/MistralChatMessageConnector.cs | 4 +- .../src/AutoGen.Mistral/MistralAIModelID.cs | 4 +- dotnet/src/AutoGen.Mistral/MistralClient.cs | 4 +- .../src/AutoGen.Ollama/Agent/OllamaAgent.cs | 4 +- dotnet/src/AutoGen.Ollama/DTOs/ChatRequest.cs | 4 +- .../src/AutoGen.Ollama/DTOs/ChatResponse.cs | 4 +- .../AutoGen.Ollama/DTOs/ChatResponseUpdate.cs | 4 +- dotnet/src/AutoGen.Ollama/DTOs/Message.cs | 4 +- .../AutoGen.Ollama/DTOs/ModelReplyOptions.cs | 4 +- .../AutoGen.Ollama/DTOs/OllamaReplyOptions.cs | 4 +- .../Embeddings/ITextEmbeddingService.cs | 4 +- .../Embeddings/OllamaTextEmbeddingService.cs | 4 +- .../Embeddings/TextEmbeddingsRequest.cs | 4 +- .../Embeddings/TextEmbeddingsResponse.cs | 4 +- .../Extension/OllamaAgentExtension.cs | 4 +- .../Middlewares/OllamaMessageConnector.cs | 4 +- dotnet/src/AutoGen.Ollama/OllamaConsts.cs | 4 +- .../src/AutoGen.OpenAI.V1/Agent/GPTAgent.cs | 4 +- .../Agent/OpenAIChatAgent.cs | 4 +- .../AutoGen.OpenAI.V1/AzureOpenAIConfig.cs | 4 +- .../Extension/FunctionContractExtension.cs | 4 +- .../Extension/MessageExtension.cs | 4 +- .../Extension/OpenAIAgentExtension.cs | 4 +- dotnet/src/AutoGen.OpenAI.V1/GlobalUsing.cs | 4 +- .../OpenAIChatRequestMessageConnector.cs | 4 +- dotnet/src/AutoGen.OpenAI.V1/OpenAIConfig.cs | 4 +- .../Extension/KernelExtension.cs | 4 +- .../Extension/SemanticKernelAgentExtension.cs | 4 +- .../src/AutoGen.SemanticKernel/GlobalUsing.cs | 4 +- .../Middleware/KernelPluginMiddleware.cs | 4 +- ...manticKernelChatMessageContentConnector.cs | 4 +- .../SemanticKernelAgent.cs | 4 +- .../SemanticKernelChatCompletionAgent.cs | 4 +- .../DocumentCommentExtension.cs | 4 +- .../FunctionCallGenerator.cs | 4 +- .../FunctionExtension.cs | 4 +- .../SourceGeneratorFunctionContract.cs | 4 +- dotnet/src/AutoGen.WebAPI/Extension.cs | 4 +- .../Converter/OpenAIMessageConverter.cs | 4 +- .../OpenAI/DTO/OpenAIAssistantMessage.cs | 4 +- .../OpenAI/DTO/OpenAIChatCompletion.cs | 4 +- .../OpenAI/DTO/OpenAIChatCompletionChoice.cs | 4 +- .../OpenAI/DTO/OpenAIChatCompletionMessage.cs | 4 +- .../OpenAI/DTO/OpenAIChatCompletionOption.cs | 4 +- .../OpenAI/DTO/OpenAIChatCompletionUsage.cs | 4 +- .../OpenAI/DTO/OpenAIImageUrlObject.cs | 4 +- .../OpenAI/DTO/OpenAIMessage.cs | 4 +- .../OpenAI/DTO/OpenAIStreamOptions.cs | 4 +- .../OpenAI/DTO/OpenAISystemMessage.cs | 4 +- .../OpenAI/DTO/OpenAIToolCallObject.cs | 4 +- .../OpenAI/DTO/OpenAIToolMessage.cs | 4 +- .../OpenAI/DTO/OpenAIUserImageContent.cs | 4 +- .../OpenAI/DTO/OpenAIUserMessage.cs | 4 +- .../OpenAI/DTO/OpenAIUserMessageItem.cs | 4 +- .../OpenAI/DTO/OpenAIUserMultiModalMessage.cs | 4 +- .../OpenAI/DTO/OpenAIUserTextContent.cs | 4 +- .../Service/OpenAIChatCompletionService.cs | 4 +- .../OpenAIChatCompletionMiddleware.cs | 4 +- dotnet/src/AutoGen/API/LLMConfigAPI.cs | 4 +- dotnet/src/AutoGen/Agent/AssistantAgent.cs | 4 +- dotnet/src/AutoGen/Agent/ConversableAgent.cs | 4 +- dotnet/src/AutoGen/Agent/UserProxyAgent.cs | 4 +- dotnet/src/AutoGen/ConversableAgentConfig.cs | 4 +- dotnet/src/AutoGen/GlobalUsing.cs | 4 +- .../Middleware/HumanInputMiddleware.cs | 4 +- .../AnthropicClientAgentTest.cs | 4 +- .../AnthropicClientTest.cs | 4 +- .../AnthropicTestFunctionCalls.cs | 4 +- .../AnthropicTestUtils.cs | 4 +- .../AutoGen.AotCompatibility.Tests/Program.cs | 4 +- .../ChatCompletionClientAgentTests.cs | 4 +- .../ChatRequestMessageTests.cs | 4 +- .../DotnetInteractiveServiceTest.cs | 4 +- ...netInteractiveStdioKernelConnectorTests.cs | 4 +- ...ocessDotnetInteractiveKernelBuilderTest.cs | 4 +- .../MessageExtensionTests.cs | 4 +- .../FunctionContractExtensionTests.cs | 4 +- dotnet/test/AutoGen.Gemini.Tests/Functions.cs | 4 +- .../AutoGen.Gemini.Tests/GeminiAgentTests.cs | 4 +- .../GeminiMessageTests.cs | 4 +- .../GoogleGeminiClientTests.cs | 4 +- .../test/AutoGen.Gemini.Tests/SampleTests.cs | 4 +- .../VertexGeminiClientTests.cs | 4 +- .../MistralClientAgentTests.cs | 4 +- .../MistralClientTests.cs | 4 +- .../AutoGen.Ollama.Tests/OllamaAgentTests.cs | 4 +- .../OllamaMessageTests.cs | 4 +- .../OllamaTextEmbeddingServiceTests.cs | 4 +- .../AutoGen.OpenAI.V1.Tests/GlobalUsing.cs | 4 +- .../AutoGen.OpenAI.V1.Tests/MathClassTest.cs | 4 +- .../OpenAIChatAgentTest.cs | 4 +- .../OpenAIMessageTests.cs | 4 +- .../KernelFunctionExtensionTests.cs | 4 +- .../KernelFunctionMiddlewareTests.cs | 4 +- .../SemanticKernelAgentTest.cs | 4 +- .../FilescopeNamespaceFunctionExample.cs | 4 +- .../FunctionCallTemplateEncodingTests.cs | 4 +- .../FunctionCallTemplateTests.cs | 4 +- .../FunctionExample.test.cs | 4 +- .../FunctionExamples.cs | 4 +- .../TopLevelStatementFunctionExample.cs | 4 +- .../EnvironmentSpecificFactAttribute.cs | 4 +- .../Attribute/OpenAIFact.cs | 4 +- dotnet/test/AutoGen.Test.Share/EchoAgent.cs | 4 +- dotnet/test/AutoGen.Tests/BasicSampleTest.cs | 4 +- dotnet/test/AutoGen.Tests/GlobalUsing.cs | 4 +- .../AutoGen.Tests/GroupChat/GraphTests.cs | 4 +- .../AutoGen.Tests/GroupChat/GroupChatTests.cs | 4 +- .../test/AutoGen.Tests/ImageMessageTests.cs | 4 +- .../test/AutoGen.Tests/MiddlewareAgentTest.cs | 4 +- dotnet/test/AutoGen.Tests/MiddlewareTest.cs | 4 +- .../Orchestrator/RolePlayOrchestratorTests.cs | 4 +- .../RoundRobinOrchestratorTests.cs | 4 +- .../Orchestrator/WorkflowOrchestratorTests.cs | 4 +- dotnet/test/AutoGen.Tests/SingleAgentTest.cs | 6 +- dotnet/test/AutoGen.Tests/TwoAgentTest.cs | 4 +- dotnet/test/AutoGen.Tests/WorkflowTest.cs | 4 +- dotnet/test/AutoGen.WebAPI.Tests/EchoAgent.cs | 4 +- .../OpenAIChatCompletionMiddlewareTests.cs | 8 +-- .../AutoGen.Gemini/Chat-with-google-gemini.md | 2 +- .../AutoGen.Gemini/Chat-with-vertex-gemini.md | 2 +- .../Function-call-with-gemini.md | 2 +- .../AutoGen.Gemini/Image-chat-with-gemini.md | 2 +- .../articles/AutoGen.Gemini/Overview.md | 2 +- .../AutoGen.Ollama/Chat-with-llama.md | 2 +- .../AutoGen.Ollama/Chat-with-llava.md | 2 +- .../SemanticKernelChatAgent-simple-chat.md | 2 +- .../Use-kernel-plugin-in-other-agents.md | 2 +- .../Function-call-with-ollama-and-litellm.md | 2 +- .../MistralChatAgent-count-token-usage.md | 2 +- ...nAIChatAgent-connect-to-third-party-api.md | 2 +- .../articles/OpenAIChatAgent-use-json-mode.md | 2 +- dotnet/website/articles/Roundrobin-chat.md | 2 +- dotnet/website/articles/Run-dotnet-code.md | 4 +- dotnet/website/articles/getting-start.md | 6 +- dotnet/website/docfx.json | 2 +- dotnet/website/toc.yml | 2 +- dotnet/website/tutorial/Chat-with-an-agent.md | 2 +- .../tutorial/Create-agent-with-tools.md | 2 +- .../website/tutorial/Image-chat-with-agent.md | 2 +- notebook/JSON_mode_example.ipynb | 4 +- notebook/agentchat_MathChat.ipynb | 6 +- notebook/agentchat_RetrieveChat.ipynb | 10 +-- notebook/agentchat_RetrieveChat_mongodb.ipynb | 8 +-- .../agentchat_RetrieveChat_pgvector.ipynb | 10 +-- notebook/agentchat_RetrieveChat_qdrant.ipynb | 26 +++---- notebook/agentchat_agentoptimizer.ipynb | 6 +- notebook/agentchat_cost_token_tracking.ipynb | 4 +- notebook/agentchat_custom_model.ipynb | 2 +- notebook/agentchat_databricks_dbrx.ipynb | 12 ++-- notebook/agentchat_function_call.ipynb | 4 +- notebook/agentchat_function_call_async.ipynb | 2 +- ...at_function_call_currency_calculator.ipynb | 4 +- notebook/agentchat_groupchat.ipynb | 6 +- notebook/agentchat_groupchat_RAG.ipynb | 4 +- notebook/agentchat_groupchat_customized.ipynb | 4 +- ...tchat_groupchat_finite_state_machine.ipynb | 2 +- notebook/agentchat_groupchat_research.ipynb | 4 +- notebook/agentchat_groupchat_stateflow.ipynb | 4 +- notebook/agentchat_groupchat_vis.ipynb | 4 +- notebook/agentchat_human_feedback.ipynb | 4 +- notebook/agentchat_inception_function.ipynb | 2 +- notebook/agentchat_langchain.ipynb | 6 +- notebook/agentchat_microsoft_fabric.ipynb | 12 ++-- .../agentchat_oai_assistant_groupchat.ipynb | 10 +-- .../agentchat_oai_assistant_retrieval.ipynb | 2 +- ...ntchat_oai_assistant_twoagents_basic.ipynb | 2 +- notebook/agentchat_oai_code_interpreter.ipynb | 2 +- notebook/agentchat_planning.ipynb | 6 +- notebook/agentchat_stream.ipynb | 6 +- notebook/agentchat_surfer.ipynb | 2 +- notebook/agentchat_teachability.ipynb | 4 +- .../agentchat_teachable_oai_assistants.ipynb | 4 +- notebook/agentchat_teaching.ipynb | 4 +- notebook/agentchat_two_users.ipynb | 6 +- ...eo_transcript_translate_with_whisper.ipynb | 2 +- notebook/agentchat_web_info.ipynb | 6 +- notebook/agentchat_websockets.ipynb | 12 ++-- notebook/agenteval_cq_math.ipynb | 4 +- notebook/autobuild_basic.ipynb | 4 +- notebook/autogen_uniformed_api_calling.ipynb | 4 +- .../config_loader_utility_functions.ipynb | 2 +- notebook/oai_chatgpt_gpt4.ipynb | 8 +-- notebook/oai_completion.ipynb | 8 +-- setup.py | 4 +- .../contrib/agent_eval/test_agent_eval.py | 2 +- .../contrib/agent_eval/test_criterion.py | 2 +- .../agentchat/contrib/agent_eval/test_task.py | 2 +- .../capabilities/chat_with_teachable_agent.py | 4 +- .../test_image_generation_capability.py | 2 +- .../capabilities/test_teachable_agent.py | 4 +- .../capabilities/test_transform_messages.py | 2 +- .../contrib/capabilities/test_transforms.py | 2 +- .../capabilities/test_transforms_util.py | 2 +- .../capabilities/test_vision_capability.py | 2 +- .../test_pgvector_retrievechat.py | 2 +- .../retrievechat/test_qdrant_retrievechat.py | 2 +- .../contrib/retrievechat/test_retrievechat.py | 2 +- test/agentchat/contrib/test_agent_builder.py | 2 +- .../agentchat/contrib/test_agent_optimizer.py | 2 +- test/agentchat/contrib/test_gpt_assistant.py | 2 +- test/agentchat/contrib/test_img_utils.py | 2 +- .../test_llamaindex_conversable_agent.py | 2 +- test/agentchat/contrib/test_llava.py | 2 +- test/agentchat/contrib/test_lmm.py | 2 +- .../contrib/test_society_of_mind_agent.py | 2 +- test/agentchat/contrib/test_web_surfer.py | 4 +- .../contrib/vectordb/test_chromadb.py | 2 +- .../contrib/vectordb/test_mongodb.py | 2 +- .../contrib/vectordb/test_pgvectordb.py | 2 +- .../agentchat/contrib/vectordb/test_qdrant.py | 2 +- .../contrib/vectordb/test_vectordb_utils.py | 2 +- test/agentchat/extensions/tsp.py | 2 +- test/agentchat/extensions/tsp_api.py | 2 +- test/agentchat/test_agent_file_logging.py | 2 +- test/agentchat/test_agent_logging.py | 2 +- ...st_agent_setup_with_use_docker_settings.py | 2 +- test/agentchat/test_agent_usage.py | 2 +- test/agentchat/test_agentchat_utils.py | 2 +- test/agentchat/test_assistant_agent.py | 2 +- test/agentchat/test_async.py | 2 +- test/agentchat/test_async_chats.py | 2 +- test/agentchat/test_async_get_human_input.py | 2 +- test/agentchat/test_cache_agent.py | 2 +- test/agentchat/test_chats.py | 2 +- test/agentchat/test_conversable_agent.py | 2 +- .../test_function_and_tool_calling.py | 2 +- test/agentchat/test_function_call.py | 2 +- .../agentchat/test_function_call_groupchat.py | 2 +- test/agentchat/test_groupchat.py | 2 +- test/agentchat/test_human_input.py | 2 +- test/agentchat/test_math_user_proxy_agent.py | 2 +- test/agentchat/test_nested.py | 2 +- test/agentchat/test_tool_calls.py | 2 +- test/cache/test_cache.py | 2 +- test/cache/test_cosmos_db_cache.py | 2 +- test/cache/test_disk_cache.py | 2 +- test/cache/test_in_memory_cache.py | 2 +- test/cache/test_redis_cache.py | 2 +- test/conftest.py | 2 +- test/io/test_base.py | 2 +- test/io/test_console.py | 2 +- test/io/test_websockets.py | 2 +- test/oai/_test_completion.py | 2 +- test/oai/test_anthropic.py | 2 +- test/oai/test_client.py | 2 +- test/oai/test_client_stream.py | 2 +- test/oai/test_client_utils.py | 2 +- test/oai/test_cohere.py | 2 +- test/oai/test_custom_client.py | 2 +- test/oai/test_gemini.py | 2 +- test/oai/test_groq.py | 2 +- test/oai/test_mistral.py | 2 +- test/oai/test_together.py | 2 +- test/oai/test_utils.py | 2 +- test/test_browser_utils.py | 4 +- test/test_code_utils.py | 2 +- test/test_function_utils.py | 2 +- test/test_graph_utils.py | 2 +- test/test_logging.py | 2 +- test/test_notebook.py | 2 +- test/test_pydantic.py | 2 +- test/test_retrieve_utils.py | 2 +- test/test_token_count.py | 2 +- test/twoagent.py | 4 +- .../blog/2023-10-18-RetrieveChat/index.mdx | 2 +- .../blog/2023-10-26-TeachableAgent/index.mdx | 2 +- website/blog/2023-11-06-LMM-Agent/index.mdx | 8 +-- .../blog/2023-11-13-OAI-assistants/index.mdx | 10 +-- website/blog/2023-11-20-AgentEval/index.mdx | 2 +- .../blog/2023-12-01-AutoGenStudio/index.mdx | 18 ++--- .../blog/2023-12-23-AgentOptimizer/index.mdx | 2 +- .../2023-12-29-AgentDescriptions/index.mdx | 6 +- .../index.mdx | 4 +- .../blog/2024-01-25-AutoGenBench/index.mdx | 12 ++-- website/blog/2024-02-02-AutoAnny/index.mdx | 4 +- .../blog/2024-02-11-FSM-GroupChat/index.mdx | 2 +- website/blog/2024-05-24-Agent/index.mdx | 2 +- website/blog/2024-06-21-AgentEval/index.mdx | 4 +- .../2024-06-24-AltModels-Classes/index.mdx | 14 ++-- website/blog/2024-07-25-AgentOps/index.mdx | 2 +- website/docs/Examples.md | 12 ++-- website/docs/FAQ.mdx | 18 ++--- website/docs/Getting-Started.mdx | 6 +- website/docs/Migration-Guide.md | 2 +- website/docs/Use-Cases/agent_chat.md | 10 +-- website/docs/Use-Cases/enhanced_inference.md | 4 +- website/docs/autogen-studio/faqs.md | 2 +- .../docs/autogen-studio/getting-started.md | 12 ++-- .../docs/contributor-guide/contributing.md | 10 +-- website/docs/contributor-guide/docker.md | 8 +-- .../docs/contributor-guide/documentation.md | 2 +- .../docs/contributor-guide/file-bug-report.md | 2 +- website/docs/contributor-guide/tests.md | 10 +-- website/docs/ecosystem/microsoft-fabric.md | 2 +- website/docs/ecosystem/pgvector.md | 2 +- website/docs/ecosystem/promptflow.md | 6 +- website/docs/installation/Docker.md | 14 ++-- .../installation/Optional-Dependencies.md | 10 +-- website/docs/topics/llm-caching.md | 2 +- .../about-using-nonopenai-models.md | 2 +- .../cloud-gemini_vertexai.ipynb | 2 +- .../local-litellm-ollama.ipynb | 2 +- .../topics/non-openai-models/local-vllm.md | 2 +- website/docs/topics/retrieval_augmentation.md | 10 +-- website/docs/topics/task_decomposition.ipynb | 2 +- website/docs/tutorial/what-next.md | 2 +- website/docusaurus.config.js | 10 +-- website/process_notebooks.py | 8 +-- website/src/components/GalleryPage.js | 4 +- 563 files changed, 1075 insertions(+), 1075 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 64391862c4f2..5604047f9ef0 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -1,7 +1,7 @@ #------------------------------------------------------------------------------------------------------------- -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # SPDX-License-Identifier: Apache-2.0 -# Contributions to this project, i.e., https://github.com/autogen-ai/autogen, are licensed under the Apache License, Version 2.0 (Apache-2.0). +# Contributions to this project, i.e., https://github.com/autogenhub/autogen, are licensed under the Apache License, Version 2.0 (Apache-2.0). # Portions derived from https://github.com/microsoft/autogen under the MIT License. # SPDX-License-Identifier: MIT diff --git a/.devcontainer/README.md b/.devcontainer/README.md index 74974078b88e..40bb98fb236d 100644 --- a/.devcontainer/README.md +++ b/.devcontainer/README.md @@ -26,7 +26,7 @@ These configurations can be used with Codespaces and locally. - **Usage**: Recommended for developers who are contributing to the AutoGen project. - **Building the Image**: Run `docker build -f dev/Dockerfile -t autogen_ai_dev_img .`. - **Using with Codespaces**: `Code > Codespaces > Click on ...> New with options > Choose "dev" as devcontainer configuration`. This image may require a Codespace with at least 64GB of disk space. -- **Before using**: We highly encourage all potential contributors to read the [AutoGen Contributing](https://autogen-ai.github.io/autogen/docs/Contribute) page prior to submitting any pull requests. +- **Before using**: We highly encourage all potential contributors to read the [AutoGen Contributing](https://autogenhub.github.io/autogen/docs/Contribute) page prior to submitting any pull requests. ## Customizing Dockerfiles diff --git a/.devcontainer/dev/Dockerfile b/.devcontainer/dev/Dockerfile index dd46421a06a3..ca9b5abdb3a4 100644 --- a/.devcontainer/dev/Dockerfile +++ b/.devcontainer/dev/Dockerfile @@ -10,18 +10,18 @@ RUN apt-get update && apt-get -y update RUN apt-get install -y sudo git npm vim nano curl wget git-lfs # Setup a non-root user 'autogen' with sudo access -RUN adduser --home /home/autogen-ai --disabled-password --gecos '' autogen +RUN adduser --home /home/autogenhub --disabled-password --gecos '' autogen RUN adduser autogen sudo RUN echo '%sudo ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers USER autogen -WORKDIR /home/autogen-ai +WORKDIR /home/autogenhub # Set environment variable # ENV OPENAI_API_KEY="{OpenAI-API-Key}" # Clone the AutoGen repository -RUN git clone https://github.com/autogen-ai/autogen.git /home/autogen-ai/autogen -WORKDIR /home/autogen-ai/autogen +RUN git clone https://github.com/autogenhub/autogen.git /home/autogenhub/autogen +WORKDIR /home/autogenhub/autogen # Install AutoGen in editable mode with extra components RUN sudo pip install --upgrade pip && \ @@ -39,11 +39,11 @@ RUN yarn install --frozen-lockfile --ignore-engines RUN arch=$(arch | sed s/aarch64/arm64/ | sed s/x86_64/amd64/) && \ wget -q https://github.com/quarto-dev/quarto-cli/releases/download/v1.5.23/quarto-1.5.23-linux-${arch}.tar.gz && \ - mkdir -p /home/autogen-ai/quarto/ && \ - tar -xzf quarto-1.5.23-linux-${arch}.tar.gz --directory /home/autogen-ai/quarto/ && \ + mkdir -p /home/autogenhub/quarto/ && \ + tar -xzf quarto-1.5.23-linux-${arch}.tar.gz --directory /home/autogenhub/quarto/ && \ rm quarto-1.5.23-linux-${arch}.tar.gz -ENV PATH="${PATH}:/home/autogen-ai/quarto/quarto-1.5.23/bin/" +ENV PATH="${PATH}:/home/autogenhub/quarto/quarto-1.5.23/bin/" # Exposes the Yarn port for Docusaurus EXPOSE 3000 diff --git a/.devcontainer/full/Dockerfile b/.devcontainer/full/Dockerfile index 7fb38e416f5f..a59cd985aa64 100644 --- a/.devcontainer/full/Dockerfile +++ b/.devcontainer/full/Dockerfile @@ -11,11 +11,11 @@ RUN apt-get update \ && rm -rf /var/lib/apt/lists/* # Setup a non-root user 'autogen' with sudo access -RUN adduser --home /home/autogen-ai --disabled-password --gecos '' autogen +RUN adduser --home /home/autogenhub --disabled-password --gecos '' autogen RUN adduser autogen sudo RUN echo '%sudo ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers USER autogen -WORKDIR /home/autogen-ai +WORKDIR /home/autogenhub # Set environment variable if needed # ENV OPENAI_API_KEY="{OpenAI-API-Key}" diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 2edd7e33c60a..e56751d1369b 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1,4 +1,4 @@ - + @@ -12,6 +12,6 @@ ## Checks -- [ ] I've included any doc changes needed for https://autogen-ai.github.io/autogen/. See https://autogen-ai.github.io/autogen/docs/Contribute#documentation to build and test documentation locally. +- [ ] I've included any doc changes needed for https://autogenhub.github.io/autogen/. See https://autogenhub.github.io/autogen/docs/Contribute#documentation to build and test documentation locally. - [ ] I've added tests (if relevant) corresponding to the changes introduced in this PR. - [ ] I've made sure all auto checks have passed. diff --git a/LICENSE b/LICENSE index 01659b2dc03e..d7d09047d691 100644 --- a/LICENSE +++ b/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright AutoGen-AI organization, i.e., https://github.com/autogen-ai, owners. + Copyright autogenhub organization, i.e., https://github.com/autogenhub, owners. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/MAINTAINERS.md b/MAINTAINERS.md index 603731e6a149..236de0e5e7e5 100644 --- a/MAINTAINERS.md +++ b/MAINTAINERS.md @@ -26,7 +26,7 @@ | Rajan Chari * | [rajan-chari](https://github.com/rajan-chari) | Microsoft Research | CAP | ## I would like to join this list. How can I help the project? -> We're always looking for new contributors to join our team and help improve the project. For more information, please refer to our [CONTRIBUTING](https://autogen-ai.github.io/autogen/docs/contributor-guide/contributing) guide. +> We're always looking for new contributors to join our team and help improve the project. For more information, please refer to our [CONTRIBUTING](https://autogenhub.github.io/autogen/docs/contributor-guide/contributing) guide. ## Are you missing from this list? diff --git a/NOTICE.md b/NOTICE.md index 638931c6cdc5..63310f668712 100644 --- a/NOTICE.md +++ b/NOTICE.md @@ -1,13 +1,13 @@ ## NOTICE -Copyright (c) 2023-2024, Owners of https://github.com/autogen-ai +Copyright (c) 2023-2024, Owners of https://github.com/autogenhub This project is a fork of https://github.com/microsoft/autogen. The [original project](https://github.com/microsoft/autogen) is licensed under the MIT License as detailed in [LICENSE_original_MIT](./license_original/LICENSE_original_MIT). The fork was created from version v0.2.35 of the original project. -This project, i.e., https://github.com/autogen-ai/autogen, is licensed under the Apache License, Version 2.0 as detailed in [LICENSE](./LICENSE) +This project, i.e., https://github.com/autogenhub/autogen, is licensed under the Apache License, Version 2.0 as detailed in [LICENSE](./LICENSE) Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/README.md b/README.md index 2ea360cf29f6..8b24541acd21 100644 --- a/README.md +++ b/README.md @@ -1,18 +1,18 @@ [![PyPI version](https://badge.fury.io/py/autogen.svg)](https://badge.fury.io/py/autogen) -[![Build](https://github.com/autogen-ai/autogen/actions/workflows/python-package.yml/badge.svg)](https://github.com/autogen-ai/autogen/actions/workflows/python-package.yml) +[![Build](https://github.com/autogenhub/autogen/actions/workflows/python-package.yml/badge.svg)](https://github.com/autogenhub/autogen/actions/workflows/python-package.yml) ![Python Version](https://img.shields.io/badge/3.8%20%7C%203.9%20%7C%203.10%20%7C%203.11%20%7C%203.12-blue) [![Discord](https://img.shields.io/discord/1153072414184452236?logo=discord&style=flat)](https://discord.gg/pAbnFJrkgZ) [![Twitter](https://img.shields.io/twitter/url/https/twitter.com/cloudposse.svg?style=social&label=Follow%20%40Chi_Wang_)](https://x.com/Chi_Wang_) [![NuGet version](https://badge.fury.io/nu/AutoGen.Core.svg)](https://badge.fury.io/nu/AutoGen.Core) -# [AutoGen](https://github.com/autogen-ai/autogen) +# [AutoGen](https://github.com/autogenhub/autogen) [📚 Cite paper](#related-papers). :fire: :tada: Sep 06, 2024: AutoGen now available as `autogen` on PyPI! We're excited to announce a more convenient package name for AutoGen: Starting with version 0.3.0, you can now install AutoGen using: @@ -26,7 +26,7 @@ We extend our sincere gratitude to the original owner of `autogen` pypi package 📄 **License Change:** With this new release and package name, we are officially switching to the Apache 2.0 license. This enhances our commitment to open-source collaboration while providing additional protections for contributors and users alike. -:fire: Aug 24, 2024: A new organization [autogen-ai](https://github.com/autogen-ai) is created to host the development of AutoGen and related projects with open governance. We invite collaborators from all organizations and individuals. +:fire: Oct 20, 2024: A new organization [autogenhub](https://github.com/autogenhub) is created to host the development of AutoGen and related projects with open governance. We invite collaborators from all organizations and individuals. :tada: May 29, 2024: DeepLearning.ai launched a new short course [AI Agentic Design Patterns with AutoGen](https://www.deeplearning.ai/short-courses/ai-agentic-design-patterns-with-autogen), made in collaboration with Microsoft and Penn State University, and taught by AutoGen creators [Chi Wang](https://github.com/sonichi) and [Qingyun Wu](https://github.com/qingyun-wu). @@ -36,11 +36,11 @@ With this new release and package name, we are officially switching to the Apach :tada: May 11, 2024: [AutoGen: Enabling Next-Gen LLM Applications via Multi-Agent Conversation](https://openreview.net/pdf?id=uAjxFFing2) received the best paper award at the [ICLR 2024 LLM Agents Workshop](https://llmagents.github.io/). -:tada: Apr 26, 2024: [AutoGen.NET](https://autogen-ai.github.io/autogen-for-net/) is available for .NET developers! +:tada: Apr 26, 2024: [AutoGen.NET](https://autogenhub.github.io/autogen-for-net/) is available for .NET developers! :tada: Apr 17, 2024: Andrew Ng cited AutoGen in [The Batch newsletter](https://www.deeplearning.ai/the-batch/issue-245/) and [What's next for AI agentic workflows](https://youtu.be/sal78ACtGTc?si=JduUzN_1kDnMq0vF) at Sequoia Capital's AI Ascent (Mar 26). -:tada: Mar 3, 2024: What's new in AutoGen? 📰[Blog](https://autogen-ai.github.io/autogen/blog/2024/03/03/AutoGen-Update); 📺[Youtube](https://www.youtube.com/watch?v=j_mtwQiaLGU). +:tada: Mar 3, 2024: What's new in AutoGen? 📰[Blog](https://autogenhub.github.io/autogen/blog/2024/03/03/AutoGen-Update); 📺[Youtube](https://www.youtube.com/watch?v=j_mtwQiaLGU). @@ -48,9 +48,9 @@ With this new release and package name, we are officially switching to the Apach :tada: Dec 31, 2023: [AutoGen: Enabling Next-Gen LLM Applications via Multi-Agent Conversation Framework](https://arxiv.org/abs/2308.08155) is selected by [TheSequence: My Five Favorite AI Papers of 2023](https://thesequence.substack.com/p/my-five-favorite-ai-papers-of-2023). - + - + :tada: Nov 8, 2023: AutoGen is selected into [Open100: Top 100 Open Source achievements](https://www.benchcouncil.org/evaluation/opencs/annual.html) 35 days after spinoff from [FLAML](https://github.com/microsoft/FLAML). @@ -67,7 +67,7 @@ With this new release and package name, we are officially switching to the Apach @@ -80,16 +80,16 @@ AutoGen is an open-source programming framework for building AI agents and facil The project is currently maintained by a [dynamic group of volunteers](MAINTAINERS.md) from several organizations. Contact project administrators Chi Wang and Qingyun Wu via auto-gen@outlook.com if you are interested in becoming a maintainer. -![AutoGen Overview](https://github.com/autogen-ai/autogen/blob/main/website/static/img/autogen_agentchat.png) +![AutoGen Overview](https://github.com/autogenhub/autogen/blob/main/website/static/img/autogen_agentchat.png) -AutoGen is created out of collaborative [research](https://autogen-ai.github.io/autogen/docs/Research) from Microsoft, Penn State University, and the University of Washington. +AutoGen is created out of collaborative [research](https://autogenhub.github.io/autogen/docs/Research) from Microsoft, Penn State University, and the University of Washington.

@@ -105,7 +105,7 @@ AutoGen is created out of collaborative [research](https://autogen-ai.github.io/ The easiest way to start playing is 1. Click below to use the GitHub Codespace - [![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/autogen-ai/autogen?quickstart=1) + [![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/autogenhub/autogen?quickstart=1) 2. Copy OAI_CONFIG_LIST_sample to ./notebook folder, name to OAI_CONFIG_LIST, and set the correct configuration. 3. Start playing with the notebooks! @@ -118,10 +118,10 @@ The easiest way to start playing is

-## [Installation](https://autogen-ai.github.io/autogen/docs/Installation) +## [Installation](https://autogenhub.github.io/autogen/docs/Installation) ### Option 1. Install and Run AutoGen in Docker -Find detailed instructions for users [here](https://autogen-ai.github.io/autogen/docs/installation/Docker#step-1-install-docker), and for developers [here](https://autogen-ai.github.io/autogen/docs/Contribute#docker-for-development). +Find detailed instructions for users [here](https://autogenhub.github.io/autogen/docs/installation/Docker#step-1-install-docker), and for developers [here](https://autogenhub.github.io/autogen/docs/Contribute#docker-for-development). ### Option 2. Install AutoGen Locally @@ -138,13 +138,13 @@ Minimal dependencies are installed without extra options. You can install extra pip install "autogen[blendsearch]" ``` --> -Find more options in [Installation](https://autogen-ai.github.io/autogen/docs/Installation#option-2-install-autogen-locally-using-virtual-environment). +Find more options in [Installation](https://autogenhub.github.io/autogen/docs/Installation#option-2-install-autogen-locally-using-virtual-environment). - + -Even if you are installing and running AutoGen locally outside of docker, the recommendation and default behavior of agents is to perform [code execution](https://autogen-ai.github.io/autogen/docs/FAQ/#code-execution) in docker. Find more instructions and how to change the default behaviour [here](https://autogen-ai.github.io/autogen/docs/Installation#code-execution-with-docker-(default)). +Even if you are installing and running AutoGen locally outside of docker, the recommendation and default behavior of agents is to perform [code execution](https://autogenhub.github.io/autogen/docs/FAQ/#code-execution) in docker. Find more instructions and how to change the default behaviour [here](https://autogenhub.github.io/autogen/docs/Installation#code-execution-with-docker-(default)). -For LLM inference configurations, check the [FAQs](https://autogen-ai.github.io/autogen/docs/FAQ#set-your-api-endpoints). +For LLM inference configurations, check the [FAQs](https://autogenhub.github.io/autogen/docs/FAQ#set-your-api-endpoints).

@@ -154,7 +154,7 @@ For LLM inference configurations, check the [FAQs](https://autogen-ai.github.io/ ## Multi-Agent Conversation Framework -Autogen enables the next-gen LLM applications with a generic [multi-agent conversation](https://autogen-ai.github.io/autogen/docs/Use-Cases/agent_chat) framework. It offers customizable and conversable agents that integrate LLMs, tools, and humans. +Autogen enables the next-gen LLM applications with a generic [multi-agent conversation](https://autogenhub.github.io/autogen/docs/Use-Cases/agent_chat) framework. It offers customizable and conversable agents that integrate LLMs, tools, and humans. By automating chat among multiple capable agents, one can easily make them collectively perform tasks autonomously or with human feedback, including tasks that require using tools via code. Features of this use case include: @@ -163,12 +163,12 @@ Features of this use case include: - **Customization**: AutoGen agents can be customized to meet the specific needs of an application. This includes the ability to choose the LLMs to use, the types of human input to allow, and the tools to employ. - **Human participation**: AutoGen seamlessly allows human participation. This means that humans can provide input and feedback to the agents as needed. -For [example](https://github.com/autogen-ai/autogen/blob/main/test/twoagent.py), +For [example](https://github.com/autogenhub/autogen/blob/main/test/twoagent.py), ```python from autogen import AssistantAgent, UserProxyAgent, config_list_from_json # Load LLM inference endpoints from an env variable or a file -# See https://autogen-ai.github.io/autogen/docs/FAQ#set-your-api-endpoints +# See https://autogenhub.github.io/autogen/docs/FAQ#set-your-api-endpoints # and OAI_CONFIG_LIST_sample config_list = config_list_from_json(env_or_file="OAI_CONFIG_LIST") # You can also set config_list directly as a list, for example, config_list = [{'model': 'gpt-4', 'api_key': ''},] @@ -186,10 +186,10 @@ python test/twoagent.py After the repo is cloned. The figure below shows an example conversation flow with AutoGen. -![Agent Chat Example](https://github.com/autogen-ai/autogen/blob/main/website/static/img/chat_example.png) +![Agent Chat Example](https://github.com/autogenhub/autogen/blob/main/website/static/img/chat_example.png) -Alternatively, the [sample code](https://github.com/autogen-ai/build-with-autogen/blob/main/samples/simple_chat.py) here allows a user to chat with an AutoGen agent in ChatGPT style. -Please find more [code examples](https://autogen-ai.github.io/autogen/docs/Examples#automated-multi-agent-chat) for this feature. +Alternatively, the [sample code](https://github.com/autogenhub/build-with-autogen/blob/main/samples/simple_chat.py) here allows a user to chat with an AutoGen agent in ChatGPT style. +Please find more [code examples](https://autogenhub.github.io/autogen/docs/Examples#automated-multi-agent-chat) for this feature.

@@ -199,7 +199,7 @@ Please find more [code examples](https://autogen-ai.github.io/autogen/docs/Examp ## Enhanced LLM Inferences -Autogen also helps maximize the utility out of the expensive LLMs such as ChatGPT and GPT-4. It offers [enhanced LLM inference](https://autogen-ai.github.io/autogen/docs/Use-Cases/enhanced_inference#api-unification) with powerful functionalities like caching, error handling, multi-config inference and templating. +Autogen also helps maximize the utility out of the expensive LLMs such as ChatGPT and GPT-4. It offers [enhanced LLM inference](https://autogenhub.github.io/autogen/docs/Use-Cases/enhanced_inference#api-unification) with powerful functionalities like caching, error handling, multi-config inference and templating. +Please find more [code examples](https://autogenhub.github.io/autogen/docs/Examples#tune-gpt-models) for this feature. -->

@@ -228,15 +228,15 @@ Please find more [code examples](https://autogen-ai.github.io/autogen/docs/Examp ## Documentation -You can find detailed documentation about AutoGen [here](https://autogen-ai.github.io/autogen/). +You can find detailed documentation about AutoGen [here](https://autogenhub.github.io/autogen/). In addition, you can find: -- [Research](https://autogen-ai.github.io/autogen/docs/Research), [blogposts](https://autogen-ai.github.io/autogen/blog) around AutoGen, and [Transparency FAQs](https://github.com/autogen-ai/autogen/blob/main/TRANSPARENCY_FAQS.md) +- [Research](https://autogenhub.github.io/autogen/docs/Research), [blogposts](https://autogenhub.github.io/autogen/blog) around AutoGen, and [Transparency FAQs](https://github.com/autogenhub/autogen/blob/main/TRANSPARENCY_FAQS.md) - [Discord](https://discord.gg/pAbnFJrkgZ) -- [Contributing guide](https://autogen-ai.github.io/autogen/docs/Contribute) +- [Contributing guide](https://autogenhub.github.io/autogen/docs/Contribute)

@@ -247,7 +247,7 @@ In addition, you can find: ## CookBook Explore detailed implementations with sample code and applications to help you get started with AutoGen. -[Cookbook](https://github.com/autogen-ai/build-with-autogen) +[Cookbook](https://github.com/autogenhub/build-with-autogen) ## Related Papers @@ -315,8 +315,8 @@ Explore detailed implementations with sample code and applications to help you g

## Contributors Wall - - + +

diff --git a/autogen/__init__.py b/autogen/__init__.py index 388f255d08aa..87c6d6f7eabd 100644 --- a/autogen/__init__.py +++ b/autogen/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/_pydantic.py b/autogen/_pydantic.py index fae08b246163..29f016761c37 100644 --- a/autogen/_pydantic.py +++ b/autogen/_pydantic.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/agentchat/__init__.py b/autogen/agentchat/__init__.py index c8783cb23803..642364f887db 100644 --- a/autogen/agentchat/__init__.py +++ b/autogen/agentchat/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/agentchat/agent.py b/autogen/agentchat/agent.py index 232fd802cc50..a84b613bf0e5 100644 --- a/autogen/agentchat/agent.py +++ b/autogen/agentchat/agent.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/agentchat/assistant_agent.py b/autogen/agentchat/assistant_agent.py index b5fdc540a1f2..e7f49a45f37e 100644 --- a/autogen/agentchat/assistant_agent.py +++ b/autogen/agentchat/assistant_agent.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/agentchat/chat.py b/autogen/agentchat/chat.py index 239101f320d3..93dac8fe762c 100644 --- a/autogen/agentchat/chat.py +++ b/autogen/agentchat/chat.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/agentchat/contrib/agent_builder.py b/autogen/agentchat/contrib/agent_builder.py index 2fe211ab0c27..7664a593a153 100644 --- a/autogen/agentchat/contrib/agent_builder.py +++ b/autogen/agentchat/contrib/agent_builder.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/agentchat/contrib/agent_eval/README.md b/autogen/agentchat/contrib/agent_eval/README.md index 36c51d2f3349..2906217811f9 100644 --- a/autogen/agentchat/contrib/agent_eval/README.md +++ b/autogen/agentchat/contrib/agent_eval/README.md @@ -1,4 +1,4 @@ -Agents for running the [AgentEval](https://autogen-ai.github.io/autogen/blog/2023/11/20/AgentEval/) pipeline. +Agents for running the [AgentEval](https://autogenhub.github.io/autogen/blog/2023/11/20/AgentEval/) pipeline. AgentEval is a process for evaluating a LLM-based system's performance on a given task. @@ -6,4 +6,4 @@ When given a task to evaluate and a few example runs, the critic and subcritic a For more information see: [AgentEval Integration Roadmap](https://github.com/microsoft/autogen/issues/2162) -See our [blog post](https://autogen-ai.github.io/autogen/blog/2024/06/21/AgentEval) for usage examples and general explanations. +See our [blog post](https://autogenhub.github.io/autogen/blog/2024/06/21/AgentEval) for usage examples and general explanations. diff --git a/autogen/agentchat/contrib/agent_eval/agent_eval.py b/autogen/agentchat/contrib/agent_eval/agent_eval.py index 36b78c5e56d1..fc0cf2faf345 100644 --- a/autogen/agentchat/contrib/agent_eval/agent_eval.py +++ b/autogen/agentchat/contrib/agent_eval/agent_eval.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/agentchat/contrib/agent_eval/criterion.py b/autogen/agentchat/contrib/agent_eval/criterion.py index 6ceb99ffdf9d..d23e45b26460 100644 --- a/autogen/agentchat/contrib/agent_eval/criterion.py +++ b/autogen/agentchat/contrib/agent_eval/criterion.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/agentchat/contrib/agent_eval/critic_agent.py b/autogen/agentchat/contrib/agent_eval/critic_agent.py index 165d2b07ca45..4d08b51e9cbe 100644 --- a/autogen/agentchat/contrib/agent_eval/critic_agent.py +++ b/autogen/agentchat/contrib/agent_eval/critic_agent.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/agentchat/contrib/agent_eval/quantifier_agent.py b/autogen/agentchat/contrib/agent_eval/quantifier_agent.py index dcfda41219a6..5cf6945f608f 100644 --- a/autogen/agentchat/contrib/agent_eval/quantifier_agent.py +++ b/autogen/agentchat/contrib/agent_eval/quantifier_agent.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/agentchat/contrib/agent_eval/subcritic_agent.py b/autogen/agentchat/contrib/agent_eval/subcritic_agent.py index 5a6b7ac6c5d9..0fb76f34de28 100755 --- a/autogen/agentchat/contrib/agent_eval/subcritic_agent.py +++ b/autogen/agentchat/contrib/agent_eval/subcritic_agent.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/agentchat/contrib/agent_eval/task.py b/autogen/agentchat/contrib/agent_eval/task.py index 498d2241b0c2..964e5d6d01b3 100644 --- a/autogen/agentchat/contrib/agent_eval/task.py +++ b/autogen/agentchat/contrib/agent_eval/task.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/agentchat/contrib/agent_optimizer.py b/autogen/agentchat/contrib/agent_optimizer.py index f7348687eeec..b93b19292c5a 100644 --- a/autogen/agentchat/contrib/agent_optimizer.py +++ b/autogen/agentchat/contrib/agent_optimizer.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # @@ -244,7 +244,7 @@ def step(self): """ One step of training. It will return register_for_llm and register_for_executor at each iteration, which are subsequently utilized to update the assistant and executor agents, respectively. - See example: https://github.com/autogen-ai/autogen/blob/main/notebook/agentchat_agentoptimizer.ipynb + See example: https://github.com/autogenhub/autogen/blob/main/notebook/agentchat_agentoptimizer.ipynb """ performance = sum(sum(d.values()) for d in self._trial_conversations_performance) / len( self._trial_conversations_performance diff --git a/autogen/agentchat/contrib/capabilities/agent_capability.py b/autogen/agentchat/contrib/capabilities/agent_capability.py index 67d248291edd..29830e49b27c 100644 --- a/autogen/agentchat/contrib/capabilities/agent_capability.py +++ b/autogen/agentchat/contrib/capabilities/agent_capability.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/agentchat/contrib/capabilities/generate_images.py b/autogen/agentchat/contrib/capabilities/generate_images.py index d9aa5463bbbe..421ab9f89607 100644 --- a/autogen/agentchat/contrib/capabilities/generate_images.py +++ b/autogen/agentchat/contrib/capabilities/generate_images.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/agentchat/contrib/capabilities/teachability.py b/autogen/agentchat/contrib/capabilities/teachability.py index 417d51ca6b90..1166c54bacc7 100644 --- a/autogen/agentchat/contrib/capabilities/teachability.py +++ b/autogen/agentchat/contrib/capabilities/teachability.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/agentchat/contrib/capabilities/text_compressors.py b/autogen/agentchat/contrib/capabilities/text_compressors.py index c2dcfc5ee5d5..7bafa22c5230 100644 --- a/autogen/agentchat/contrib/capabilities/text_compressors.py +++ b/autogen/agentchat/contrib/capabilities/text_compressors.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/agentchat/contrib/capabilities/transform_messages.py b/autogen/agentchat/contrib/capabilities/transform_messages.py index e4701810daef..7f9d76f27804 100644 --- a/autogen/agentchat/contrib/capabilities/transform_messages.py +++ b/autogen/agentchat/contrib/capabilities/transform_messages.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/agentchat/contrib/capabilities/transforms.py b/autogen/agentchat/contrib/capabilities/transforms.py index 4512196afd71..34054e933b92 100644 --- a/autogen/agentchat/contrib/capabilities/transforms.py +++ b/autogen/agentchat/contrib/capabilities/transforms.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/agentchat/contrib/capabilities/transforms_util.py b/autogen/agentchat/contrib/capabilities/transforms_util.py index 6f9a8813148f..5973cf0ab3ee 100644 --- a/autogen/agentchat/contrib/capabilities/transforms_util.py +++ b/autogen/agentchat/contrib/capabilities/transforms_util.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/agentchat/contrib/capabilities/vision_capability.py b/autogen/agentchat/contrib/capabilities/vision_capability.py index e26a87f550d8..edce57b40c8b 100644 --- a/autogen/agentchat/contrib/capabilities/vision_capability.py +++ b/autogen/agentchat/contrib/capabilities/vision_capability.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/agentchat/contrib/gpt_assistant_agent.py b/autogen/agentchat/contrib/gpt_assistant_agent.py index 529509c7cd0a..72bfec0041f3 100644 --- a/autogen/agentchat/contrib/gpt_assistant_agent.py +++ b/autogen/agentchat/contrib/gpt_assistant_agent.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/agentchat/contrib/img_utils.py b/autogen/agentchat/contrib/img_utils.py index b71f69e2105a..d08970ad9d3e 100644 --- a/autogen/agentchat/contrib/img_utils.py +++ b/autogen/agentchat/contrib/img_utils.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/agentchat/contrib/llamaindex_conversable_agent.py b/autogen/agentchat/contrib/llamaindex_conversable_agent.py index 94161ddd1e7f..87214720ec1d 100644 --- a/autogen/agentchat/contrib/llamaindex_conversable_agent.py +++ b/autogen/agentchat/contrib/llamaindex_conversable_agent.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/agentchat/contrib/llava_agent.py b/autogen/agentchat/contrib/llava_agent.py index 2ce6b8372adc..ef8dd06f8113 100644 --- a/autogen/agentchat/contrib/llava_agent.py +++ b/autogen/agentchat/contrib/llava_agent.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/agentchat/contrib/math_user_proxy_agent.py b/autogen/agentchat/contrib/math_user_proxy_agent.py index 0dbeba00f7e5..90f1465e60d7 100644 --- a/autogen/agentchat/contrib/math_user_proxy_agent.py +++ b/autogen/agentchat/contrib/math_user_proxy_agent.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/agentchat/contrib/multimodal_conversable_agent.py b/autogen/agentchat/contrib/multimodal_conversable_agent.py index 9cb6a5cf7658..31fe1b7d5aae 100644 --- a/autogen/agentchat/contrib/multimodal_conversable_agent.py +++ b/autogen/agentchat/contrib/multimodal_conversable_agent.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/agentchat/contrib/qdrant_retrieve_user_proxy_agent.py b/autogen/agentchat/contrib/qdrant_retrieve_user_proxy_agent.py index 836b82423515..b5260a3e7cee 100644 --- a/autogen/agentchat/contrib/qdrant_retrieve_user_proxy_agent.py +++ b/autogen/agentchat/contrib/qdrant_retrieve_user_proxy_agent.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/agentchat/contrib/retrieve_assistant_agent.py b/autogen/agentchat/contrib/retrieve_assistant_agent.py index 7cb65fe144df..39bdafeb2200 100644 --- a/autogen/agentchat/contrib/retrieve_assistant_agent.py +++ b/autogen/agentchat/contrib/retrieve_assistant_agent.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/agentchat/contrib/retrieve_user_proxy_agent.py b/autogen/agentchat/contrib/retrieve_user_proxy_agent.py index 3bf5fc63cb2d..6a149bfcc7f3 100644 --- a/autogen/agentchat/contrib/retrieve_user_proxy_agent.py +++ b/autogen/agentchat/contrib/retrieve_user_proxy_agent.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/agentchat/contrib/society_of_mind_agent.py b/autogen/agentchat/contrib/society_of_mind_agent.py index a2304f24818e..da0336588414 100644 --- a/autogen/agentchat/contrib/society_of_mind_agent.py +++ b/autogen/agentchat/contrib/society_of_mind_agent.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/agentchat/contrib/text_analyzer_agent.py b/autogen/agentchat/contrib/text_analyzer_agent.py index 3c8ac1f0c463..25dc0a999e63 100644 --- a/autogen/agentchat/contrib/text_analyzer_agent.py +++ b/autogen/agentchat/contrib/text_analyzer_agent.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/agentchat/contrib/vectordb/base.py b/autogen/agentchat/contrib/vectordb/base.py index a2048d4b1a53..4ddd9c3c4268 100644 --- a/autogen/agentchat/contrib/vectordb/base.py +++ b/autogen/agentchat/contrib/vectordb/base.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/agentchat/contrib/vectordb/chromadb.py b/autogen/agentchat/contrib/vectordb/chromadb.py index 5053a2fa0578..9c60ab35b55a 100644 --- a/autogen/agentchat/contrib/vectordb/chromadb.py +++ b/autogen/agentchat/contrib/vectordb/chromadb.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/agentchat/contrib/vectordb/mongodb.py b/autogen/agentchat/contrib/vectordb/mongodb.py index 5c90a96ba25a..9bc40e4592ce 100644 --- a/autogen/agentchat/contrib/vectordb/mongodb.py +++ b/autogen/agentchat/contrib/vectordb/mongodb.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/agentchat/contrib/vectordb/pgvectordb.py b/autogen/agentchat/contrib/vectordb/pgvectordb.py index c6114205e617..89dce58b37e5 100644 --- a/autogen/agentchat/contrib/vectordb/pgvectordb.py +++ b/autogen/agentchat/contrib/vectordb/pgvectordb.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/agentchat/contrib/vectordb/qdrant.py b/autogen/agentchat/contrib/vectordb/qdrant.py index 06837cb6a758..3a48ebf393ab 100644 --- a/autogen/agentchat/contrib/vectordb/qdrant.py +++ b/autogen/agentchat/contrib/vectordb/qdrant.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/agentchat/contrib/vectordb/utils.py b/autogen/agentchat/contrib/vectordb/utils.py index 2cfc278b9329..394927fc22b1 100644 --- a/autogen/agentchat/contrib/vectordb/utils.py +++ b/autogen/agentchat/contrib/vectordb/utils.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/agentchat/contrib/web_surfer.py b/autogen/agentchat/contrib/web_surfer.py index a0824df30aa0..4897fef5e64f 100644 --- a/autogen/agentchat/contrib/web_surfer.py +++ b/autogen/agentchat/contrib/web_surfer.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/agentchat/conversable_agent.py b/autogen/agentchat/conversable_agent.py index 1c18d4f4ded8..2b579e30faca 100644 --- a/autogen/agentchat/conversable_agent.py +++ b/autogen/agentchat/conversable_agent.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # @@ -164,7 +164,7 @@ def __init__( except TypeError as e: raise TypeError( "Please implement __deepcopy__ method for each value class in llm_config to support deepcopy." - " Refer to the docs for more details: https://autogen-ai.github.io/autogen/docs/topics/llm_configuration#adding-http-client-in-llm_config-for-proxy" + " Refer to the docs for more details: https://autogenhub.github.io/autogen/docs/topics/llm_configuration#adding-http-client-in-llm_config-for-proxy" ) from e self._validate_llm_config(llm_config) diff --git a/autogen/agentchat/groupchat.py b/autogen/agentchat/groupchat.py index b9784de48202..69d318eebbdd 100644 --- a/autogen/agentchat/groupchat.py +++ b/autogen/agentchat/groupchat.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/agentchat/user_proxy_agent.py b/autogen/agentchat/user_proxy_agent.py index 511dc5e319af..9689107268ea 100644 --- a/autogen/agentchat/user_proxy_agent.py +++ b/autogen/agentchat/user_proxy_agent.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/agentchat/utils.py b/autogen/agentchat/utils.py index 4bdb01e77366..e3e1e7c8e1a6 100644 --- a/autogen/agentchat/utils.py +++ b/autogen/agentchat/utils.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/browser_utils.py b/autogen/browser_utils.py index 1dfbe15b5b48..f3de2790755e 100644 --- a/autogen/browser_utils.py +++ b/autogen/browser_utils.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/cache/__init__.py b/autogen/cache/__init__.py index 7564e2dd501e..da8524bccc00 100644 --- a/autogen/cache/__init__.py +++ b/autogen/cache/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/cache/abstract_cache_base.py b/autogen/cache/abstract_cache_base.py index 3656eec8feeb..d3088edc65fd 100644 --- a/autogen/cache/abstract_cache_base.py +++ b/autogen/cache/abstract_cache_base.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/cache/cache.py b/autogen/cache/cache.py index 56670d2d933c..354f12be4d44 100644 --- a/autogen/cache/cache.py +++ b/autogen/cache/cache.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/cache/cache_factory.py b/autogen/cache/cache_factory.py index 0a3fbfd218ce..a662990a9cd1 100644 --- a/autogen/cache/cache_factory.py +++ b/autogen/cache/cache_factory.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/cache/cosmos_db_cache.py b/autogen/cache/cosmos_db_cache.py index 1557aa9cb889..b515ddc0f323 100644 --- a/autogen/cache/cosmos_db_cache.py +++ b/autogen/cache/cosmos_db_cache.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/cache/disk_cache.py b/autogen/cache/disk_cache.py index ee5967cf3455..4dc933db5cf0 100644 --- a/autogen/cache/disk_cache.py +++ b/autogen/cache/disk_cache.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/cache/in_memory_cache.py b/autogen/cache/in_memory_cache.py index 90de4194ce74..f1441823be0a 100644 --- a/autogen/cache/in_memory_cache.py +++ b/autogen/cache/in_memory_cache.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/cache/redis_cache.py b/autogen/cache/redis_cache.py index 8fd4f95981ec..31fb91fd5420 100644 --- a/autogen/cache/redis_cache.py +++ b/autogen/cache/redis_cache.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/code_utils.py b/autogen/code_utils.py index eecf966a3851..b8ed8e16d7cb 100644 --- a/autogen/code_utils.py +++ b/autogen/code_utils.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/exception_utils.py b/autogen/exception_utils.py index 55bca7f272a2..8a636bda4c80 100644 --- a/autogen/exception_utils.py +++ b/autogen/exception_utils.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/formatting_utils.py b/autogen/formatting_utils.py index dddd43ed83c3..8f174da6a8a9 100644 --- a/autogen/formatting_utils.py +++ b/autogen/formatting_utils.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/function_utils.py b/autogen/function_utils.py index 50e6fbcd71b9..71d16d5e1a48 100644 --- a/autogen/function_utils.py +++ b/autogen/function_utils.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/graph_utils.py b/autogen/graph_utils.py index fa7e023499e9..881efaf052c4 100644 --- a/autogen/graph_utils.py +++ b/autogen/graph_utils.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/io/__init__.py b/autogen/io/__init__.py index 4148cc9e0156..f0d766bd411d 100644 --- a/autogen/io/__init__.py +++ b/autogen/io/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/io/base.py b/autogen/io/base.py index 60ba254dc492..b333d8c1dc1f 100644 --- a/autogen/io/base.py +++ b/autogen/io/base.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/io/console.py b/autogen/io/console.py index 5fa37d585ac5..ba29bc461718 100644 --- a/autogen/io/console.py +++ b/autogen/io/console.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/io/websockets.py b/autogen/io/websockets.py index a800c8503bd0..c3c9ab1fd2fa 100644 --- a/autogen/io/websockets.py +++ b/autogen/io/websockets.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/logger/__init__.py b/autogen/logger/__init__.py index 32da4ddabddf..e3fd42d0744c 100644 --- a/autogen/logger/__init__.py +++ b/autogen/logger/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/logger/base_logger.py b/autogen/logger/base_logger.py index 12a08dd944c1..8a5828fb4a05 100644 --- a/autogen/logger/base_logger.py +++ b/autogen/logger/base_logger.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/logger/file_logger.py b/autogen/logger/file_logger.py index 935cd670510b..6d174ce14b8a 100644 --- a/autogen/logger/file_logger.py +++ b/autogen/logger/file_logger.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/logger/logger_factory.py b/autogen/logger/logger_factory.py index 91acc872990a..cbf7f78c4adb 100644 --- a/autogen/logger/logger_factory.py +++ b/autogen/logger/logger_factory.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/logger/logger_utils.py b/autogen/logger/logger_utils.py index f70b960d4df7..b042ae6b8962 100644 --- a/autogen/logger/logger_utils.py +++ b/autogen/logger/logger_utils.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/logger/sqlite_logger.py b/autogen/logger/sqlite_logger.py index d8f8e4b834ff..6bcb7f6cd0f9 100644 --- a/autogen/logger/sqlite_logger.py +++ b/autogen/logger/sqlite_logger.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/math_utils.py b/autogen/math_utils.py index 7a785ebf7a1a..c8f29409e3db 100644 --- a/autogen/math_utils.py +++ b/autogen/math_utils.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/oai/__init__.py b/autogen/oai/__init__.py index c4a2a9737da0..f0a8a8d9ac05 100644 --- a/autogen/oai/__init__.py +++ b/autogen/oai/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/oai/anthropic.py b/autogen/oai/anthropic.py index 4f8010fc3519..6d1284962d0c 100644 --- a/autogen/oai/anthropic.py +++ b/autogen/oai/anthropic.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/oai/client.py b/autogen/oai/client.py index ccf402c07a0e..541162aec1a8 100644 --- a/autogen/oai/client.py +++ b/autogen/oai/client.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/oai/client_utils.py b/autogen/oai/client_utils.py index 29a1fd5ccd41..bd5b5bd46480 100644 --- a/autogen/oai/client_utils.py +++ b/autogen/oai/client_utils.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/oai/cohere.py b/autogen/oai/cohere.py index 1edf752ff71a..df7cc95d7d4d 100644 --- a/autogen/oai/cohere.py +++ b/autogen/oai/cohere.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/oai/completion.py b/autogen/oai/completion.py index 9fe27b7939db..1713a2a945d5 100644 --- a/autogen/oai/completion.py +++ b/autogen/oai/completion.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # @@ -732,7 +732,7 @@ def create( E.g., `prompt="Complete the following sentence: {prefix}, context={"prefix": "Today I feel"}`. The actual prompt will be: "Complete the following sentence: Today I feel". - More examples can be found at [templating](https://autogen-ai.github.io/autogen/docs/Use-Cases/enhanced_inference#templating). + More examples can be found at [templating](https://autogenhub.github.io/autogen/docs/Use-Cases/enhanced_inference#templating). use_cache (bool, Optional): Whether to use cached responses. config_list (List, Optional): List of configurations for the completion to try. The first one that does not raise an error will be used. @@ -794,7 +794,7 @@ def yes_or_no_filter(context, config, response): logger.warning( "Completion.create is deprecated in autogen, pyautogen v0.2 and openai>=1. " "The new openai requires initiating a client for inference. " - "Please refer to https://autogen-ai.github.io/autogen/docs/Use-Cases/enhanced_inference#api-unification" + "Please refer to https://autogenhub.github.io/autogen/docs/Use-Cases/enhanced_inference#api-unification" ) if ERROR: raise ERROR diff --git a/autogen/oai/gemini.py b/autogen/oai/gemini.py index c267d4834408..7a82f35ea5f2 100644 --- a/autogen/oai/gemini.py +++ b/autogen/oai/gemini.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # @@ -171,7 +171,7 @@ def create(self, params: Dict) -> ChatCompletion: raise ValueError( "Please provide a model name for the Gemini Client. " "You can configure it in the OAI Config List file. " - "See this [LLM configuration tutorial](https://autogen-ai.github.io/autogen/docs/topics/llm_configuration/) for more details." + "See this [LLM configuration tutorial](https://autogenhub.github.io/autogen/docs/topics/llm_configuration/) for more details." ) params.get("api_type", "google") # not used diff --git a/autogen/oai/groq.py b/autogen/oai/groq.py index 07799226196d..b855c674a3cb 100644 --- a/autogen/oai/groq.py +++ b/autogen/oai/groq.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/oai/mistral.py b/autogen/oai/mistral.py index 17244242aa72..ea83b5b678c8 100644 --- a/autogen/oai/mistral.py +++ b/autogen/oai/mistral.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/oai/openai_utils.py b/autogen/oai/openai_utils.py index f4175f804edd..5e08cec86583 100644 --- a/autogen/oai/openai_utils.py +++ b/autogen/oai/openai_utils.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/oai/together.py b/autogen/oai/together.py index 07eb97e30291..6deacfce687c 100644 --- a/autogen/oai/together.py +++ b/autogen/oai/together.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/retrieve_utils.py b/autogen/retrieve_utils.py index b9b8fb19719b..d393e9c95ebc 100644 --- a/autogen/retrieve_utils.py +++ b/autogen/retrieve_utils.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/runtime_logging.py b/autogen/runtime_logging.py index 73bd62120e10..bf127cc07b49 100644 --- a/autogen/runtime_logging.py +++ b/autogen/runtime_logging.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/token_count_utils.py b/autogen/token_count_utils.py index f586f0ae7c5e..d5fa9b761c83 100644 --- a/autogen/token_count_utils.py +++ b/autogen/token_count_utils.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/types.py b/autogen/types.py index 43f7f96ddc29..a28d4f852e2a 100644 --- a/autogen/types.py +++ b/autogen/types.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/autogen/version.py b/autogen/version.py index f013a5c62a02..fba38f110871 100644 --- a/autogen/version.py +++ b/autogen/version.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/dotnet/README.md b/dotnet/README.md index fcd693975796..baf2206a0c0d 100644 --- a/dotnet/README.md +++ b/dotnet/README.md @@ -1,6 +1,6 @@ ### AutoGen for .NET -[![dotnet-ci](https://github.com/autogen-ai/autogen/actions/workflows/dotnet-build.yml/badge.svg)](https://github.com/autogen-ai/autogen/actions/workflows/dotnet-build.yml) +[![dotnet-ci](https://github.com/autogenhub/autogen/actions/workflows/dotnet-build.yml/badge.svg)](https://github.com/autogenhub/autogen/actions/workflows/dotnet-build.yml) [![NuGet version](https://badge.fury.io/nu/AutoGen.Core.svg)](https://badge.fury.io/nu/AutoGen.Core) > [!NOTE] @@ -45,7 +45,7 @@ await userProxyAgent.InitiateChatAsync( ``` #### Samples -You can find more examples under the [sample project](https://github.com/autogen-ai/autogen/tree/dotnet/dotnet/sample/AutoGen.BasicSamples). +You can find more examples under the [sample project](https://github.com/autogenhub/autogen/tree/dotnet/dotnet/sample/AutoGen.BasicSamples). #### Functionality - ConversableAgent diff --git a/dotnet/eng/MetaInfo.props b/dotnet/eng/MetaInfo.props index 3b248ce75b3c..adda3451cd3a 100644 --- a/dotnet/eng/MetaInfo.props +++ b/dotnet/eng/MetaInfo.props @@ -3,7 +3,7 @@ 0.1.0 AutoGen - https://autogen-ai.github.io/autogen-for-net/ + https://autogenhub.github.io/autogen-for-net/ https://github.com/microsoft/autogen git MIT diff --git a/dotnet/nuget/NUGET.md b/dotnet/nuget/NUGET.md index 071bdc9e4877..7df735e5b147 100644 --- a/dotnet/nuget/NUGET.md +++ b/dotnet/nuget/NUGET.md @@ -1,8 +1,8 @@ ### About AutoGen for .NET -`AutoGen for .NET` is the official .NET SDK for [AutoGen](https://github.com/autogen-ai/autogen). It enables you to create LLM agents and construct multi-agent workflows with ease. It also provides integration with popular platforms like OpenAI, Semantic Kernel, and LM Studio. +`AutoGen for .NET` is the official .NET SDK for [AutoGen](https://github.com/autogenhub/autogen). It enables you to create LLM agents and construct multi-agent workflows with ease. It also provides integration with popular platforms like OpenAI, Semantic Kernel, and LM Studio. ### Gettings started -- Find documents and examples on our [document site](https://autogen-ai.github.io/autogen-for-net/) +- Find documents and examples on our [document site](https://autogenhub.github.io/autogen-for-net/) - Join our [Discord channel](https://discord.gg/pAbnFJrkgZ) to get help and discuss with the community -- Report a bug or request a feature by creating a new issue in our [github repo](https://github.com/autogen-ai/autogen) -- Consume the nightly build package from one of the [nightly build feeds](https://autogen-ai.github.io/autogen-for-net/articles/Installation.html#nighly-build) \ No newline at end of file +- Report a bug or request a feature by creating a new issue in our [github repo](https://github.com/autogenhub/autogen) +- Consume the nightly build package from one of the [nightly build feeds](https://autogenhub.github.io/autogen-for-net/articles/Installation.html#nighly-build) \ No newline at end of file diff --git a/dotnet/nuget/nuget-package.props b/dotnet/nuget/nuget-package.props index 47d57dcfc4af..3307a7c3e315 100644 --- a/dotnet/nuget/nuget-package.props +++ b/dotnet/nuget/nuget-package.props @@ -13,7 +13,7 @@ MIT © Microsoft Corporation. All rights reserved. - https://autogen-ai.github.io/autogen-for-net + https://autogenhub.github.io/autogen-for-net https://github.com/microsoft/autogen true diff --git a/dotnet/sample/AutoGen.Anthropic.Samples/Anthropic_Agent_With_Prompt_Caching.cs b/dotnet/sample/AutoGen.Anthropic.Samples/Anthropic_Agent_With_Prompt_Caching.cs index d95265c14535..869934437200 100644 --- a/dotnet/sample/AutoGen.Anthropic.Samples/Anthropic_Agent_With_Prompt_Caching.cs +++ b/dotnet/sample/AutoGen.Anthropic.Samples/Anthropic_Agent_With_Prompt_Caching.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/sample/AutoGen.Anthropic.Samples/Create_Anthropic_Agent.cs b/dotnet/sample/AutoGen.Anthropic.Samples/Create_Anthropic_Agent.cs index fd6173509334..9dc60efcc240 100644 --- a/dotnet/sample/AutoGen.Anthropic.Samples/Create_Anthropic_Agent.cs +++ b/dotnet/sample/AutoGen.Anthropic.Samples/Create_Anthropic_Agent.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/sample/AutoGen.Anthropic.Samples/Create_Anthropic_Agent_With_Tool.cs b/dotnet/sample/AutoGen.Anthropic.Samples/Create_Anthropic_Agent_With_Tool.cs index e3d76e4b7bd1..945d52e24e25 100644 --- a/dotnet/sample/AutoGen.Anthropic.Samples/Create_Anthropic_Agent_With_Tool.cs +++ b/dotnet/sample/AutoGen.Anthropic.Samples/Create_Anthropic_Agent_With_Tool.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/sample/AutoGen.Anthropic.Samples/Program.cs b/dotnet/sample/AutoGen.Anthropic.Samples/Program.cs index 1b8301936ae3..eb6fabd279b8 100644 --- a/dotnet/sample/AutoGen.Anthropic.Samples/Program.cs +++ b/dotnet/sample/AutoGen.Anthropic.Samples/Program.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/AgentCodeSnippet.cs b/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/AgentCodeSnippet.cs index d821be041389..a27e11a2df32 100644 --- a/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/AgentCodeSnippet.cs +++ b/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/AgentCodeSnippet.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/BuildInMessageCodeSnippet.cs b/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/BuildInMessageCodeSnippet.cs index ee351aa94e51..989c003e02f4 100644 --- a/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/BuildInMessageCodeSnippet.cs +++ b/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/BuildInMessageCodeSnippet.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/CreateAnAgent.cs b/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/CreateAnAgent.cs index 52d0da4e0c4e..97d24da1985e 100644 --- a/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/CreateAnAgent.cs +++ b/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/CreateAnAgent.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/FunctionCallCodeSnippet.cs b/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/FunctionCallCodeSnippet.cs index 3633761b1b0c..877813808d9d 100644 --- a/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/FunctionCallCodeSnippet.cs +++ b/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/FunctionCallCodeSnippet.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/GetStartCodeSnippet.cs b/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/GetStartCodeSnippet.cs index ccc0b18e90a6..1a8f51d9d949 100644 --- a/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/GetStartCodeSnippet.cs +++ b/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/GetStartCodeSnippet.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/MiddlewareAgentCodeSnippet.cs b/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/MiddlewareAgentCodeSnippet.cs index 7fd0e197c205..7bdee2931a13 100644 --- a/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/MiddlewareAgentCodeSnippet.cs +++ b/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/MiddlewareAgentCodeSnippet.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/MistralAICodeSnippet.cs b/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/MistralAICodeSnippet.cs index a9b08aaec78a..721be6541e7d 100644 --- a/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/MistralAICodeSnippet.cs +++ b/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/MistralAICodeSnippet.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/OpenAICodeSnippet.cs b/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/OpenAICodeSnippet.cs index e71d34608a92..6014f4671d80 100644 --- a/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/OpenAICodeSnippet.cs +++ b/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/OpenAICodeSnippet.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/PrintMessageMiddlewareCodeSnippet.cs b/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/PrintMessageMiddlewareCodeSnippet.cs index e37679c5e4fb..4fe6c806ba9e 100644 --- a/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/PrintMessageMiddlewareCodeSnippet.cs +++ b/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/PrintMessageMiddlewareCodeSnippet.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/RunCodeSnippetCodeSnippet.cs b/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/RunCodeSnippetCodeSnippet.cs index 7b265c61631a..15206cb2d9db 100644 --- a/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/RunCodeSnippetCodeSnippet.cs +++ b/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/RunCodeSnippetCodeSnippet.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/SemanticKernelCodeSnippet.cs b/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/SemanticKernelCodeSnippet.cs index ea5934a3620f..622be6d1c7e2 100644 --- a/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/SemanticKernelCodeSnippet.cs +++ b/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/SemanticKernelCodeSnippet.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/TypeSafeFunctionCallCodeSnippet.cs b/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/TypeSafeFunctionCallCodeSnippet.cs index e2cbef82afe3..b2576fc352a0 100644 --- a/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/TypeSafeFunctionCallCodeSnippet.cs +++ b/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/TypeSafeFunctionCallCodeSnippet.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/UserProxyAgentCodeSnippet.cs b/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/UserProxyAgentCodeSnippet.cs index e757cb477556..f7d201ad1c81 100644 --- a/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/UserProxyAgentCodeSnippet.cs +++ b/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/UserProxyAgentCodeSnippet.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/sample/AutoGen.BasicSamples/Example01_AssistantAgent.cs b/dotnet/sample/AutoGen.BasicSamples/Example01_AssistantAgent.cs index 9e748e43c39d..08dbf1b17d07 100644 --- a/dotnet/sample/AutoGen.BasicSamples/Example01_AssistantAgent.cs +++ b/dotnet/sample/AutoGen.BasicSamples/Example01_AssistantAgent.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/sample/AutoGen.BasicSamples/Example02_TwoAgent_MathChat.cs b/dotnet/sample/AutoGen.BasicSamples/Example02_TwoAgent_MathChat.cs index 4ca362175b4d..b9035f54dd3a 100644 --- a/dotnet/sample/AutoGen.BasicSamples/Example02_TwoAgent_MathChat.cs +++ b/dotnet/sample/AutoGen.BasicSamples/Example02_TwoAgent_MathChat.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/sample/AutoGen.BasicSamples/Example03_Agent_FunctionCall.cs b/dotnet/sample/AutoGen.BasicSamples/Example03_Agent_FunctionCall.cs index a0ed7b93d1b0..9c568e398a14 100644 --- a/dotnet/sample/AutoGen.BasicSamples/Example03_Agent_FunctionCall.cs +++ b/dotnet/sample/AutoGen.BasicSamples/Example03_Agent_FunctionCall.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/sample/AutoGen.BasicSamples/Example04_Dynamic_GroupChat_Coding_Task.cs b/dotnet/sample/AutoGen.BasicSamples/Example04_Dynamic_GroupChat_Coding_Task.cs index 5e4981c257b8..817ddd7a49ff 100644 --- a/dotnet/sample/AutoGen.BasicSamples/Example04_Dynamic_GroupChat_Coding_Task.cs +++ b/dotnet/sample/AutoGen.BasicSamples/Example04_Dynamic_GroupChat_Coding_Task.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/sample/AutoGen.BasicSamples/Example05_Dalle_And_GPT4V.cs b/dotnet/sample/AutoGen.BasicSamples/Example05_Dalle_And_GPT4V.cs index 5605ee76976a..9cd0526a90c8 100644 --- a/dotnet/sample/AutoGen.BasicSamples/Example05_Dalle_And_GPT4V.cs +++ b/dotnet/sample/AutoGen.BasicSamples/Example05_Dalle_And_GPT4V.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/sample/AutoGen.BasicSamples/Example06_UserProxyAgent.cs b/dotnet/sample/AutoGen.BasicSamples/Example06_UserProxyAgent.cs index 2ca2a34b245d..ef8a166e2195 100644 --- a/dotnet/sample/AutoGen.BasicSamples/Example06_UserProxyAgent.cs +++ b/dotnet/sample/AutoGen.BasicSamples/Example06_UserProxyAgent.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/sample/AutoGen.BasicSamples/Example07_Dynamic_GroupChat_Calculate_Fibonacci.cs b/dotnet/sample/AutoGen.BasicSamples/Example07_Dynamic_GroupChat_Calculate_Fibonacci.cs index 301f01e998fc..b0667cdc0b56 100644 --- a/dotnet/sample/AutoGen.BasicSamples/Example07_Dynamic_GroupChat_Calculate_Fibonacci.cs +++ b/dotnet/sample/AutoGen.BasicSamples/Example07_Dynamic_GroupChat_Calculate_Fibonacci.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/sample/AutoGen.BasicSamples/Example08_LMStudio.cs b/dotnet/sample/AutoGen.BasicSamples/Example08_LMStudio.cs index 231d24e67a3d..a9b51026615b 100644 --- a/dotnet/sample/AutoGen.BasicSamples/Example08_LMStudio.cs +++ b/dotnet/sample/AutoGen.BasicSamples/Example08_LMStudio.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/sample/AutoGen.BasicSamples/Example09_LMStudio_FunctionCall.cs b/dotnet/sample/AutoGen.BasicSamples/Example09_LMStudio_FunctionCall.cs index 146708e68596..7432046e385f 100644 --- a/dotnet/sample/AutoGen.BasicSamples/Example09_LMStudio_FunctionCall.cs +++ b/dotnet/sample/AutoGen.BasicSamples/Example09_LMStudio_FunctionCall.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/sample/AutoGen.BasicSamples/Example10_SemanticKernel.cs b/dotnet/sample/AutoGen.BasicSamples/Example10_SemanticKernel.cs index ef586ad8b2eb..03152f8059d6 100644 --- a/dotnet/sample/AutoGen.BasicSamples/Example10_SemanticKernel.cs +++ b/dotnet/sample/AutoGen.BasicSamples/Example10_SemanticKernel.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/sample/AutoGen.BasicSamples/Example11_Sequential_GroupChat_Example.cs b/dotnet/sample/AutoGen.BasicSamples/Example11_Sequential_GroupChat_Example.cs index dffcfd4c7339..8e673447a0f9 100644 --- a/dotnet/sample/AutoGen.BasicSamples/Example11_Sequential_GroupChat_Example.cs +++ b/dotnet/sample/AutoGen.BasicSamples/Example11_Sequential_GroupChat_Example.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/sample/AutoGen.BasicSamples/Example12_TwoAgent_Fill_Application.cs b/dotnet/sample/AutoGen.BasicSamples/Example12_TwoAgent_Fill_Application.cs index 2d6f48916ce6..3bd5e870ef54 100644 --- a/dotnet/sample/AutoGen.BasicSamples/Example12_TwoAgent_Fill_Application.cs +++ b/dotnet/sample/AutoGen.BasicSamples/Example12_TwoAgent_Fill_Application.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/sample/AutoGen.BasicSamples/Example13_OpenAIAgent_JsonMode.cs b/dotnet/sample/AutoGen.BasicSamples/Example13_OpenAIAgent_JsonMode.cs index 59260833bcfd..0761fc3aa19f 100644 --- a/dotnet/sample/AutoGen.BasicSamples/Example13_OpenAIAgent_JsonMode.cs +++ b/dotnet/sample/AutoGen.BasicSamples/Example13_OpenAIAgent_JsonMode.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/sample/AutoGen.BasicSamples/Example14_MistralClientAgent_TokenCount.cs b/dotnet/sample/AutoGen.BasicSamples/Example14_MistralClientAgent_TokenCount.cs index 042ada1bb42e..bd363c681eab 100644 --- a/dotnet/sample/AutoGen.BasicSamples/Example14_MistralClientAgent_TokenCount.cs +++ b/dotnet/sample/AutoGen.BasicSamples/Example14_MistralClientAgent_TokenCount.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/sample/AutoGen.BasicSamples/Example15_GPT4V_BinaryDataImageMessage.cs b/dotnet/sample/AutoGen.BasicSamples/Example15_GPT4V_BinaryDataImageMessage.cs index 5f01901d8feb..e508cf8b6f94 100644 --- a/dotnet/sample/AutoGen.BasicSamples/Example15_GPT4V_BinaryDataImageMessage.cs +++ b/dotnet/sample/AutoGen.BasicSamples/Example15_GPT4V_BinaryDataImageMessage.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/sample/AutoGen.BasicSamples/Example16_OpenAIChatAgent_ConnectToThirdPartyBackend.cs b/dotnet/sample/AutoGen.BasicSamples/Example16_OpenAIChatAgent_ConnectToThirdPartyBackend.cs index e8b5c1ebb1e9..fcdc90625605 100644 --- a/dotnet/sample/AutoGen.BasicSamples/Example16_OpenAIChatAgent_ConnectToThirdPartyBackend.cs +++ b/dotnet/sample/AutoGen.BasicSamples/Example16_OpenAIChatAgent_ConnectToThirdPartyBackend.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/sample/AutoGen.BasicSamples/Example17_ReActAgent.cs b/dotnet/sample/AutoGen.BasicSamples/Example17_ReActAgent.cs index 00175c274bc4..a64b6a088b3b 100644 --- a/dotnet/sample/AutoGen.BasicSamples/Example17_ReActAgent.cs +++ b/dotnet/sample/AutoGen.BasicSamples/Example17_ReActAgent.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/sample/AutoGen.BasicSamples/GettingStart/Agent_Middleware.cs b/dotnet/sample/AutoGen.BasicSamples/GettingStart/Agent_Middleware.cs index 1eddaa4631e2..81769fdd6da0 100644 --- a/dotnet/sample/AutoGen.BasicSamples/GettingStart/Agent_Middleware.cs +++ b/dotnet/sample/AutoGen.BasicSamples/GettingStart/Agent_Middleware.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/sample/AutoGen.BasicSamples/GettingStart/Chat_With_Agent.cs b/dotnet/sample/AutoGen.BasicSamples/GettingStart/Chat_With_Agent.cs index 6a65d34d38c8..0c43f9c824be 100644 --- a/dotnet/sample/AutoGen.BasicSamples/GettingStart/Chat_With_Agent.cs +++ b/dotnet/sample/AutoGen.BasicSamples/GettingStart/Chat_With_Agent.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/sample/AutoGen.BasicSamples/GettingStart/Dynamic_Group_Chat.cs b/dotnet/sample/AutoGen.BasicSamples/GettingStart/Dynamic_Group_Chat.cs index f0374664287e..95ce327ba0ae 100644 --- a/dotnet/sample/AutoGen.BasicSamples/GettingStart/Dynamic_Group_Chat.cs +++ b/dotnet/sample/AutoGen.BasicSamples/GettingStart/Dynamic_Group_Chat.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/sample/AutoGen.BasicSamples/GettingStart/FSM_Group_Chat.cs b/dotnet/sample/AutoGen.BasicSamples/GettingStart/FSM_Group_Chat.cs index 00e2c631ed0d..2adfe244eba9 100644 --- a/dotnet/sample/AutoGen.BasicSamples/GettingStart/FSM_Group_Chat.cs +++ b/dotnet/sample/AutoGen.BasicSamples/GettingStart/FSM_Group_Chat.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/sample/AutoGen.BasicSamples/GettingStart/Image_Chat_With_Agent.cs b/dotnet/sample/AutoGen.BasicSamples/GettingStart/Image_Chat_With_Agent.cs index e492dd39f2a1..7d842f309c56 100644 --- a/dotnet/sample/AutoGen.BasicSamples/GettingStart/Image_Chat_With_Agent.cs +++ b/dotnet/sample/AutoGen.BasicSamples/GettingStart/Image_Chat_With_Agent.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/sample/AutoGen.BasicSamples/GettingStart/Streaming_Tool_Call.cs b/dotnet/sample/AutoGen.BasicSamples/GettingStart/Streaming_Tool_Call.cs index e8b614792870..58994c6037e1 100644 --- a/dotnet/sample/AutoGen.BasicSamples/GettingStart/Streaming_Tool_Call.cs +++ b/dotnet/sample/AutoGen.BasicSamples/GettingStart/Streaming_Tool_Call.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/sample/AutoGen.BasicSamples/GettingStart/Use_Tools_With_Agent.cs b/dotnet/sample/AutoGen.BasicSamples/GettingStart/Use_Tools_With_Agent.cs index 88ceb07fed3e..bca5e4166575 100644 --- a/dotnet/sample/AutoGen.BasicSamples/GettingStart/Use_Tools_With_Agent.cs +++ b/dotnet/sample/AutoGen.BasicSamples/GettingStart/Use_Tools_With_Agent.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/sample/AutoGen.BasicSamples/GlobalUsing.cs b/dotnet/sample/AutoGen.BasicSamples/GlobalUsing.cs index 10b7932f1e52..dc2491e89b09 100644 --- a/dotnet/sample/AutoGen.BasicSamples/GlobalUsing.cs +++ b/dotnet/sample/AutoGen.BasicSamples/GlobalUsing.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/sample/AutoGen.BasicSamples/LLMConfiguration.cs b/dotnet/sample/AutoGen.BasicSamples/LLMConfiguration.cs index 09f047d06250..ace6b2a026f3 100644 --- a/dotnet/sample/AutoGen.BasicSamples/LLMConfiguration.cs +++ b/dotnet/sample/AutoGen.BasicSamples/LLMConfiguration.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/sample/AutoGen.BasicSamples/Program.cs b/dotnet/sample/AutoGen.BasicSamples/Program.cs index 004f3daecd45..cbb8f641c5ae 100644 --- a/dotnet/sample/AutoGen.BasicSamples/Program.cs +++ b/dotnet/sample/AutoGen.BasicSamples/Program.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/sample/AutoGen.Gemini.Sample/Chat_With_Google_Gemini.cs b/dotnet/sample/AutoGen.Gemini.Sample/Chat_With_Google_Gemini.cs index 2106d240bde6..eb1a98f8410b 100644 --- a/dotnet/sample/AutoGen.Gemini.Sample/Chat_With_Google_Gemini.cs +++ b/dotnet/sample/AutoGen.Gemini.Sample/Chat_With_Google_Gemini.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/sample/AutoGen.Gemini.Sample/Chat_With_Vertex_Gemini.cs b/dotnet/sample/AutoGen.Gemini.Sample/Chat_With_Vertex_Gemini.cs index 8bd1ceb26472..2573fce8e879 100644 --- a/dotnet/sample/AutoGen.Gemini.Sample/Chat_With_Vertex_Gemini.cs +++ b/dotnet/sample/AutoGen.Gemini.Sample/Chat_With_Vertex_Gemini.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/sample/AutoGen.Gemini.Sample/Function_Call_With_Gemini.cs b/dotnet/sample/AutoGen.Gemini.Sample/Function_Call_With_Gemini.cs index 4183fef79e25..172fc6ee5c66 100644 --- a/dotnet/sample/AutoGen.Gemini.Sample/Function_Call_With_Gemini.cs +++ b/dotnet/sample/AutoGen.Gemini.Sample/Function_Call_With_Gemini.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/sample/AutoGen.Gemini.Sample/Image_Chat_With_Vertex_Gemini.cs b/dotnet/sample/AutoGen.Gemini.Sample/Image_Chat_With_Vertex_Gemini.cs index 72eea165cd4b..2a1985870a6f 100644 --- a/dotnet/sample/AutoGen.Gemini.Sample/Image_Chat_With_Vertex_Gemini.cs +++ b/dotnet/sample/AutoGen.Gemini.Sample/Image_Chat_With_Vertex_Gemini.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/sample/AutoGen.Gemini.Sample/Program.cs b/dotnet/sample/AutoGen.Gemini.Sample/Program.cs index a937e0a0f339..f1529c133e23 100644 --- a/dotnet/sample/AutoGen.Gemini.Sample/Program.cs +++ b/dotnet/sample/AutoGen.Gemini.Sample/Program.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/sample/AutoGen.Ollama.Sample/Chat_With_LLaMA.cs b/dotnet/sample/AutoGen.Ollama.Sample/Chat_With_LLaMA.cs index cb9a4307d570..3176e3ab59c9 100644 --- a/dotnet/sample/AutoGen.Ollama.Sample/Chat_With_LLaMA.cs +++ b/dotnet/sample/AutoGen.Ollama.Sample/Chat_With_LLaMA.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/sample/AutoGen.Ollama.Sample/Chat_With_LLaVA.cs b/dotnet/sample/AutoGen.Ollama.Sample/Chat_With_LLaVA.cs index 66d41958a90d..535af68ebc08 100644 --- a/dotnet/sample/AutoGen.Ollama.Sample/Chat_With_LLaVA.cs +++ b/dotnet/sample/AutoGen.Ollama.Sample/Chat_With_LLaVA.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/sample/AutoGen.Ollama.Sample/Program.cs b/dotnet/sample/AutoGen.Ollama.Sample/Program.cs index 66c7fe742559..26b16485d62f 100644 --- a/dotnet/sample/AutoGen.Ollama.Sample/Program.cs +++ b/dotnet/sample/AutoGen.Ollama.Sample/Program.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/sample/AutoGen.OpenAI.Sample/Connect_To_Ollama.cs b/dotnet/sample/AutoGen.OpenAI.Sample/Connect_To_Ollama.cs index 9b9ed86ac68b..123ebe6d877f 100644 --- a/dotnet/sample/AutoGen.OpenAI.Sample/Connect_To_Ollama.cs +++ b/dotnet/sample/AutoGen.OpenAI.Sample/Connect_To_Ollama.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/sample/AutoGen.OpenAI.Sample/Program.cs b/dotnet/sample/AutoGen.OpenAI.Sample/Program.cs index a1be189fab67..1038ec74927a 100644 --- a/dotnet/sample/AutoGen.OpenAI.Sample/Program.cs +++ b/dotnet/sample/AutoGen.OpenAI.Sample/Program.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/sample/AutoGen.OpenAI.Sample/Tool_Call_With_Ollama_And_LiteLLM.cs b/dotnet/sample/AutoGen.OpenAI.Sample/Tool_Call_With_Ollama_And_LiteLLM.cs index bbe66900f897..c3ded0755a3e 100644 --- a/dotnet/sample/AutoGen.OpenAI.Sample/Tool_Call_With_Ollama_And_LiteLLM.cs +++ b/dotnet/sample/AutoGen.OpenAI.Sample/Tool_Call_With_Ollama_And_LiteLLM.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/sample/AutoGen.OpenAI.Sample/Use_Json_Mode.cs b/dotnet/sample/AutoGen.OpenAI.Sample/Use_Json_Mode.cs index 2e6d792aabb8..10c4a69ebef7 100644 --- a/dotnet/sample/AutoGen.OpenAI.Sample/Use_Json_Mode.cs +++ b/dotnet/sample/AutoGen.OpenAI.Sample/Use_Json_Mode.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/sample/AutoGen.SemanticKernel.Sample/Create_Semantic_Kernel_Agent.cs b/dotnet/sample/AutoGen.SemanticKernel.Sample/Create_Semantic_Kernel_Agent.cs index 870b1058bf64..776035a7e084 100644 --- a/dotnet/sample/AutoGen.SemanticKernel.Sample/Create_Semantic_Kernel_Agent.cs +++ b/dotnet/sample/AutoGen.SemanticKernel.Sample/Create_Semantic_Kernel_Agent.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/sample/AutoGen.SemanticKernel.Sample/Create_Semantic_Kernel_Chat_Agent.cs b/dotnet/sample/AutoGen.SemanticKernel.Sample/Create_Semantic_Kernel_Chat_Agent.cs index 2e41bf5d70a1..42b34a566747 100644 --- a/dotnet/sample/AutoGen.SemanticKernel.Sample/Create_Semantic_Kernel_Chat_Agent.cs +++ b/dotnet/sample/AutoGen.SemanticKernel.Sample/Create_Semantic_Kernel_Chat_Agent.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/sample/AutoGen.SemanticKernel.Sample/Program.cs b/dotnet/sample/AutoGen.SemanticKernel.Sample/Program.cs index f32ad287a1cb..79d5da90c5b0 100644 --- a/dotnet/sample/AutoGen.SemanticKernel.Sample/Program.cs +++ b/dotnet/sample/AutoGen.SemanticKernel.Sample/Program.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/sample/AutoGen.SemanticKernel.Sample/Use_Bing_Search_With_Semantic_Kernel_Agent.cs b/dotnet/sample/AutoGen.SemanticKernel.Sample/Use_Bing_Search_With_Semantic_Kernel_Agent.cs index 5082a86b0758..7e5d252fa13a 100644 --- a/dotnet/sample/AutoGen.SemanticKernel.Sample/Use_Bing_Search_With_Semantic_Kernel_Agent.cs +++ b/dotnet/sample/AutoGen.SemanticKernel.Sample/Use_Bing_Search_With_Semantic_Kernel_Agent.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/sample/AutoGen.SemanticKernel.Sample/Use_Kernel_Functions_With_Other_Agent.cs b/dotnet/sample/AutoGen.SemanticKernel.Sample/Use_Kernel_Functions_With_Other_Agent.cs index 1c718daecb71..d3b54b8e8c50 100644 --- a/dotnet/sample/AutoGen.SemanticKernel.Sample/Use_Kernel_Functions_With_Other_Agent.cs +++ b/dotnet/sample/AutoGen.SemanticKernel.Sample/Use_Kernel_Functions_With_Other_Agent.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/sample/AutoGen.WebAPI.Sample/Program.cs b/dotnet/sample/AutoGen.WebAPI.Sample/Program.cs index 0dc6fd4a0d8b..86828343f0e8 100644 --- a/dotnet/sample/AutoGen.WebAPI.Sample/Program.cs +++ b/dotnet/sample/AutoGen.WebAPI.Sample/Program.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Anthropic/Agent/AnthropicClientAgent.cs b/dotnet/src/AutoGen.Anthropic/Agent/AnthropicClientAgent.cs index 428bf95cfe2b..e850f6db1ed8 100644 --- a/dotnet/src/AutoGen.Anthropic/Agent/AnthropicClientAgent.cs +++ b/dotnet/src/AutoGen.Anthropic/Agent/AnthropicClientAgent.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Anthropic/AnthropicClient.cs b/dotnet/src/AutoGen.Anthropic/AnthropicClient.cs index aeff15b0be04..91729a46f851 100644 --- a/dotnet/src/AutoGen.Anthropic/AnthropicClient.cs +++ b/dotnet/src/AutoGen.Anthropic/AnthropicClient.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Anthropic/Converters/ContentBaseConverter.cs b/dotnet/src/AutoGen.Anthropic/Converters/ContentBaseConverter.cs index a786874ffe24..f5936cb07ed7 100644 --- a/dotnet/src/AutoGen.Anthropic/Converters/ContentBaseConverter.cs +++ b/dotnet/src/AutoGen.Anthropic/Converters/ContentBaseConverter.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Anthropic/Converters/JsonPropertyNameEnumCoverter.cs b/dotnet/src/AutoGen.Anthropic/Converters/JsonPropertyNameEnumCoverter.cs index cbd93810f924..50f743ef7eb8 100644 --- a/dotnet/src/AutoGen.Anthropic/Converters/JsonPropertyNameEnumCoverter.cs +++ b/dotnet/src/AutoGen.Anthropic/Converters/JsonPropertyNameEnumCoverter.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Anthropic/Converters/SystemMessageConverter.cs b/dotnet/src/AutoGen.Anthropic/Converters/SystemMessageConverter.cs index 96717a526e89..6a78e781cfa4 100644 --- a/dotnet/src/AutoGen.Anthropic/Converters/SystemMessageConverter.cs +++ b/dotnet/src/AutoGen.Anthropic/Converters/SystemMessageConverter.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Anthropic/DTO/ChatCompletionRequest.cs b/dotnet/src/AutoGen.Anthropic/DTO/ChatCompletionRequest.cs index 6df2b18d1b0e..d977f829c29c 100644 --- a/dotnet/src/AutoGen.Anthropic/DTO/ChatCompletionRequest.cs +++ b/dotnet/src/AutoGen.Anthropic/DTO/ChatCompletionRequest.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Anthropic/DTO/ChatCompletionResponse.cs b/dotnet/src/AutoGen.Anthropic/DTO/ChatCompletionResponse.cs index d9bf9c66dbab..5d2781ecd05d 100644 --- a/dotnet/src/AutoGen.Anthropic/DTO/ChatCompletionResponse.cs +++ b/dotnet/src/AutoGen.Anthropic/DTO/ChatCompletionResponse.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Anthropic/DTO/Content.cs b/dotnet/src/AutoGen.Anthropic/DTO/Content.cs index 509dc772222d..8667d6da2902 100644 --- a/dotnet/src/AutoGen.Anthropic/DTO/Content.cs +++ b/dotnet/src/AutoGen.Anthropic/DTO/Content.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Anthropic/DTO/ErrorResponse.cs b/dotnet/src/AutoGen.Anthropic/DTO/ErrorResponse.cs index 05a93ca6cf99..ad15529e8e3c 100644 --- a/dotnet/src/AutoGen.Anthropic/DTO/ErrorResponse.cs +++ b/dotnet/src/AutoGen.Anthropic/DTO/ErrorResponse.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Anthropic/DTO/Tool.cs b/dotnet/src/AutoGen.Anthropic/DTO/Tool.cs index 05d9467f8284..a53d0726d70a 100644 --- a/dotnet/src/AutoGen.Anthropic/DTO/Tool.cs +++ b/dotnet/src/AutoGen.Anthropic/DTO/Tool.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Anthropic/DTO/ToolChoice.cs b/dotnet/src/AutoGen.Anthropic/DTO/ToolChoice.cs index f6a6dadc996d..74c09517f7bf 100644 --- a/dotnet/src/AutoGen.Anthropic/DTO/ToolChoice.cs +++ b/dotnet/src/AutoGen.Anthropic/DTO/ToolChoice.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Anthropic/Extensions/AnthropicAgentExtension.cs b/dotnet/src/AutoGen.Anthropic/Extensions/AnthropicAgentExtension.cs index 0ef0bda21512..33f520869498 100644 --- a/dotnet/src/AutoGen.Anthropic/Extensions/AnthropicAgentExtension.cs +++ b/dotnet/src/AutoGen.Anthropic/Extensions/AnthropicAgentExtension.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Anthropic/Middleware/AnthropicMessageConnector.cs b/dotnet/src/AutoGen.Anthropic/Middleware/AnthropicMessageConnector.cs index b7be93d98311..4b53db6f36d3 100644 --- a/dotnet/src/AutoGen.Anthropic/Middleware/AnthropicMessageConnector.cs +++ b/dotnet/src/AutoGen.Anthropic/Middleware/AnthropicMessageConnector.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Anthropic/Utils/AnthropicConstants.cs b/dotnet/src/AutoGen.Anthropic/Utils/AnthropicConstants.cs index 82a9a59be190..1c5f459bba5b 100644 --- a/dotnet/src/AutoGen.Anthropic/Utils/AnthropicConstants.cs +++ b/dotnet/src/AutoGen.Anthropic/Utils/AnthropicConstants.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.AzureAIInference/Agent/ChatCompletionsClientAgent.cs b/dotnet/src/AutoGen.AzureAIInference/Agent/ChatCompletionsClientAgent.cs index a6f020ca936b..69b75d443dc7 100644 --- a/dotnet/src/AutoGen.AzureAIInference/Agent/ChatCompletionsClientAgent.cs +++ b/dotnet/src/AutoGen.AzureAIInference/Agent/ChatCompletionsClientAgent.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.AzureAIInference/Extension/ChatComptionClientAgentExtension.cs b/dotnet/src/AutoGen.AzureAIInference/Extension/ChatComptionClientAgentExtension.cs index ef342c05835a..ddb885ef6ee1 100644 --- a/dotnet/src/AutoGen.AzureAIInference/Extension/ChatComptionClientAgentExtension.cs +++ b/dotnet/src/AutoGen.AzureAIInference/Extension/ChatComptionClientAgentExtension.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.AzureAIInference/Extension/FunctionContractExtension.cs b/dotnet/src/AutoGen.AzureAIInference/Extension/FunctionContractExtension.cs index 001b89c8099e..c7d47e8e528b 100644 --- a/dotnet/src/AutoGen.AzureAIInference/Extension/FunctionContractExtension.cs +++ b/dotnet/src/AutoGen.AzureAIInference/Extension/FunctionContractExtension.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.AzureAIInference/Middleware/AzureAIInferenceChatRequestMessageConnector.cs b/dotnet/src/AutoGen.AzureAIInference/Middleware/AzureAIInferenceChatRequestMessageConnector.cs index 77545a7137d8..8c821068f5c8 100644 --- a/dotnet/src/AutoGen.AzureAIInference/Middleware/AzureAIInferenceChatRequestMessageConnector.cs +++ b/dotnet/src/AutoGen.AzureAIInference/Middleware/AzureAIInferenceChatRequestMessageConnector.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Core/Agent/DefaultReplyAgent.cs b/dotnet/src/AutoGen.Core/Agent/DefaultReplyAgent.cs index 8ad29a7123e1..e9b99ce585af 100644 --- a/dotnet/src/AutoGen.Core/Agent/DefaultReplyAgent.cs +++ b/dotnet/src/AutoGen.Core/Agent/DefaultReplyAgent.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Core/Agent/GroupChatManager.cs b/dotnet/src/AutoGen.Core/Agent/GroupChatManager.cs index 9c27b4994795..3d7999f0ca87 100644 --- a/dotnet/src/AutoGen.Core/Agent/GroupChatManager.cs +++ b/dotnet/src/AutoGen.Core/Agent/GroupChatManager.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Core/Agent/IAgent.cs b/dotnet/src/AutoGen.Core/Agent/IAgent.cs index 65256760a974..2a96c63c385d 100644 --- a/dotnet/src/AutoGen.Core/Agent/IAgent.cs +++ b/dotnet/src/AutoGen.Core/Agent/IAgent.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Core/Agent/IMiddlewareAgent.cs b/dotnet/src/AutoGen.Core/Agent/IMiddlewareAgent.cs index 593ca427e893..1c29246f7c87 100644 --- a/dotnet/src/AutoGen.Core/Agent/IMiddlewareAgent.cs +++ b/dotnet/src/AutoGen.Core/Agent/IMiddlewareAgent.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Core/Agent/IStreamingAgent.cs b/dotnet/src/AutoGen.Core/Agent/IStreamingAgent.cs index 1430bcaa1ef5..c9c45e647642 100644 --- a/dotnet/src/AutoGen.Core/Agent/IStreamingAgent.cs +++ b/dotnet/src/AutoGen.Core/Agent/IStreamingAgent.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Core/Agent/MiddlewareAgent.cs b/dotnet/src/AutoGen.Core/Agent/MiddlewareAgent.cs index 6cd67ae55d4c..3259c74cb960 100644 --- a/dotnet/src/AutoGen.Core/Agent/MiddlewareAgent.cs +++ b/dotnet/src/AutoGen.Core/Agent/MiddlewareAgent.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Core/Agent/MiddlewareStreamingAgent.cs b/dotnet/src/AutoGen.Core/Agent/MiddlewareStreamingAgent.cs index 2b8d997c4959..5838aaba3954 100644 --- a/dotnet/src/AutoGen.Core/Agent/MiddlewareStreamingAgent.cs +++ b/dotnet/src/AutoGen.Core/Agent/MiddlewareStreamingAgent.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Core/Extension/AgentExtension.cs b/dotnet/src/AutoGen.Core/Extension/AgentExtension.cs index 63cd69015269..9f02aa41786a 100644 --- a/dotnet/src/AutoGen.Core/Extension/AgentExtension.cs +++ b/dotnet/src/AutoGen.Core/Extension/AgentExtension.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Core/Extension/GroupChatExtension.cs b/dotnet/src/AutoGen.Core/Extension/GroupChatExtension.cs index 9233fdf3ce2d..5987ac3bd8cf 100644 --- a/dotnet/src/AutoGen.Core/Extension/GroupChatExtension.cs +++ b/dotnet/src/AutoGen.Core/Extension/GroupChatExtension.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Core/Extension/MessageExtension.cs b/dotnet/src/AutoGen.Core/Extension/MessageExtension.cs index 546231a96b4f..f9c39925a99d 100644 --- a/dotnet/src/AutoGen.Core/Extension/MessageExtension.cs +++ b/dotnet/src/AutoGen.Core/Extension/MessageExtension.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Core/Extension/MiddlewareExtension.cs b/dotnet/src/AutoGen.Core/Extension/MiddlewareExtension.cs index 3f69dc10a42a..93143faa529c 100644 --- a/dotnet/src/AutoGen.Core/Extension/MiddlewareExtension.cs +++ b/dotnet/src/AutoGen.Core/Extension/MiddlewareExtension.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Core/Extension/PrintMessageMiddlewareExtension.cs b/dotnet/src/AutoGen.Core/Extension/PrintMessageMiddlewareExtension.cs index 182ff95e3783..d813bed0d152 100644 --- a/dotnet/src/AutoGen.Core/Extension/PrintMessageMiddlewareExtension.cs +++ b/dotnet/src/AutoGen.Core/Extension/PrintMessageMiddlewareExtension.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Core/Extension/StreamingMiddlewareExtension.cs b/dotnet/src/AutoGen.Core/Extension/StreamingMiddlewareExtension.cs index f6204c143ebf..11a915cac5c2 100644 --- a/dotnet/src/AutoGen.Core/Extension/StreamingMiddlewareExtension.cs +++ b/dotnet/src/AutoGen.Core/Extension/StreamingMiddlewareExtension.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Core/Function/FunctionAttribute.cs b/dotnet/src/AutoGen.Core/Function/FunctionAttribute.cs index 17de20de8551..cc344d83f41a 100644 --- a/dotnet/src/AutoGen.Core/Function/FunctionAttribute.cs +++ b/dotnet/src/AutoGen.Core/Function/FunctionAttribute.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Core/GroupChat/Graph.cs b/dotnet/src/AutoGen.Core/GroupChat/Graph.cs index df24d5aab8ec..0cc807b29bc8 100644 --- a/dotnet/src/AutoGen.Core/GroupChat/Graph.cs +++ b/dotnet/src/AutoGen.Core/GroupChat/Graph.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Core/GroupChat/GroupChat.cs b/dotnet/src/AutoGen.Core/GroupChat/GroupChat.cs index 920f6c96714c..84f55fad2b6e 100644 --- a/dotnet/src/AutoGen.Core/GroupChat/GroupChat.cs +++ b/dotnet/src/AutoGen.Core/GroupChat/GroupChat.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Core/GroupChat/IGroupChat.cs b/dotnet/src/AutoGen.Core/GroupChat/IGroupChat.cs index a959742ef85a..7c1ae9f95c42 100644 --- a/dotnet/src/AutoGen.Core/GroupChat/IGroupChat.cs +++ b/dotnet/src/AutoGen.Core/GroupChat/IGroupChat.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Core/GroupChat/RoundRobinGroupChat.cs b/dotnet/src/AutoGen.Core/GroupChat/RoundRobinGroupChat.cs index 79557bb999dd..62347cc13e7d 100644 --- a/dotnet/src/AutoGen.Core/GroupChat/RoundRobinGroupChat.cs +++ b/dotnet/src/AutoGen.Core/GroupChat/RoundRobinGroupChat.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Core/ILLMConfig.cs b/dotnet/src/AutoGen.Core/ILLMConfig.cs index 2195a72fd911..c865bdfaa9d8 100644 --- a/dotnet/src/AutoGen.Core/ILLMConfig.cs +++ b/dotnet/src/AutoGen.Core/ILLMConfig.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Core/Message/AggregateMessage.cs b/dotnet/src/AutoGen.Core/Message/AggregateMessage.cs index c0f73c77ce4b..9e50c96e4e1f 100644 --- a/dotnet/src/AutoGen.Core/Message/AggregateMessage.cs +++ b/dotnet/src/AutoGen.Core/Message/AggregateMessage.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Core/Message/IMessage.cs b/dotnet/src/AutoGen.Core/Message/IMessage.cs index a6a3adc57d20..809d83db511d 100644 --- a/dotnet/src/AutoGen.Core/Message/IMessage.cs +++ b/dotnet/src/AutoGen.Core/Message/IMessage.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Core/Message/ImageMessage.cs b/dotnet/src/AutoGen.Core/Message/ImageMessage.cs index 6ce51b15df23..4f55fdbb3e11 100644 --- a/dotnet/src/AutoGen.Core/Message/ImageMessage.cs +++ b/dotnet/src/AutoGen.Core/Message/ImageMessage.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Core/Message/Message.cs b/dotnet/src/AutoGen.Core/Message/Message.cs index a55d25fe145b..ea091b0b7b3b 100644 --- a/dotnet/src/AutoGen.Core/Message/Message.cs +++ b/dotnet/src/AutoGen.Core/Message/Message.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT @@ -12,7 +12,7 @@ namespace AutoGen.Core; -[Obsolete("This message class is deprecated, please use a specific AutoGen built-in message type instead. For more information, please visit https://autogen-ai.github.io/autogen-for-net/articles/Built-in-messages.html")] +[Obsolete("This message class is deprecated, please use a specific AutoGen built-in message type instead. For more information, please visit https://autogenhub.github.io/autogen-for-net/articles/Built-in-messages.html")] public class Message : IMessage { public Message( diff --git a/dotnet/src/AutoGen.Core/Message/MessageEnvelope.cs b/dotnet/src/AutoGen.Core/Message/MessageEnvelope.cs index d8d88ff597e5..f5e16899bbe8 100644 --- a/dotnet/src/AutoGen.Core/Message/MessageEnvelope.cs +++ b/dotnet/src/AutoGen.Core/Message/MessageEnvelope.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Core/Message/MultiModalMessage.cs b/dotnet/src/AutoGen.Core/Message/MultiModalMessage.cs index a53c9ccf77e1..a2269ac56a67 100644 --- a/dotnet/src/AutoGen.Core/Message/MultiModalMessage.cs +++ b/dotnet/src/AutoGen.Core/Message/MultiModalMessage.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Core/Message/Role.cs b/dotnet/src/AutoGen.Core/Message/Role.cs index 31734e8a5dae..107b543f4471 100644 --- a/dotnet/src/AutoGen.Core/Message/Role.cs +++ b/dotnet/src/AutoGen.Core/Message/Role.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Core/Message/TextMessage.cs b/dotnet/src/AutoGen.Core/Message/TextMessage.cs index b6e5530c40d8..2a6759ede40f 100644 --- a/dotnet/src/AutoGen.Core/Message/TextMessage.cs +++ b/dotnet/src/AutoGen.Core/Message/TextMessage.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Core/Message/ToolCallAggregateMessage.cs b/dotnet/src/AutoGen.Core/Message/ToolCallAggregateMessage.cs index 1ef13c62783b..3f91773dbf7d 100644 --- a/dotnet/src/AutoGen.Core/Message/ToolCallAggregateMessage.cs +++ b/dotnet/src/AutoGen.Core/Message/ToolCallAggregateMessage.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Core/Message/ToolCallMessage.cs b/dotnet/src/AutoGen.Core/Message/ToolCallMessage.cs index ab2f4a2ef767..846c0ea08d6e 100644 --- a/dotnet/src/AutoGen.Core/Message/ToolCallMessage.cs +++ b/dotnet/src/AutoGen.Core/Message/ToolCallMessage.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Core/Message/ToolCallResultMessage.cs b/dotnet/src/AutoGen.Core/Message/ToolCallResultMessage.cs index 11ac2985a3d7..f5882e64f5d9 100644 --- a/dotnet/src/AutoGen.Core/Message/ToolCallResultMessage.cs +++ b/dotnet/src/AutoGen.Core/Message/ToolCallResultMessage.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Core/Middleware/DelegateMiddleware.cs b/dotnet/src/AutoGen.Core/Middleware/DelegateMiddleware.cs index 067cf3abfbb5..bac1cdccffbf 100644 --- a/dotnet/src/AutoGen.Core/Middleware/DelegateMiddleware.cs +++ b/dotnet/src/AutoGen.Core/Middleware/DelegateMiddleware.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Core/Middleware/FunctionCallMiddleware.cs b/dotnet/src/AutoGen.Core/Middleware/FunctionCallMiddleware.cs index a2b29786bdd4..720327153e71 100644 --- a/dotnet/src/AutoGen.Core/Middleware/FunctionCallMiddleware.cs +++ b/dotnet/src/AutoGen.Core/Middleware/FunctionCallMiddleware.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Core/Middleware/IMiddleware.cs b/dotnet/src/AutoGen.Core/Middleware/IMiddleware.cs index 0e563ff50f35..b40c87f57ead 100644 --- a/dotnet/src/AutoGen.Core/Middleware/IMiddleware.cs +++ b/dotnet/src/AutoGen.Core/Middleware/IMiddleware.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Core/Middleware/IStreamingMiddleware.cs b/dotnet/src/AutoGen.Core/Middleware/IStreamingMiddleware.cs index bf672a28a1b8..5f67f2b0c065 100644 --- a/dotnet/src/AutoGen.Core/Middleware/IStreamingMiddleware.cs +++ b/dotnet/src/AutoGen.Core/Middleware/IStreamingMiddleware.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Core/Middleware/MiddlewareContext.cs b/dotnet/src/AutoGen.Core/Middleware/MiddlewareContext.cs index 8a72bf749dad..3d18d0defec1 100644 --- a/dotnet/src/AutoGen.Core/Middleware/MiddlewareContext.cs +++ b/dotnet/src/AutoGen.Core/Middleware/MiddlewareContext.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Core/Middleware/PrintMessageMiddleware.cs b/dotnet/src/AutoGen.Core/Middleware/PrintMessageMiddleware.cs index 7a6a89b31c88..a3a13b1edf85 100644 --- a/dotnet/src/AutoGen.Core/Middleware/PrintMessageMiddleware.cs +++ b/dotnet/src/AutoGen.Core/Middleware/PrintMessageMiddleware.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Core/Orchestrator/IOrchestrator.cs b/dotnet/src/AutoGen.Core/Orchestrator/IOrchestrator.cs index 4818ba6d8b2e..fb43ea6c11c3 100644 --- a/dotnet/src/AutoGen.Core/Orchestrator/IOrchestrator.cs +++ b/dotnet/src/AutoGen.Core/Orchestrator/IOrchestrator.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Core/Orchestrator/RolePlayOrchestrator.cs b/dotnet/src/AutoGen.Core/Orchestrator/RolePlayOrchestrator.cs index 4af84d5f1982..717da1b00ea6 100644 --- a/dotnet/src/AutoGen.Core/Orchestrator/RolePlayOrchestrator.cs +++ b/dotnet/src/AutoGen.Core/Orchestrator/RolePlayOrchestrator.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Core/Orchestrator/RoundRobinOrchestrator.cs b/dotnet/src/AutoGen.Core/Orchestrator/RoundRobinOrchestrator.cs index 888fc35f6752..8afcbeb00e58 100644 --- a/dotnet/src/AutoGen.Core/Orchestrator/RoundRobinOrchestrator.cs +++ b/dotnet/src/AutoGen.Core/Orchestrator/RoundRobinOrchestrator.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Core/Orchestrator/WorkflowOrchestrator.cs b/dotnet/src/AutoGen.Core/Orchestrator/WorkflowOrchestrator.cs index 48b4bdce2473..ba75a77729c4 100644 --- a/dotnet/src/AutoGen.Core/Orchestrator/WorkflowOrchestrator.cs +++ b/dotnet/src/AutoGen.Core/Orchestrator/WorkflowOrchestrator.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.DotnetInteractive/DotnetInteractiveFunction.cs b/dotnet/src/AutoGen.DotnetInteractive/DotnetInteractiveFunction.cs index c00306c1a243..a735b567d041 100644 --- a/dotnet/src/AutoGen.DotnetInteractive/DotnetInteractiveFunction.cs +++ b/dotnet/src/AutoGen.DotnetInteractive/DotnetInteractiveFunction.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.DotnetInteractive/DotnetInteractiveKernelBuilder.cs b/dotnet/src/AutoGen.DotnetInteractive/DotnetInteractiveKernelBuilder.cs index 012978a82de4..ba3e98c657bb 100644 --- a/dotnet/src/AutoGen.DotnetInteractive/DotnetInteractiveKernelBuilder.cs +++ b/dotnet/src/AutoGen.DotnetInteractive/DotnetInteractiveKernelBuilder.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.DotnetInteractive/DotnetInteractiveStdioKernelConnector.cs b/dotnet/src/AutoGen.DotnetInteractive/DotnetInteractiveStdioKernelConnector.cs index 4ec81fd3535e..f10102b81cc8 100644 --- a/dotnet/src/AutoGen.DotnetInteractive/DotnetInteractiveStdioKernelConnector.cs +++ b/dotnet/src/AutoGen.DotnetInteractive/DotnetInteractiveStdioKernelConnector.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.DotnetInteractive/Extension/AgentExtension.cs b/dotnet/src/AutoGen.DotnetInteractive/Extension/AgentExtension.cs index d028ae92d0c6..7bfd07e668e5 100644 --- a/dotnet/src/AutoGen.DotnetInteractive/Extension/AgentExtension.cs +++ b/dotnet/src/AutoGen.DotnetInteractive/Extension/AgentExtension.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.DotnetInteractive/Extension/KernelExtension.cs b/dotnet/src/AutoGen.DotnetInteractive/Extension/KernelExtension.cs index 0a7d8d28411c..f1a7b8cbfbfd 100644 --- a/dotnet/src/AutoGen.DotnetInteractive/Extension/KernelExtension.cs +++ b/dotnet/src/AutoGen.DotnetInteractive/Extension/KernelExtension.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.DotnetInteractive/Extension/MessageExtension.cs b/dotnet/src/AutoGen.DotnetInteractive/Extension/MessageExtension.cs index d4deee93ab96..ab825dadeb97 100644 --- a/dotnet/src/AutoGen.DotnetInteractive/Extension/MessageExtension.cs +++ b/dotnet/src/AutoGen.DotnetInteractive/Extension/MessageExtension.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.DotnetInteractive/GlobalUsing.cs b/dotnet/src/AutoGen.DotnetInteractive/GlobalUsing.cs index 9ca6b9d8dc23..78d95cf0fecf 100644 --- a/dotnet/src/AutoGen.DotnetInteractive/GlobalUsing.cs +++ b/dotnet/src/AutoGen.DotnetInteractive/GlobalUsing.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.DotnetInteractive/InProccessDotnetInteractiveKernelBuilder.cs b/dotnet/src/AutoGen.DotnetInteractive/InProccessDotnetInteractiveKernelBuilder.cs index 7544bb0dd763..7b4f17e9d705 100644 --- a/dotnet/src/AutoGen.DotnetInteractive/InProccessDotnetInteractiveKernelBuilder.cs +++ b/dotnet/src/AutoGen.DotnetInteractive/InProccessDotnetInteractiveKernelBuilder.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.DotnetInteractive/InteractiveService.cs b/dotnet/src/AutoGen.DotnetInteractive/InteractiveService.cs index b9ce83342304..0c6fb947b326 100644 --- a/dotnet/src/AutoGen.DotnetInteractive/InteractiveService.cs +++ b/dotnet/src/AutoGen.DotnetInteractive/InteractiveService.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Gemini/Extension/FunctionContractExtension.cs b/dotnet/src/AutoGen.Gemini/Extension/FunctionContractExtension.cs index 5342fb9ca068..9e3c67a2da68 100644 --- a/dotnet/src/AutoGen.Gemini/Extension/FunctionContractExtension.cs +++ b/dotnet/src/AutoGen.Gemini/Extension/FunctionContractExtension.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Gemini/GeminiChatAgent.cs b/dotnet/src/AutoGen.Gemini/GeminiChatAgent.cs index d078faf557c3..ccaa4313bb4d 100644 --- a/dotnet/src/AutoGen.Gemini/GeminiChatAgent.cs +++ b/dotnet/src/AutoGen.Gemini/GeminiChatAgent.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Gemini/GoogleGeminiClient.cs b/dotnet/src/AutoGen.Gemini/GoogleGeminiClient.cs index c50d22968b2e..6792866722ff 100644 --- a/dotnet/src/AutoGen.Gemini/GoogleGeminiClient.cs +++ b/dotnet/src/AutoGen.Gemini/GoogleGeminiClient.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Gemini/IGeminiClient.cs b/dotnet/src/AutoGen.Gemini/IGeminiClient.cs index aaa0da3be92f..0bc8e805e038 100644 --- a/dotnet/src/AutoGen.Gemini/IGeminiClient.cs +++ b/dotnet/src/AutoGen.Gemini/IGeminiClient.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Gemini/Middleware/GeminiAgentExtension.cs b/dotnet/src/AutoGen.Gemini/Middleware/GeminiAgentExtension.cs index d313e5a87b5f..157c21484bdf 100644 --- a/dotnet/src/AutoGen.Gemini/Middleware/GeminiAgentExtension.cs +++ b/dotnet/src/AutoGen.Gemini/Middleware/GeminiAgentExtension.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Gemini/Middleware/GeminiMessageConnector.cs b/dotnet/src/AutoGen.Gemini/Middleware/GeminiMessageConnector.cs index 32365718ea6e..9e138319e47a 100644 --- a/dotnet/src/AutoGen.Gemini/Middleware/GeminiMessageConnector.cs +++ b/dotnet/src/AutoGen.Gemini/Middleware/GeminiMessageConnector.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Gemini/VertexGeminiClient.cs b/dotnet/src/AutoGen.Gemini/VertexGeminiClient.cs index cd448e90b0f2..1ca669afbeb9 100644 --- a/dotnet/src/AutoGen.Gemini/VertexGeminiClient.cs +++ b/dotnet/src/AutoGen.Gemini/VertexGeminiClient.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.LMStudio/GlobalUsing.cs b/dotnet/src/AutoGen.LMStudio/GlobalUsing.cs index 9ca6b9d8dc23..78d95cf0fecf 100644 --- a/dotnet/src/AutoGen.LMStudio/GlobalUsing.cs +++ b/dotnet/src/AutoGen.LMStudio/GlobalUsing.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.LMStudio/LMStudioAgent.cs b/dotnet/src/AutoGen.LMStudio/LMStudioAgent.cs index 1dd4f563e2f8..fe1651deb2bc 100644 --- a/dotnet/src/AutoGen.LMStudio/LMStudioAgent.cs +++ b/dotnet/src/AutoGen.LMStudio/LMStudioAgent.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.LMStudio/LMStudioConfig.cs b/dotnet/src/AutoGen.LMStudio/LMStudioConfig.cs index 4c1995fcbb5e..5b5606f0bf4b 100644 --- a/dotnet/src/AutoGen.LMStudio/LMStudioConfig.cs +++ b/dotnet/src/AutoGen.LMStudio/LMStudioConfig.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Mistral/Agent/MistralClientAgent.cs b/dotnet/src/AutoGen.Mistral/Agent/MistralClientAgent.cs index 8a89933caa69..2c81218032cd 100644 --- a/dotnet/src/AutoGen.Mistral/Agent/MistralClientAgent.cs +++ b/dotnet/src/AutoGen.Mistral/Agent/MistralClientAgent.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Mistral/Converters/JsonPropertyNameEnumConverter.cs b/dotnet/src/AutoGen.Mistral/Converters/JsonPropertyNameEnumConverter.cs index e2e3d4d873b7..230030575ba8 100644 --- a/dotnet/src/AutoGen.Mistral/Converters/JsonPropertyNameEnumConverter.cs +++ b/dotnet/src/AutoGen.Mistral/Converters/JsonPropertyNameEnumConverter.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Mistral/DTOs/ChatCompletionRequest.cs b/dotnet/src/AutoGen.Mistral/DTOs/ChatCompletionRequest.cs index 0eecdc928b63..8910438817d7 100644 --- a/dotnet/src/AutoGen.Mistral/DTOs/ChatCompletionRequest.cs +++ b/dotnet/src/AutoGen.Mistral/DTOs/ChatCompletionRequest.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Mistral/DTOs/ChatCompletionResponse.cs b/dotnet/src/AutoGen.Mistral/DTOs/ChatCompletionResponse.cs index b3c4bbed13f4..5747af23bb2a 100644 --- a/dotnet/src/AutoGen.Mistral/DTOs/ChatCompletionResponse.cs +++ b/dotnet/src/AutoGen.Mistral/DTOs/ChatCompletionResponse.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Mistral/DTOs/ChatMessage.cs b/dotnet/src/AutoGen.Mistral/DTOs/ChatMessage.cs index 920f9c71f329..f231760f3303 100644 --- a/dotnet/src/AutoGen.Mistral/DTOs/ChatMessage.cs +++ b/dotnet/src/AutoGen.Mistral/DTOs/ChatMessage.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Mistral/DTOs/Choice.cs b/dotnet/src/AutoGen.Mistral/DTOs/Choice.cs index 25c700f5e983..aa6b9f629069 100644 --- a/dotnet/src/AutoGen.Mistral/DTOs/Choice.cs +++ b/dotnet/src/AutoGen.Mistral/DTOs/Choice.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Mistral/DTOs/Error.cs b/dotnet/src/AutoGen.Mistral/DTOs/Error.cs index b9bdd2bc69c1..c915ac24a510 100644 --- a/dotnet/src/AutoGen.Mistral/DTOs/Error.cs +++ b/dotnet/src/AutoGen.Mistral/DTOs/Error.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Mistral/DTOs/ErrorResponse.cs b/dotnet/src/AutoGen.Mistral/DTOs/ErrorResponse.cs index d1fcdeae75f3..c2ca4b80686a 100644 --- a/dotnet/src/AutoGen.Mistral/DTOs/ErrorResponse.cs +++ b/dotnet/src/AutoGen.Mistral/DTOs/ErrorResponse.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Mistral/DTOs/FunctionDefinition.cs b/dotnet/src/AutoGen.Mistral/DTOs/FunctionDefinition.cs index d32eabef8571..c0d439bcbbdf 100644 --- a/dotnet/src/AutoGen.Mistral/DTOs/FunctionDefinition.cs +++ b/dotnet/src/AutoGen.Mistral/DTOs/FunctionDefinition.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Mistral/DTOs/Model.cs b/dotnet/src/AutoGen.Mistral/DTOs/Model.cs index 725fc666f6ef..0a6ab09434be 100644 --- a/dotnet/src/AutoGen.Mistral/DTOs/Model.cs +++ b/dotnet/src/AutoGen.Mistral/DTOs/Model.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Mistral/DTOs/ResponseFormat.cs b/dotnet/src/AutoGen.Mistral/DTOs/ResponseFormat.cs index 86182ec4f909..5410bb76eb4c 100644 --- a/dotnet/src/AutoGen.Mistral/DTOs/ResponseFormat.cs +++ b/dotnet/src/AutoGen.Mistral/DTOs/ResponseFormat.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Mistral/DTOs/Tool.cs b/dotnet/src/AutoGen.Mistral/DTOs/Tool.cs index 728ff61b80a7..7881f43dc5b8 100644 --- a/dotnet/src/AutoGen.Mistral/DTOs/Tool.cs +++ b/dotnet/src/AutoGen.Mistral/DTOs/Tool.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Mistral/DTOs/Usage.cs b/dotnet/src/AutoGen.Mistral/DTOs/Usage.cs index 345a4ec7a1e3..95c61ec9c585 100644 --- a/dotnet/src/AutoGen.Mistral/DTOs/Usage.cs +++ b/dotnet/src/AutoGen.Mistral/DTOs/Usage.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Mistral/Extension/FunctionContractExtension.cs b/dotnet/src/AutoGen.Mistral/Extension/FunctionContractExtension.cs index e7ba8f06b8de..089503796219 100644 --- a/dotnet/src/AutoGen.Mistral/Extension/FunctionContractExtension.cs +++ b/dotnet/src/AutoGen.Mistral/Extension/FunctionContractExtension.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Mistral/Extension/MistralAgentExtension.cs b/dotnet/src/AutoGen.Mistral/Extension/MistralAgentExtension.cs index d6952be63e2c..62d83ff4e653 100644 --- a/dotnet/src/AutoGen.Mistral/Extension/MistralAgentExtension.cs +++ b/dotnet/src/AutoGen.Mistral/Extension/MistralAgentExtension.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Mistral/Middleware/MistralChatMessageConnector.cs b/dotnet/src/AutoGen.Mistral/Middleware/MistralChatMessageConnector.cs index cf924a948662..16672d764c12 100644 --- a/dotnet/src/AutoGen.Mistral/Middleware/MistralChatMessageConnector.cs +++ b/dotnet/src/AutoGen.Mistral/Middleware/MistralChatMessageConnector.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Mistral/MistralAIModelID.cs b/dotnet/src/AutoGen.Mistral/MistralAIModelID.cs index cef058d59f64..38ae5b1f8592 100644 --- a/dotnet/src/AutoGen.Mistral/MistralAIModelID.cs +++ b/dotnet/src/AutoGen.Mistral/MistralAIModelID.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Mistral/MistralClient.cs b/dotnet/src/AutoGen.Mistral/MistralClient.cs index f5e395915825..d4c333184500 100644 --- a/dotnet/src/AutoGen.Mistral/MistralClient.cs +++ b/dotnet/src/AutoGen.Mistral/MistralClient.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Ollama/Agent/OllamaAgent.cs b/dotnet/src/AutoGen.Ollama/Agent/OllamaAgent.cs index 96a38a726b47..f4b487322a55 100644 --- a/dotnet/src/AutoGen.Ollama/Agent/OllamaAgent.cs +++ b/dotnet/src/AutoGen.Ollama/Agent/OllamaAgent.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Ollama/DTOs/ChatRequest.cs b/dotnet/src/AutoGen.Ollama/DTOs/ChatRequest.cs index 8efd6808d32c..3d2d2a62f432 100644 --- a/dotnet/src/AutoGen.Ollama/DTOs/ChatRequest.cs +++ b/dotnet/src/AutoGen.Ollama/DTOs/ChatRequest.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Ollama/DTOs/ChatResponse.cs b/dotnet/src/AutoGen.Ollama/DTOs/ChatResponse.cs index f44d3059ef5e..b4d5e40c9c03 100644 --- a/dotnet/src/AutoGen.Ollama/DTOs/ChatResponse.cs +++ b/dotnet/src/AutoGen.Ollama/DTOs/ChatResponse.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Ollama/DTOs/ChatResponseUpdate.cs b/dotnet/src/AutoGen.Ollama/DTOs/ChatResponseUpdate.cs index 077cc6accf2d..c3904c686cde 100644 --- a/dotnet/src/AutoGen.Ollama/DTOs/ChatResponseUpdate.cs +++ b/dotnet/src/AutoGen.Ollama/DTOs/ChatResponseUpdate.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Ollama/DTOs/Message.cs b/dotnet/src/AutoGen.Ollama/DTOs/Message.cs index 502a46ad82f2..9f0159b26a80 100644 --- a/dotnet/src/AutoGen.Ollama/DTOs/Message.cs +++ b/dotnet/src/AutoGen.Ollama/DTOs/Message.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Ollama/DTOs/ModelReplyOptions.cs b/dotnet/src/AutoGen.Ollama/DTOs/ModelReplyOptions.cs index 8b042f07cfa9..9c9a85e84699 100644 --- a/dotnet/src/AutoGen.Ollama/DTOs/ModelReplyOptions.cs +++ b/dotnet/src/AutoGen.Ollama/DTOs/ModelReplyOptions.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Ollama/DTOs/OllamaReplyOptions.cs b/dotnet/src/AutoGen.Ollama/DTOs/OllamaReplyOptions.cs index c01d150f7300..70b73d92165e 100644 --- a/dotnet/src/AutoGen.Ollama/DTOs/OllamaReplyOptions.cs +++ b/dotnet/src/AutoGen.Ollama/DTOs/OllamaReplyOptions.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Ollama/Embeddings/ITextEmbeddingService.cs b/dotnet/src/AutoGen.Ollama/Embeddings/ITextEmbeddingService.cs index 79989eaf2227..c676ff19646c 100644 --- a/dotnet/src/AutoGen.Ollama/Embeddings/ITextEmbeddingService.cs +++ b/dotnet/src/AutoGen.Ollama/Embeddings/ITextEmbeddingService.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Ollama/Embeddings/OllamaTextEmbeddingService.cs b/dotnet/src/AutoGen.Ollama/Embeddings/OllamaTextEmbeddingService.cs index f215adf2aefa..00542c84c9f0 100644 --- a/dotnet/src/AutoGen.Ollama/Embeddings/OllamaTextEmbeddingService.cs +++ b/dotnet/src/AutoGen.Ollama/Embeddings/OllamaTextEmbeddingService.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Ollama/Embeddings/TextEmbeddingsRequest.cs b/dotnet/src/AutoGen.Ollama/Embeddings/TextEmbeddingsRequest.cs index 3fcc6cb7a23c..a2df3186d828 100644 --- a/dotnet/src/AutoGen.Ollama/Embeddings/TextEmbeddingsRequest.cs +++ b/dotnet/src/AutoGen.Ollama/Embeddings/TextEmbeddingsRequest.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Ollama/Embeddings/TextEmbeddingsResponse.cs b/dotnet/src/AutoGen.Ollama/Embeddings/TextEmbeddingsResponse.cs index ff7d72537ead..8085a89dcdf0 100644 --- a/dotnet/src/AutoGen.Ollama/Embeddings/TextEmbeddingsResponse.cs +++ b/dotnet/src/AutoGen.Ollama/Embeddings/TextEmbeddingsResponse.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Ollama/Extension/OllamaAgentExtension.cs b/dotnet/src/AutoGen.Ollama/Extension/OllamaAgentExtension.cs index ab94c4a56007..c64bbe6f82b8 100644 --- a/dotnet/src/AutoGen.Ollama/Extension/OllamaAgentExtension.cs +++ b/dotnet/src/AutoGen.Ollama/Extension/OllamaAgentExtension.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Ollama/Middlewares/OllamaMessageConnector.cs b/dotnet/src/AutoGen.Ollama/Middlewares/OllamaMessageConnector.cs index 6adbd2ee5526..98e27d2fe248 100644 --- a/dotnet/src/AutoGen.Ollama/Middlewares/OllamaMessageConnector.cs +++ b/dotnet/src/AutoGen.Ollama/Middlewares/OllamaMessageConnector.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.Ollama/OllamaConsts.cs b/dotnet/src/AutoGen.Ollama/OllamaConsts.cs index 122181c7a633..07f8fde7dfd7 100644 --- a/dotnet/src/AutoGen.Ollama/OllamaConsts.cs +++ b/dotnet/src/AutoGen.Ollama/OllamaConsts.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.OpenAI.V1/Agent/GPTAgent.cs b/dotnet/src/AutoGen.OpenAI.V1/Agent/GPTAgent.cs index d375564297a9..479d1a5d68e9 100644 --- a/dotnet/src/AutoGen.OpenAI.V1/Agent/GPTAgent.cs +++ b/dotnet/src/AutoGen.OpenAI.V1/Agent/GPTAgent.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.OpenAI.V1/Agent/OpenAIChatAgent.cs b/dotnet/src/AutoGen.OpenAI.V1/Agent/OpenAIChatAgent.cs index 00013eebfff7..c2d5a93ddb44 100644 --- a/dotnet/src/AutoGen.OpenAI.V1/Agent/OpenAIChatAgent.cs +++ b/dotnet/src/AutoGen.OpenAI.V1/Agent/OpenAIChatAgent.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.OpenAI.V1/AzureOpenAIConfig.cs b/dotnet/src/AutoGen.OpenAI.V1/AzureOpenAIConfig.cs index c0debaad9617..8fd7c887944c 100644 --- a/dotnet/src/AutoGen.OpenAI.V1/AzureOpenAIConfig.cs +++ b/dotnet/src/AutoGen.OpenAI.V1/AzureOpenAIConfig.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.OpenAI.V1/Extension/FunctionContractExtension.cs b/dotnet/src/AutoGen.OpenAI.V1/Extension/FunctionContractExtension.cs index 1a0687194c96..17d3049c7163 100644 --- a/dotnet/src/AutoGen.OpenAI.V1/Extension/FunctionContractExtension.cs +++ b/dotnet/src/AutoGen.OpenAI.V1/Extension/FunctionContractExtension.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.OpenAI.V1/Extension/MessageExtension.cs b/dotnet/src/AutoGen.OpenAI.V1/Extension/MessageExtension.cs index 1655e2fbf14e..c269e49ede25 100644 --- a/dotnet/src/AutoGen.OpenAI.V1/Extension/MessageExtension.cs +++ b/dotnet/src/AutoGen.OpenAI.V1/Extension/MessageExtension.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.OpenAI.V1/Extension/OpenAIAgentExtension.cs b/dotnet/src/AutoGen.OpenAI.V1/Extension/OpenAIAgentExtension.cs index 931e75ac8493..bfda28835410 100644 --- a/dotnet/src/AutoGen.OpenAI.V1/Extension/OpenAIAgentExtension.cs +++ b/dotnet/src/AutoGen.OpenAI.V1/Extension/OpenAIAgentExtension.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.OpenAI.V1/GlobalUsing.cs b/dotnet/src/AutoGen.OpenAI.V1/GlobalUsing.cs index 9ca6b9d8dc23..78d95cf0fecf 100644 --- a/dotnet/src/AutoGen.OpenAI.V1/GlobalUsing.cs +++ b/dotnet/src/AutoGen.OpenAI.V1/GlobalUsing.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.OpenAI.V1/Middleware/OpenAIChatRequestMessageConnector.cs b/dotnet/src/AutoGen.OpenAI.V1/Middleware/OpenAIChatRequestMessageConnector.cs index 1653a8aa6bdf..3f169f697fc6 100644 --- a/dotnet/src/AutoGen.OpenAI.V1/Middleware/OpenAIChatRequestMessageConnector.cs +++ b/dotnet/src/AutoGen.OpenAI.V1/Middleware/OpenAIChatRequestMessageConnector.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.OpenAI.V1/OpenAIConfig.cs b/dotnet/src/AutoGen.OpenAI.V1/OpenAIConfig.cs index 491ef3471123..262eceaa987e 100644 --- a/dotnet/src/AutoGen.OpenAI.V1/OpenAIConfig.cs +++ b/dotnet/src/AutoGen.OpenAI.V1/OpenAIConfig.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.SemanticKernel/Extension/KernelExtension.cs b/dotnet/src/AutoGen.SemanticKernel/Extension/KernelExtension.cs index 3059c3cd5ced..4cc73fde63f9 100644 --- a/dotnet/src/AutoGen.SemanticKernel/Extension/KernelExtension.cs +++ b/dotnet/src/AutoGen.SemanticKernel/Extension/KernelExtension.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.SemanticKernel/Extension/SemanticKernelAgentExtension.cs b/dotnet/src/AutoGen.SemanticKernel/Extension/SemanticKernelAgentExtension.cs index c2a544e354cc..84b3af76b823 100644 --- a/dotnet/src/AutoGen.SemanticKernel/Extension/SemanticKernelAgentExtension.cs +++ b/dotnet/src/AutoGen.SemanticKernel/Extension/SemanticKernelAgentExtension.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.SemanticKernel/GlobalUsing.cs b/dotnet/src/AutoGen.SemanticKernel/GlobalUsing.cs index 9ca6b9d8dc23..78d95cf0fecf 100644 --- a/dotnet/src/AutoGen.SemanticKernel/GlobalUsing.cs +++ b/dotnet/src/AutoGen.SemanticKernel/GlobalUsing.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.SemanticKernel/Middleware/KernelPluginMiddleware.cs b/dotnet/src/AutoGen.SemanticKernel/Middleware/KernelPluginMiddleware.cs index a2d6928e0f38..e94f27e90dd3 100644 --- a/dotnet/src/AutoGen.SemanticKernel/Middleware/KernelPluginMiddleware.cs +++ b/dotnet/src/AutoGen.SemanticKernel/Middleware/KernelPluginMiddleware.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.SemanticKernel/Middleware/SemanticKernelChatMessageContentConnector.cs b/dotnet/src/AutoGen.SemanticKernel/Middleware/SemanticKernelChatMessageContentConnector.cs index b3ff93f2cd57..e3b08e26ce58 100644 --- a/dotnet/src/AutoGen.SemanticKernel/Middleware/SemanticKernelChatMessageContentConnector.cs +++ b/dotnet/src/AutoGen.SemanticKernel/Middleware/SemanticKernelChatMessageContentConnector.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.SemanticKernel/SemanticKernelAgent.cs b/dotnet/src/AutoGen.SemanticKernel/SemanticKernelAgent.cs index 2a59e7abb6fa..549edb77403a 100644 --- a/dotnet/src/AutoGen.SemanticKernel/SemanticKernelAgent.cs +++ b/dotnet/src/AutoGen.SemanticKernel/SemanticKernelAgent.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.SemanticKernel/SemanticKernelChatCompletionAgent.cs b/dotnet/src/AutoGen.SemanticKernel/SemanticKernelChatCompletionAgent.cs index 26d3dee8407a..69c477550fd9 100644 --- a/dotnet/src/AutoGen.SemanticKernel/SemanticKernelChatCompletionAgent.cs +++ b/dotnet/src/AutoGen.SemanticKernel/SemanticKernelChatCompletionAgent.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.SourceGenerator/DocumentCommentExtension.cs b/dotnet/src/AutoGen.SourceGenerator/DocumentCommentExtension.cs index 19322383fe08..671ce10f5da3 100644 --- a/dotnet/src/AutoGen.SourceGenerator/DocumentCommentExtension.cs +++ b/dotnet/src/AutoGen.SourceGenerator/DocumentCommentExtension.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.SourceGenerator/FunctionCallGenerator.cs b/dotnet/src/AutoGen.SourceGenerator/FunctionCallGenerator.cs index 1245aa637bb0..566f7b7a2b92 100644 --- a/dotnet/src/AutoGen.SourceGenerator/FunctionCallGenerator.cs +++ b/dotnet/src/AutoGen.SourceGenerator/FunctionCallGenerator.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.SourceGenerator/FunctionExtension.cs b/dotnet/src/AutoGen.SourceGenerator/FunctionExtension.cs index 7e73fa5fc4d5..0870a46fa896 100644 --- a/dotnet/src/AutoGen.SourceGenerator/FunctionExtension.cs +++ b/dotnet/src/AutoGen.SourceGenerator/FunctionExtension.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.SourceGenerator/SourceGeneratorFunctionContract.cs b/dotnet/src/AutoGen.SourceGenerator/SourceGeneratorFunctionContract.cs index e475314c409c..f668eb7785ae 100644 --- a/dotnet/src/AutoGen.SourceGenerator/SourceGeneratorFunctionContract.cs +++ b/dotnet/src/AutoGen.SourceGenerator/SourceGeneratorFunctionContract.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.WebAPI/Extension.cs b/dotnet/src/AutoGen.WebAPI/Extension.cs index 087d145fab3d..db3f37602ea1 100644 --- a/dotnet/src/AutoGen.WebAPI/Extension.cs +++ b/dotnet/src/AutoGen.WebAPI/Extension.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.WebAPI/OpenAI/Converter/OpenAIMessageConverter.cs b/dotnet/src/AutoGen.WebAPI/OpenAI/Converter/OpenAIMessageConverter.cs index 3db4371d93ad..c008501f9129 100644 --- a/dotnet/src/AutoGen.WebAPI/OpenAI/Converter/OpenAIMessageConverter.cs +++ b/dotnet/src/AutoGen.WebAPI/OpenAI/Converter/OpenAIMessageConverter.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIAssistantMessage.cs b/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIAssistantMessage.cs index 825f86364022..47b02b8aec26 100644 --- a/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIAssistantMessage.cs +++ b/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIAssistantMessage.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIChatCompletion.cs b/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIChatCompletion.cs index fb04a7f9e36b..2f84c19e5091 100644 --- a/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIChatCompletion.cs +++ b/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIChatCompletion.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIChatCompletionChoice.cs b/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIChatCompletionChoice.cs index 3a623e88ab95..1d15889d0b8a 100644 --- a/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIChatCompletionChoice.cs +++ b/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIChatCompletionChoice.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIChatCompletionMessage.cs b/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIChatCompletionMessage.cs index 41c956520015..b28cb5eadbc3 100644 --- a/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIChatCompletionMessage.cs +++ b/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIChatCompletionMessage.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIChatCompletionOption.cs b/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIChatCompletionOption.cs index 678b23d954c0..167a72eed2eb 100644 --- a/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIChatCompletionOption.cs +++ b/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIChatCompletionOption.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIChatCompletionUsage.cs b/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIChatCompletionUsage.cs index 3d29f11f8f77..4b0f406ca6ec 100644 --- a/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIChatCompletionUsage.cs +++ b/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIChatCompletionUsage.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIImageUrlObject.cs b/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIImageUrlObject.cs index f5df96393ff4..cab906e7f7e2 100644 --- a/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIImageUrlObject.cs +++ b/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIImageUrlObject.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIMessage.cs b/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIMessage.cs index 9752f76ae413..90b21f0de2a8 100644 --- a/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIMessage.cs +++ b/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIMessage.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIStreamOptions.cs b/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIStreamOptions.cs index ebd929996546..34d699e82389 100644 --- a/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIStreamOptions.cs +++ b/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIStreamOptions.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAISystemMessage.cs b/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAISystemMessage.cs index 3659d27a3129..3ace74774191 100644 --- a/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAISystemMessage.cs +++ b/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAISystemMessage.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIToolCallObject.cs b/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIToolCallObject.cs index 6127f70bd89f..ed761e74ea49 100644 --- a/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIToolCallObject.cs +++ b/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIToolCallObject.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIToolMessage.cs b/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIToolMessage.cs index 95ad88ef73cd..03bf6e9f37e7 100644 --- a/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIToolMessage.cs +++ b/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIToolMessage.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIUserImageContent.cs b/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIUserImageContent.cs index 144a92245280..895b252ab3a5 100644 --- a/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIUserImageContent.cs +++ b/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIUserImageContent.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIUserMessage.cs b/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIUserMessage.cs index 2a5be2308893..f594b557b023 100644 --- a/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIUserMessage.cs +++ b/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIUserMessage.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIUserMessageItem.cs b/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIUserMessageItem.cs index 07611402da29..3809b488eab5 100644 --- a/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIUserMessageItem.cs +++ b/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIUserMessageItem.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIUserMultiModalMessage.cs b/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIUserMultiModalMessage.cs index 64e020f0655a..033d5d82f0df 100644 --- a/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIUserMultiModalMessage.cs +++ b/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIUserMultiModalMessage.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIUserTextContent.cs b/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIUserTextContent.cs index 91a20b209b07..f8b030d3527a 100644 --- a/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIUserTextContent.cs +++ b/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIUserTextContent.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.WebAPI/OpenAI/Service/OpenAIChatCompletionService.cs b/dotnet/src/AutoGen.WebAPI/OpenAI/Service/OpenAIChatCompletionService.cs index 945696538df6..c2e9f22d240b 100644 --- a/dotnet/src/AutoGen.WebAPI/OpenAI/Service/OpenAIChatCompletionService.cs +++ b/dotnet/src/AutoGen.WebAPI/OpenAI/Service/OpenAIChatCompletionService.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen.WebAPI/OpenAIChatCompletionMiddleware.cs b/dotnet/src/AutoGen.WebAPI/OpenAIChatCompletionMiddleware.cs index 42ae2edd23a9..182183eeb183 100644 --- a/dotnet/src/AutoGen.WebAPI/OpenAIChatCompletionMiddleware.cs +++ b/dotnet/src/AutoGen.WebAPI/OpenAIChatCompletionMiddleware.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen/API/LLMConfigAPI.cs b/dotnet/src/AutoGen/API/LLMConfigAPI.cs index 85821989ce57..b59212ec44b8 100644 --- a/dotnet/src/AutoGen/API/LLMConfigAPI.cs +++ b/dotnet/src/AutoGen/API/LLMConfigAPI.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen/Agent/AssistantAgent.cs b/dotnet/src/AutoGen/Agent/AssistantAgent.cs index cf819c15b7ee..d152b87a42b6 100644 --- a/dotnet/src/AutoGen/Agent/AssistantAgent.cs +++ b/dotnet/src/AutoGen/Agent/AssistantAgent.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen/Agent/ConversableAgent.cs b/dotnet/src/AutoGen/Agent/ConversableAgent.cs index c8602eba79da..f142fa8b7825 100644 --- a/dotnet/src/AutoGen/Agent/ConversableAgent.cs +++ b/dotnet/src/AutoGen/Agent/ConversableAgent.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen/Agent/UserProxyAgent.cs b/dotnet/src/AutoGen/Agent/UserProxyAgent.cs index c10a16c37e2f..5cb1b487ee99 100644 --- a/dotnet/src/AutoGen/Agent/UserProxyAgent.cs +++ b/dotnet/src/AutoGen/Agent/UserProxyAgent.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen/ConversableAgentConfig.cs b/dotnet/src/AutoGen/ConversableAgentConfig.cs index 258e587e055a..d8476fcb0aed 100644 --- a/dotnet/src/AutoGen/ConversableAgentConfig.cs +++ b/dotnet/src/AutoGen/ConversableAgentConfig.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen/GlobalUsing.cs b/dotnet/src/AutoGen/GlobalUsing.cs index 9ca6b9d8dc23..78d95cf0fecf 100644 --- a/dotnet/src/AutoGen/GlobalUsing.cs +++ b/dotnet/src/AutoGen/GlobalUsing.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/src/AutoGen/Middleware/HumanInputMiddleware.cs b/dotnet/src/AutoGen/Middleware/HumanInputMiddleware.cs index 84c5ca5cf3b6..2cc1d42daf31 100644 --- a/dotnet/src/AutoGen/Middleware/HumanInputMiddleware.cs +++ b/dotnet/src/AutoGen/Middleware/HumanInputMiddleware.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/test/AutoGen.Anthropic.Tests/AnthropicClientAgentTest.cs b/dotnet/test/AutoGen.Anthropic.Tests/AnthropicClientAgentTest.cs index 2a35d5583f0a..a94d69ebdaac 100644 --- a/dotnet/test/AutoGen.Anthropic.Tests/AnthropicClientAgentTest.cs +++ b/dotnet/test/AutoGen.Anthropic.Tests/AnthropicClientAgentTest.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/test/AutoGen.Anthropic.Tests/AnthropicClientTest.cs b/dotnet/test/AutoGen.Anthropic.Tests/AnthropicClientTest.cs index c57ab8b681fc..502fc7493873 100644 --- a/dotnet/test/AutoGen.Anthropic.Tests/AnthropicClientTest.cs +++ b/dotnet/test/AutoGen.Anthropic.Tests/AnthropicClientTest.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/test/AutoGen.Anthropic.Tests/AnthropicTestFunctionCalls.cs b/dotnet/test/AutoGen.Anthropic.Tests/AnthropicTestFunctionCalls.cs index 8b9b6631f1a4..c3ed6e3b9305 100644 --- a/dotnet/test/AutoGen.Anthropic.Tests/AnthropicTestFunctionCalls.cs +++ b/dotnet/test/AutoGen.Anthropic.Tests/AnthropicTestFunctionCalls.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/test/AutoGen.Anthropic.Tests/AnthropicTestUtils.cs b/dotnet/test/AutoGen.Anthropic.Tests/AnthropicTestUtils.cs index 9e1bbde2de7b..77dc4f330238 100644 --- a/dotnet/test/AutoGen.Anthropic.Tests/AnthropicTestUtils.cs +++ b/dotnet/test/AutoGen.Anthropic.Tests/AnthropicTestUtils.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/test/AutoGen.AotCompatibility.Tests/Program.cs b/dotnet/test/AutoGen.AotCompatibility.Tests/Program.cs index 00f1ba04b8dd..76b06c40e4e3 100644 --- a/dotnet/test/AutoGen.AotCompatibility.Tests/Program.cs +++ b/dotnet/test/AutoGen.AotCompatibility.Tests/Program.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/test/AutoGen.AzureAIInference.Tests/ChatCompletionClientAgentTests.cs b/dotnet/test/AutoGen.AzureAIInference.Tests/ChatCompletionClientAgentTests.cs index 9afb028d5ea0..76cca508e9da 100644 --- a/dotnet/test/AutoGen.AzureAIInference.Tests/ChatCompletionClientAgentTests.cs +++ b/dotnet/test/AutoGen.AzureAIInference.Tests/ChatCompletionClientAgentTests.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/test/AutoGen.AzureAIInference.Tests/ChatRequestMessageTests.cs b/dotnet/test/AutoGen.AzureAIInference.Tests/ChatRequestMessageTests.cs index f7cbb8f662ed..27ca3c5e8951 100644 --- a/dotnet/test/AutoGen.AzureAIInference.Tests/ChatRequestMessageTests.cs +++ b/dotnet/test/AutoGen.AzureAIInference.Tests/ChatRequestMessageTests.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/test/AutoGen.DotnetInteractive.Tests/DotnetInteractiveServiceTest.cs b/dotnet/test/AutoGen.DotnetInteractive.Tests/DotnetInteractiveServiceTest.cs index aad52e6138e5..5cfe2454c0f2 100644 --- a/dotnet/test/AutoGen.DotnetInteractive.Tests/DotnetInteractiveServiceTest.cs +++ b/dotnet/test/AutoGen.DotnetInteractive.Tests/DotnetInteractiveServiceTest.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/test/AutoGen.DotnetInteractive.Tests/DotnetInteractiveStdioKernelConnectorTests.cs b/dotnet/test/AutoGen.DotnetInteractive.Tests/DotnetInteractiveStdioKernelConnectorTests.cs index eb6edcf3d5e3..97a52b8f1571 100644 --- a/dotnet/test/AutoGen.DotnetInteractive.Tests/DotnetInteractiveStdioKernelConnectorTests.cs +++ b/dotnet/test/AutoGen.DotnetInteractive.Tests/DotnetInteractiveStdioKernelConnectorTests.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/test/AutoGen.DotnetInteractive.Tests/InProcessDotnetInteractiveKernelBuilderTest.cs b/dotnet/test/AutoGen.DotnetInteractive.Tests/InProcessDotnetInteractiveKernelBuilderTest.cs index c60563699b8f..6afa2e850cc2 100644 --- a/dotnet/test/AutoGen.DotnetInteractive.Tests/InProcessDotnetInteractiveKernelBuilderTest.cs +++ b/dotnet/test/AutoGen.DotnetInteractive.Tests/InProcessDotnetInteractiveKernelBuilderTest.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/test/AutoGen.DotnetInteractive.Tests/MessageExtensionTests.cs b/dotnet/test/AutoGen.DotnetInteractive.Tests/MessageExtensionTests.cs index e51666778310..63d998ea7c5d 100644 --- a/dotnet/test/AutoGen.DotnetInteractive.Tests/MessageExtensionTests.cs +++ b/dotnet/test/AutoGen.DotnetInteractive.Tests/MessageExtensionTests.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/test/AutoGen.Gemini.Tests/FunctionContractExtensionTests.cs b/dotnet/test/AutoGen.Gemini.Tests/FunctionContractExtensionTests.cs index 8d8679ba8e71..75786a75ec83 100644 --- a/dotnet/test/AutoGen.Gemini.Tests/FunctionContractExtensionTests.cs +++ b/dotnet/test/AutoGen.Gemini.Tests/FunctionContractExtensionTests.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/test/AutoGen.Gemini.Tests/Functions.cs b/dotnet/test/AutoGen.Gemini.Tests/Functions.cs index a0d1851687fb..0aee629f241b 100644 --- a/dotnet/test/AutoGen.Gemini.Tests/Functions.cs +++ b/dotnet/test/AutoGen.Gemini.Tests/Functions.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/test/AutoGen.Gemini.Tests/GeminiAgentTests.cs b/dotnet/test/AutoGen.Gemini.Tests/GeminiAgentTests.cs index 42888a4db5e8..d8945a289e68 100644 --- a/dotnet/test/AutoGen.Gemini.Tests/GeminiAgentTests.cs +++ b/dotnet/test/AutoGen.Gemini.Tests/GeminiAgentTests.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/test/AutoGen.Gemini.Tests/GeminiMessageTests.cs b/dotnet/test/AutoGen.Gemini.Tests/GeminiMessageTests.cs index a33b9e565d02..42055fb342d4 100644 --- a/dotnet/test/AutoGen.Gemini.Tests/GeminiMessageTests.cs +++ b/dotnet/test/AutoGen.Gemini.Tests/GeminiMessageTests.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/test/AutoGen.Gemini.Tests/GoogleGeminiClientTests.cs b/dotnet/test/AutoGen.Gemini.Tests/GoogleGeminiClientTests.cs index 0777e1eef7eb..82d6683852e3 100644 --- a/dotnet/test/AutoGen.Gemini.Tests/GoogleGeminiClientTests.cs +++ b/dotnet/test/AutoGen.Gemini.Tests/GoogleGeminiClientTests.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/test/AutoGen.Gemini.Tests/SampleTests.cs b/dotnet/test/AutoGen.Gemini.Tests/SampleTests.cs index f6fe9128c54b..cfbd8e8ad039 100644 --- a/dotnet/test/AutoGen.Gemini.Tests/SampleTests.cs +++ b/dotnet/test/AutoGen.Gemini.Tests/SampleTests.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/test/AutoGen.Gemini.Tests/VertexGeminiClientTests.cs b/dotnet/test/AutoGen.Gemini.Tests/VertexGeminiClientTests.cs index d4c1e0f38006..eef0bbc05370 100644 --- a/dotnet/test/AutoGen.Gemini.Tests/VertexGeminiClientTests.cs +++ b/dotnet/test/AutoGen.Gemini.Tests/VertexGeminiClientTests.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/test/AutoGen.Mistral.Tests/MistralClientAgentTests.cs b/dotnet/test/AutoGen.Mistral.Tests/MistralClientAgentTests.cs index 3eb08a8ac30d..cfced175439e 100644 --- a/dotnet/test/AutoGen.Mistral.Tests/MistralClientAgentTests.cs +++ b/dotnet/test/AutoGen.Mistral.Tests/MistralClientAgentTests.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/test/AutoGen.Mistral.Tests/MistralClientTests.cs b/dotnet/test/AutoGen.Mistral.Tests/MistralClientTests.cs index 0ee31488b32f..dda64d88b7f5 100644 --- a/dotnet/test/AutoGen.Mistral.Tests/MistralClientTests.cs +++ b/dotnet/test/AutoGen.Mistral.Tests/MistralClientTests.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/test/AutoGen.Ollama.Tests/OllamaAgentTests.cs b/dotnet/test/AutoGen.Ollama.Tests/OllamaAgentTests.cs index 107f26f36253..662d5648bc9a 100644 --- a/dotnet/test/AutoGen.Ollama.Tests/OllamaAgentTests.cs +++ b/dotnet/test/AutoGen.Ollama.Tests/OllamaAgentTests.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/test/AutoGen.Ollama.Tests/OllamaMessageTests.cs b/dotnet/test/AutoGen.Ollama.Tests/OllamaMessageTests.cs index 9135859b7fde..cde881272d9a 100644 --- a/dotnet/test/AutoGen.Ollama.Tests/OllamaMessageTests.cs +++ b/dotnet/test/AutoGen.Ollama.Tests/OllamaMessageTests.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/test/AutoGen.Ollama.Tests/OllamaTextEmbeddingServiceTests.cs b/dotnet/test/AutoGen.Ollama.Tests/OllamaTextEmbeddingServiceTests.cs index 044f8a7ec77d..f753832f38c6 100644 --- a/dotnet/test/AutoGen.Ollama.Tests/OllamaTextEmbeddingServiceTests.cs +++ b/dotnet/test/AutoGen.Ollama.Tests/OllamaTextEmbeddingServiceTests.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/test/AutoGen.OpenAI.V1.Tests/GlobalUsing.cs b/dotnet/test/AutoGen.OpenAI.V1.Tests/GlobalUsing.cs index 9ca6b9d8dc23..78d95cf0fecf 100644 --- a/dotnet/test/AutoGen.OpenAI.V1.Tests/GlobalUsing.cs +++ b/dotnet/test/AutoGen.OpenAI.V1.Tests/GlobalUsing.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/test/AutoGen.OpenAI.V1.Tests/MathClassTest.cs b/dotnet/test/AutoGen.OpenAI.V1.Tests/MathClassTest.cs index 366ad2095478..ce2bd0754fbf 100644 --- a/dotnet/test/AutoGen.OpenAI.V1.Tests/MathClassTest.cs +++ b/dotnet/test/AutoGen.OpenAI.V1.Tests/MathClassTest.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/test/AutoGen.OpenAI.V1.Tests/OpenAIChatAgentTest.cs b/dotnet/test/AutoGen.OpenAI.V1.Tests/OpenAIChatAgentTest.cs index 281c5d4f47a2..de0842b96218 100644 --- a/dotnet/test/AutoGen.OpenAI.V1.Tests/OpenAIChatAgentTest.cs +++ b/dotnet/test/AutoGen.OpenAI.V1.Tests/OpenAIChatAgentTest.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/test/AutoGen.OpenAI.V1.Tests/OpenAIMessageTests.cs b/dotnet/test/AutoGen.OpenAI.V1.Tests/OpenAIMessageTests.cs index 704a07f40b48..6dd345e4aad3 100644 --- a/dotnet/test/AutoGen.OpenAI.V1.Tests/OpenAIMessageTests.cs +++ b/dotnet/test/AutoGen.OpenAI.V1.Tests/OpenAIMessageTests.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/test/AutoGen.SemanticKernel.Tests/KernelFunctionExtensionTests.cs b/dotnet/test/AutoGen.SemanticKernel.Tests/KernelFunctionExtensionTests.cs index dd1cc22ae36d..e8354ad082f3 100644 --- a/dotnet/test/AutoGen.SemanticKernel.Tests/KernelFunctionExtensionTests.cs +++ b/dotnet/test/AutoGen.SemanticKernel.Tests/KernelFunctionExtensionTests.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/test/AutoGen.SemanticKernel.Tests/KernelFunctionMiddlewareTests.cs b/dotnet/test/AutoGen.SemanticKernel.Tests/KernelFunctionMiddlewareTests.cs index 6681ed687bc7..5509bd303001 100644 --- a/dotnet/test/AutoGen.SemanticKernel.Tests/KernelFunctionMiddlewareTests.cs +++ b/dotnet/test/AutoGen.SemanticKernel.Tests/KernelFunctionMiddlewareTests.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/test/AutoGen.SemanticKernel.Tests/SemanticKernelAgentTest.cs b/dotnet/test/AutoGen.SemanticKernel.Tests/SemanticKernelAgentTest.cs index c06acae3b7f1..cb722ea268e0 100644 --- a/dotnet/test/AutoGen.SemanticKernel.Tests/SemanticKernelAgentTest.cs +++ b/dotnet/test/AutoGen.SemanticKernel.Tests/SemanticKernelAgentTest.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/test/AutoGen.SourceGenerator.Tests/FilescopeNamespaceFunctionExample.cs b/dotnet/test/AutoGen.SourceGenerator.Tests/FilescopeNamespaceFunctionExample.cs index b0cebd388335..adda352b110d 100644 --- a/dotnet/test/AutoGen.SourceGenerator.Tests/FilescopeNamespaceFunctionExample.cs +++ b/dotnet/test/AutoGen.SourceGenerator.Tests/FilescopeNamespaceFunctionExample.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/test/AutoGen.SourceGenerator.Tests/FunctionCallTemplateEncodingTests.cs b/dotnet/test/AutoGen.SourceGenerator.Tests/FunctionCallTemplateEncodingTests.cs index 7072d445f740..4d28e51ab3ad 100644 --- a/dotnet/test/AutoGen.SourceGenerator.Tests/FunctionCallTemplateEncodingTests.cs +++ b/dotnet/test/AutoGen.SourceGenerator.Tests/FunctionCallTemplateEncodingTests.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/test/AutoGen.SourceGenerator.Tests/FunctionCallTemplateTests.cs b/dotnet/test/AutoGen.SourceGenerator.Tests/FunctionCallTemplateTests.cs index dcdb7e208256..8bc1401ac1f5 100644 --- a/dotnet/test/AutoGen.SourceGenerator.Tests/FunctionCallTemplateTests.cs +++ b/dotnet/test/AutoGen.SourceGenerator.Tests/FunctionCallTemplateTests.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/test/AutoGen.SourceGenerator.Tests/FunctionExample.test.cs b/dotnet/test/AutoGen.SourceGenerator.Tests/FunctionExample.test.cs index d714a991cbce..6c0c79d3e0e5 100644 --- a/dotnet/test/AutoGen.SourceGenerator.Tests/FunctionExample.test.cs +++ b/dotnet/test/AutoGen.SourceGenerator.Tests/FunctionExample.test.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/test/AutoGen.SourceGenerator.Tests/FunctionExamples.cs b/dotnet/test/AutoGen.SourceGenerator.Tests/FunctionExamples.cs index 25c12d9b3469..35ca201c16ef 100644 --- a/dotnet/test/AutoGen.SourceGenerator.Tests/FunctionExamples.cs +++ b/dotnet/test/AutoGen.SourceGenerator.Tests/FunctionExamples.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/test/AutoGen.SourceGenerator.Tests/TopLevelStatementFunctionExample.cs b/dotnet/test/AutoGen.SourceGenerator.Tests/TopLevelStatementFunctionExample.cs index d565433a052b..92f77021d8ff 100644 --- a/dotnet/test/AutoGen.SourceGenerator.Tests/TopLevelStatementFunctionExample.cs +++ b/dotnet/test/AutoGen.SourceGenerator.Tests/TopLevelStatementFunctionExample.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/test/AutoGen.Test.Share/Attribute/EnvironmentSpecificFactAttribute.cs b/dotnet/test/AutoGen.Test.Share/Attribute/EnvironmentSpecificFactAttribute.cs index 6b601e3351ea..55f8e2db5ce2 100644 --- a/dotnet/test/AutoGen.Test.Share/Attribute/EnvironmentSpecificFactAttribute.cs +++ b/dotnet/test/AutoGen.Test.Share/Attribute/EnvironmentSpecificFactAttribute.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/test/AutoGen.Test.Share/Attribute/OpenAIFact.cs b/dotnet/test/AutoGen.Test.Share/Attribute/OpenAIFact.cs index 40afbc11da14..0cf39d2b7528 100644 --- a/dotnet/test/AutoGen.Test.Share/Attribute/OpenAIFact.cs +++ b/dotnet/test/AutoGen.Test.Share/Attribute/OpenAIFact.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/test/AutoGen.Test.Share/EchoAgent.cs b/dotnet/test/AutoGen.Test.Share/EchoAgent.cs index 44709001498a..08df9100aea0 100644 --- a/dotnet/test/AutoGen.Test.Share/EchoAgent.cs +++ b/dotnet/test/AutoGen.Test.Share/EchoAgent.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/test/AutoGen.Tests/BasicSampleTest.cs b/dotnet/test/AutoGen.Tests/BasicSampleTest.cs index c45757b05d74..472c601866d5 100644 --- a/dotnet/test/AutoGen.Tests/BasicSampleTest.cs +++ b/dotnet/test/AutoGen.Tests/BasicSampleTest.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/test/AutoGen.Tests/GlobalUsing.cs b/dotnet/test/AutoGen.Tests/GlobalUsing.cs index 9ca6b9d8dc23..78d95cf0fecf 100644 --- a/dotnet/test/AutoGen.Tests/GlobalUsing.cs +++ b/dotnet/test/AutoGen.Tests/GlobalUsing.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/test/AutoGen.Tests/GroupChat/GraphTests.cs b/dotnet/test/AutoGen.Tests/GroupChat/GraphTests.cs index 5f703b374350..818ddb71b9ad 100644 --- a/dotnet/test/AutoGen.Tests/GroupChat/GraphTests.cs +++ b/dotnet/test/AutoGen.Tests/GroupChat/GraphTests.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/test/AutoGen.Tests/GroupChat/GroupChatTests.cs b/dotnet/test/AutoGen.Tests/GroupChat/GroupChatTests.cs index e90e4e31e961..a5eefd439039 100644 --- a/dotnet/test/AutoGen.Tests/GroupChat/GroupChatTests.cs +++ b/dotnet/test/AutoGen.Tests/GroupChat/GroupChatTests.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/test/AutoGen.Tests/ImageMessageTests.cs b/dotnet/test/AutoGen.Tests/ImageMessageTests.cs index ad473cdda48d..fbf1188f19f8 100644 --- a/dotnet/test/AutoGen.Tests/ImageMessageTests.cs +++ b/dotnet/test/AutoGen.Tests/ImageMessageTests.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/test/AutoGen.Tests/MiddlewareAgentTest.cs b/dotnet/test/AutoGen.Tests/MiddlewareAgentTest.cs index a7d0dddf8294..67f6dea87081 100644 --- a/dotnet/test/AutoGen.Tests/MiddlewareAgentTest.cs +++ b/dotnet/test/AutoGen.Tests/MiddlewareAgentTest.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/test/AutoGen.Tests/MiddlewareTest.cs b/dotnet/test/AutoGen.Tests/MiddlewareTest.cs index 41dd8a63d885..50403820308e 100644 --- a/dotnet/test/AutoGen.Tests/MiddlewareTest.cs +++ b/dotnet/test/AutoGen.Tests/MiddlewareTest.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/test/AutoGen.Tests/Orchestrator/RolePlayOrchestratorTests.cs b/dotnet/test/AutoGen.Tests/Orchestrator/RolePlayOrchestratorTests.cs index f9678bc4f746..243554187b43 100644 --- a/dotnet/test/AutoGen.Tests/Orchestrator/RolePlayOrchestratorTests.cs +++ b/dotnet/test/AutoGen.Tests/Orchestrator/RolePlayOrchestratorTests.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/test/AutoGen.Tests/Orchestrator/RoundRobinOrchestratorTests.cs b/dotnet/test/AutoGen.Tests/Orchestrator/RoundRobinOrchestratorTests.cs index aca1dd0da2bf..9d23b1ee2128 100644 --- a/dotnet/test/AutoGen.Tests/Orchestrator/RoundRobinOrchestratorTests.cs +++ b/dotnet/test/AutoGen.Tests/Orchestrator/RoundRobinOrchestratorTests.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/test/AutoGen.Tests/Orchestrator/WorkflowOrchestratorTests.cs b/dotnet/test/AutoGen.Tests/Orchestrator/WorkflowOrchestratorTests.cs index 14ada03ad357..57b2339f61d0 100644 --- a/dotnet/test/AutoGen.Tests/Orchestrator/WorkflowOrchestratorTests.cs +++ b/dotnet/test/AutoGen.Tests/Orchestrator/WorkflowOrchestratorTests.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/test/AutoGen.Tests/SingleAgentTest.cs b/dotnet/test/AutoGen.Tests/SingleAgentTest.cs index 88d4ac6a49fe..1ae3e7657b9a 100644 --- a/dotnet/test/AutoGen.Tests/SingleAgentTest.cs +++ b/dotnet/test/AutoGen.Tests/SingleAgentTest.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT @@ -77,7 +77,7 @@ public async Task GPTAgentVisionTestAsync() { nameof(GetHighestLabel), this.GetHighestLabelWrapper }, }); - var imageUri = new Uri(@"https://autogen-ai.github.io/autogen/assets/images/level2algebra-659ba95286432d9945fc89e84d606797.png"); + var imageUri = new Uri(@"https://autogenhub.github.io/autogen/assets/images/level2algebra-659ba95286432d9945fc89e84d606797.png"); var oaiMessage = new ChatRequestUserMessage( new ChatMessageTextContentItem("which label has the highest inference cost"), new ChatMessageImageContentItem(imageUri)); diff --git a/dotnet/test/AutoGen.Tests/TwoAgentTest.cs b/dotnet/test/AutoGen.Tests/TwoAgentTest.cs index adf82d5857ec..233c209fa076 100644 --- a/dotnet/test/AutoGen.Tests/TwoAgentTest.cs +++ b/dotnet/test/AutoGen.Tests/TwoAgentTest.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/test/AutoGen.Tests/WorkflowTest.cs b/dotnet/test/AutoGen.Tests/WorkflowTest.cs index 86c8f01cc808..743166da110d 100644 --- a/dotnet/test/AutoGen.Tests/WorkflowTest.cs +++ b/dotnet/test/AutoGen.Tests/WorkflowTest.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/test/AutoGen.WebAPI.Tests/EchoAgent.cs b/dotnet/test/AutoGen.WebAPI.Tests/EchoAgent.cs index ece022a7eee7..fb9c58fe3d13 100644 --- a/dotnet/test/AutoGen.WebAPI.Tests/EchoAgent.cs +++ b/dotnet/test/AutoGen.WebAPI.Tests/EchoAgent.cs @@ -1,6 +1,6 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/test/AutoGen.WebAPI.Tests/OpenAIChatCompletionMiddlewareTests.cs b/dotnet/test/AutoGen.WebAPI.Tests/OpenAIChatCompletionMiddlewareTests.cs index 0bca14f35b83..94512873e4aa 100644 --- a/dotnet/test/AutoGen.WebAPI.Tests/OpenAIChatCompletionMiddlewareTests.cs +++ b/dotnet/test/AutoGen.WebAPI.Tests/OpenAIChatCompletionMiddlewareTests.cs @@ -1,12 +1,12 @@ -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT -// Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub // SPDX-License-Identifier: Apache-2.0 -// Contributions to this project, i.e., https://github.com/autogen-ai/autogen, +// Contributions to this project, i.e., https://github.com/autogenhub/autogen, // are licensed under the Apache License, Version 2.0 (Apache-2.0). // Portions derived from https://github.com/microsoft/autogen under the MIT License. // SPDX-License-Identifier: MIT diff --git a/dotnet/website/articles/AutoGen.Gemini/Chat-with-google-gemini.md b/dotnet/website/articles/AutoGen.Gemini/Chat-with-google-gemini.md index 43c686b02b1d..f9d72dbd8d80 100644 --- a/dotnet/website/articles/AutoGen.Gemini/Chat-with-google-gemini.md +++ b/dotnet/website/articles/AutoGen.Gemini/Chat-with-google-gemini.md @@ -3,7 +3,7 @@ This example shows how to use @AutoGen.Gemini.GeminiChatAgent to connect to Goog To run this example, you need to have a Google AI Gemini API key. For how to get a Google Gemini API key, please refer to [Google Gemini](https://gemini.google.com/). > [!NOTE] -> You can find the complete sample code [here](https://github.com/autogen-ai/autogen/blob/main/dotnet/sample/AutoGen.Gemini.Sample/Chat_With_Google_Gemini.cs) +> You can find the complete sample code [here](https://github.com/autogenhub/autogen/blob/main/dotnet/sample/AutoGen.Gemini.Sample/Chat_With_Google_Gemini.cs) > [!NOTE] > What's the difference between Google AI Gemini and Vertex AI Gemini? diff --git a/dotnet/website/articles/AutoGen.Gemini/Chat-with-vertex-gemini.md b/dotnet/website/articles/AutoGen.Gemini/Chat-with-vertex-gemini.md index 1a34c5ecc52e..aa85d54101e7 100644 --- a/dotnet/website/articles/AutoGen.Gemini/Chat-with-vertex-gemini.md +++ b/dotnet/website/articles/AutoGen.Gemini/Chat-with-vertex-gemini.md @@ -3,7 +3,7 @@ This example shows how to use @AutoGen.Gemini.GeminiChatAgent to connect to Vert To run this example, you need to have a project on Google Cloud with access to Vertex AI API. For more information please refer to [Google Vertex AI](https://cloud.google.com/vertex-ai/docs). > [!NOTE] -> You can find the complete sample code [here](https://github.com/autogen-ai/autogen/blob/main/dotnet/sample/AutoGen.Gemini.Sample/Chat_With_Vertex_Gemini.cs) +> You can find the complete sample code [here](https://github.com/autogenhub/autogen/blob/main/dotnet/sample/AutoGen.Gemini.Sample/Chat_With_Vertex_Gemini.cs) > [!NOTE] > What's the difference between Google AI Gemini and Vertex AI Gemini? diff --git a/dotnet/website/articles/AutoGen.Gemini/Function-call-with-gemini.md b/dotnet/website/articles/AutoGen.Gemini/Function-call-with-gemini.md index f67e2b4d35e4..f2f606d72493 100644 --- a/dotnet/website/articles/AutoGen.Gemini/Function-call-with-gemini.md +++ b/dotnet/website/articles/AutoGen.Gemini/Function-call-with-gemini.md @@ -4,7 +4,7 @@ To run this example, you need to have a project on Google Cloud with access to V > [!NOTE] -> You can find the complete sample code [here](https://github.com/autogen-ai/autogen/blob/main/dotnet/sample/AutoGen.Gemini.Sample/Function_Call_With_Gemini.cs) +> You can find the complete sample code [here](https://github.com/autogenhub/autogen/blob/main/dotnet/sample/AutoGen.Gemini.Sample/Function_Call_With_Gemini.cs) ### Step 1: Install AutoGen.Gemini and AutoGen.SourceGenerator diff --git a/dotnet/website/articles/AutoGen.Gemini/Image-chat-with-gemini.md b/dotnet/website/articles/AutoGen.Gemini/Image-chat-with-gemini.md index da1e9222d873..928c32c80270 100644 --- a/dotnet/website/articles/AutoGen.Gemini/Image-chat-with-gemini.md +++ b/dotnet/website/articles/AutoGen.Gemini/Image-chat-with-gemini.md @@ -4,7 +4,7 @@ To run this example, you need to have a project on Google Cloud with access to V > [!NOTE] -> You can find the complete sample code [here](https://github.com/autogen-ai/autogen/blob/main/dotnet/sample/AutoGen.Gemini.Sample/Image_Chat_With_Vertex_Gemini.cs) +> You can find the complete sample code [here](https://github.com/autogenhub/autogen/blob/main/dotnet/sample/AutoGen.Gemini.Sample/Image_Chat_With_Vertex_Gemini.cs) ### Step 1: Install AutoGen.Gemini diff --git a/dotnet/website/articles/AutoGen.Gemini/Overview.md b/dotnet/website/articles/AutoGen.Gemini/Overview.md index d02e20c68614..4dcc3c89a6c6 100644 --- a/dotnet/website/articles/AutoGen.Gemini/Overview.md +++ b/dotnet/website/articles/AutoGen.Gemini/Overview.md @@ -9,4 +9,4 @@ AutoGen.Gemini also provides the following middleware: ## Examples -You can find more examples under the [gemini sample project](https://github.com/autogen-ai/autogen/tree/main/dotnet/sample/AutoGen.Gemini.Sample) \ No newline at end of file +You can find more examples under the [gemini sample project](https://github.com/autogenhub/autogen/tree/main/dotnet/sample/AutoGen.Gemini.Sample) \ No newline at end of file diff --git a/dotnet/website/articles/AutoGen.Ollama/Chat-with-llama.md b/dotnet/website/articles/AutoGen.Ollama/Chat-with-llama.md index df56b9ac4246..02042085bdba 100644 --- a/dotnet/website/articles/AutoGen.Ollama/Chat-with-llama.md +++ b/dotnet/website/articles/AutoGen.Ollama/Chat-with-llama.md @@ -3,7 +3,7 @@ This example shows how to use @AutoGen.Ollama.OllamaAgent to connect to Ollama s To run this example, you need to have an Ollama server running aside and have `llama3:latest` model installed. For how to setup an Ollama server, please refer to [Ollama](https://ollama.com/). > [!NOTE] -> You can find the complete sample code [here](https://github.com/autogen-ai/autogen/blob/main/dotnet/sample/AutoGen.Ollama.Sample/Chat_With_LLaMA.cs) +> You can find the complete sample code [here](https://github.com/autogenhub/autogen/blob/main/dotnet/sample/AutoGen.Ollama.Sample/Chat_With_LLaMA.cs) ### Step 1: Install AutoGen.Ollama diff --git a/dotnet/website/articles/AutoGen.Ollama/Chat-with-llava.md b/dotnet/website/articles/AutoGen.Ollama/Chat-with-llava.md index bc257399cc74..b7a736af2106 100644 --- a/dotnet/website/articles/AutoGen.Ollama/Chat-with-llava.md +++ b/dotnet/website/articles/AutoGen.Ollama/Chat-with-llava.md @@ -3,7 +3,7 @@ This sample shows how to use @AutoGen.Ollama.OllamaAgent to chat with LLaVA mode To run this example, you need to have an Ollama server running aside and have `llava:latest` model installed. For how to setup an Ollama server, please refer to [Ollama](https://ollama.com/). > [!NOTE] -> You can find the complete sample code [here](https://github.com/autogen-ai/autogen/blob/main/dotnet/sample/AutoGen.Ollama.Sample/Chat_With_LLaVA.cs) +> You can find the complete sample code [here](https://github.com/autogenhub/autogen/blob/main/dotnet/sample/AutoGen.Ollama.Sample/Chat_With_LLaVA.cs) ### Step 1: Install AutoGen.Ollama diff --git a/dotnet/website/articles/AutoGen.SemanticKernel/SemanticKernelChatAgent-simple-chat.md b/dotnet/website/articles/AutoGen.SemanticKernel/SemanticKernelChatAgent-simple-chat.md index 6e25576128e7..2c747bf2a896 100644 --- a/dotnet/website/articles/AutoGen.SemanticKernel/SemanticKernelChatAgent-simple-chat.md +++ b/dotnet/website/articles/AutoGen.SemanticKernel/SemanticKernelChatAgent-simple-chat.md @@ -3,7 +3,7 @@ The following step-by-step example shows how to create an @AutoGen.SemanticKernel.SemanticKernelChatCompletionAgent and chat with it: > [!NOTE] -> You can find the complete sample code [here](https://github.com/autogen-ai/autogen/blob/main/dotnet/sample/AutoGen.SemanticKernel.Sample/Create_Semantic_Kernel_Chat_Agent.cs). +> You can find the complete sample code [here](https://github.com/autogenhub/autogen/blob/main/dotnet/sample/AutoGen.SemanticKernel.Sample/Create_Semantic_Kernel_Chat_Agent.cs). ### Step 1: add using statement [!code-csharp[](../../../sample/AutoGen.SemanticKernel.Sample/Create_Semantic_Kernel_Chat_Agent.cs?name=Using)] diff --git a/dotnet/website/articles/AutoGen.SemanticKernel/Use-kernel-plugin-in-other-agents.md b/dotnet/website/articles/AutoGen.SemanticKernel/Use-kernel-plugin-in-other-agents.md index d3f45eacf338..fec27042a112 100644 --- a/dotnet/website/articles/AutoGen.SemanticKernel/Use-kernel-plugin-in-other-agents.md +++ b/dotnet/website/articles/AutoGen.SemanticKernel/Use-kernel-plugin-in-other-agents.md @@ -3,7 +3,7 @@ In semantic kernel, a kernel plugin is a collection of kernel functions that can `AutoGen.SemanticKernel` provides a middleware called @AutoGen.SemanticKernel.KernelPluginMiddleware that allows you to use semantic kernel plugins in other AutoGen agents like @AutoGen.OpenAI.OpenAIChatAgent. The following example shows how to define a simple plugin with a single `GetWeather` function and use it in @AutoGen.OpenAI.OpenAIChatAgent. > [!NOTE] -> You can find the complete sample code [here](https://github.com/autogen-ai/autogen/blob/main/dotnet/sample/AutoGen.SemanticKernel.Sample/Use_Kernel_Functions_With_Other_Agent.cs) +> You can find the complete sample code [here](https://github.com/autogenhub/autogen/blob/main/dotnet/sample/AutoGen.SemanticKernel.Sample/Use_Kernel_Functions_With_Other_Agent.cs) ### Step 1: add using statement [!code-csharp[](../../../sample/AutoGen.SemanticKernel.Sample/Use_Kernel_Functions_With_Other_Agent.cs?name=Using)] diff --git a/dotnet/website/articles/Function-call-with-ollama-and-litellm.md b/dotnet/website/articles/Function-call-with-ollama-and-litellm.md index ae97432e5137..f95408c4a53b 100644 --- a/dotnet/website/articles/Function-call-with-ollama-and-litellm.md +++ b/dotnet/website/articles/Function-call-with-ollama-and-litellm.md @@ -1,6 +1,6 @@ This example shows how to use function call with local LLM models where [Ollama](https://ollama.com/) as local model provider and [LiteLLM](https://docs.litellm.ai/docs/) proxy server which provides an openai-api compatible interface. -[![](https://img.shields.io/badge/Open%20on%20Github-grey?logo=github)](https://github.com/autogen-ai/autogen/blob/main/dotnet/sample/AutoGen.OpenAI.Sample/Tool_Call_With_Ollama_And_LiteLLM.cs) +[![](https://img.shields.io/badge/Open%20on%20Github-grey?logo=github)](https://github.com/autogenhub/autogen/blob/main/dotnet/sample/AutoGen.OpenAI.Sample/Tool_Call_With_Ollama_And_LiteLLM.cs) To run this example, the following prerequisites are required: - Install [Ollama](https://ollama.com/) and [LiteLLM](https://docs.litellm.ai/docs/) on your local machine. diff --git a/dotnet/website/articles/MistralChatAgent-count-token-usage.md b/dotnet/website/articles/MistralChatAgent-count-token-usage.md index e1519bbe3a9c..da19be133ef8 100644 --- a/dotnet/website/articles/MistralChatAgent-count-token-usage.md +++ b/dotnet/website/articles/MistralChatAgent-count-token-usage.md @@ -4,7 +4,7 @@ The following example shows how to create a `MistralAITokenCounterMiddleware` @A To collect the token usage for the entire chat session, one easy solution is simply collect all the responses from agent and sum up the token usage for each response. To collect all the agent responses, we can create a middleware which simply saves all responses to a list and register it with the agent. To get the token usage information for each response, because in the example we are using @AutoGen.Mistral.MistralClientAgent, we can simply get the token usage from the response object. > [!NOTE] -> You can find the complete example in the [Example13_OpenAIAgent_JsonMode](https://github.com/autogen-ai/autogen/tree/main/dotnet/sample/AutoGen.BasicSamples/Example14_MistralClientAgent_TokenCount.cs). +> You can find the complete example in the [Example13_OpenAIAgent_JsonMode](https://github.com/autogenhub/autogen/tree/main/dotnet/sample/AutoGen.BasicSamples/Example14_MistralClientAgent_TokenCount.cs). - Step 1: Adding using statement [!code-csharp[](../../sample/AutoGen.BasicSamples/Example14_MistralClientAgent_TokenCount.cs?name=using_statements)] diff --git a/dotnet/website/articles/OpenAIChatAgent-connect-to-third-party-api.md b/dotnet/website/articles/OpenAIChatAgent-connect-to-third-party-api.md index 8b6787530cb5..fdf8bb86ea96 100644 --- a/dotnet/website/articles/OpenAIChatAgent-connect-to-third-party-api.md +++ b/dotnet/website/articles/OpenAIChatAgent-connect-to-third-party-api.md @@ -1,6 +1,6 @@ The following example shows how to connect to third-party OpenAI API using @AutoGen.OpenAI.OpenAIChatAgent. -[![](https://img.shields.io/badge/Open%20on%20Github-grey?logo=github)](https://github.com/autogen-ai/autogen/blob/main/dotnet/sample/AutoGen.OpenAI.Sample/Connect_To_Ollama.cs) +[![](https://img.shields.io/badge/Open%20on%20Github-grey?logo=github)](https://github.com/autogenhub/autogen/blob/main/dotnet/sample/AutoGen.OpenAI.Sample/Connect_To_Ollama.cs) ## Overview A lot of LLM applications/platforms support spinning up a chat server that is compatible with OpenAI API, such as LM Studio, Ollama, Mistral etc. This means that you can connect to these servers using the @AutoGen.OpenAI.OpenAIChatAgent. diff --git a/dotnet/website/articles/OpenAIChatAgent-use-json-mode.md b/dotnet/website/articles/OpenAIChatAgent-use-json-mode.md index 068b1b0ce187..154fec5c2ab0 100644 --- a/dotnet/website/articles/OpenAIChatAgent-use-json-mode.md +++ b/dotnet/website/articles/OpenAIChatAgent-use-json-mode.md @@ -1,6 +1,6 @@ The following example shows how to enable JSON mode in @AutoGen.OpenAI.OpenAIChatAgent. -[![](https://img.shields.io/badge/Open%20on%20Github-grey?logo=github)](https://github.com/autogen-ai/autogen/blob/main/dotnet/sample/AutoGen.OpenAI.Sample/Use_Json_Mode.cs) +[![](https://img.shields.io/badge/Open%20on%20Github-grey?logo=github)](https://github.com/autogenhub/autogen/blob/main/dotnet/sample/AutoGen.OpenAI.Sample/Use_Json_Mode.cs) ## What is JSON mode? JSON mode is a new feature in OpenAI which allows you to instruct model to always respond with a valid JSON object. This is useful when you want to constrain the model output to JSON format only. diff --git a/dotnet/website/articles/Roundrobin-chat.md b/dotnet/website/articles/Roundrobin-chat.md index 367fc1bc3559..bc1b451324c8 100644 --- a/dotnet/website/articles/Roundrobin-chat.md +++ b/dotnet/website/articles/Roundrobin-chat.md @@ -10,7 +10,7 @@ flowchart LR ``` > [!NOTE] -> Complete code can be found in [Example11_Sequential_GroupChat_Example](https://github.com/autogen-ai/autogen/blob/dotnet/dotnet/sample/AutoGen.BasicSamples/Example11_Sequential_GroupChat_Example.cs); +> Complete code can be found in [Example11_Sequential_GroupChat_Example](https://github.com/autogenhub/autogen/blob/dotnet/dotnet/sample/AutoGen.BasicSamples/Example11_Sequential_GroupChat_Example.cs); Step 1: Add required using statements diff --git a/dotnet/website/articles/Run-dotnet-code.md b/dotnet/website/articles/Run-dotnet-code.md index fe4590e0962b..661dd2f0c471 100644 --- a/dotnet/website/articles/Run-dotnet-code.md +++ b/dotnet/website/articles/Run-dotnet-code.md @@ -57,5 +57,5 @@ Then you can add the python kernel to the dotnet-interactive composite kernel by ## Further reading You can refer to the following examples for running code snippet in agentic workflow: -- Dynamic_GroupChat_Coding_Task: [![](https://img.shields.io/badge/Open%20on%20Github-grey?logo=github)](https://github.com/autogen-ai/autogen/blob/main/dotnet/sample/AutoGen.BasicSample/Example04_Dynamic_GroupChat_Coding_Task.cs) -- Dynamic_GroupChat_Calculate_Fibonacci: [![](https://img.shields.io/badge/Open%20on%20Github-grey?logo=github)](https://github.com/autogen-ai/autogen/blob/main/dotnet/sample/AutoGen.BasicSample/Example07_Dynamic_GroupChat_Calculate_Fibonacci.cs) +- Dynamic_GroupChat_Coding_Task: [![](https://img.shields.io/badge/Open%20on%20Github-grey?logo=github)](https://github.com/autogenhub/autogen/blob/main/dotnet/sample/AutoGen.BasicSample/Example04_Dynamic_GroupChat_Coding_Task.cs) +- Dynamic_GroupChat_Calculate_Fibonacci: [![](https://img.shields.io/badge/Open%20on%20Github-grey?logo=github)](https://github.com/autogenhub/autogen/blob/main/dotnet/sample/AutoGen.BasicSample/Example07_Dynamic_GroupChat_Calculate_Fibonacci.cs) diff --git a/dotnet/website/articles/getting-start.md b/dotnet/website/articles/getting-start.md index 14292e6ea142..2e13b278f45b 100644 --- a/dotnet/website/articles/getting-start.md +++ b/dotnet/website/articles/getting-start.md @@ -1,5 +1,5 @@ ### Get start with AutoGen for dotnet -[![dotnet-ci](https://github.com/autogen-ai/autogen/actions/workflows/dotnet-build.yml/badge.svg)](https://github.com/autogen-ai/autogen/actions/workflows/dotnet-build.yml) +[![dotnet-ci](https://github.com/autogenhub/autogen/actions/workflows/dotnet-build.yml/badge.svg)](https://github.com/autogenhub/autogen/actions/workflows/dotnet-build.yml) [![Discord](https://img.shields.io/discord/1153072414184452236?logo=discord&style=flat)](https://discord.gg/pAbnFJrkgZ) [![NuGet version](https://badge.fury.io/nu/AutoGen.Core.svg)](https://badge.fury.io/nu/AutoGen.Core) @@ -20,7 +20,7 @@ Then you can start with the following code snippet to create a conversable agent ### Tutorial Getting started with AutoGen.Net by following the [tutorial](../tutorial/Chat-with-an-agent.md) series. ### Examples -You can find more examples under the [sample project](https://github.com/autogen-ai/autogen/tree/dotnet/dotnet/sample/AutoGen.BasicSamples). +You can find more examples under the [sample project](https://github.com/autogenhub/autogen/tree/dotnet/dotnet/sample/AutoGen.BasicSamples). ### Report a bug or request a feature -You can report a bug or request a feature by creating a new issue in the [github issue](https://github.com/autogen-ai/autogen/issues) and specifying label the label "donet" +You can report a bug or request a feature by creating a new issue in the [github issue](https://github.com/autogenhub/autogen/issues) and specifying label the label "donet" diff --git a/dotnet/website/docfx.json b/dotnet/website/docfx.json index 0a8327a36ad3..e1f3badf2ec5 100644 --- a/dotnet/website/docfx.json +++ b/dotnet/website/docfx.json @@ -61,7 +61,7 @@ "_appFooter": "AutoGen for .NET", "_appFaviconPath": "images/ag.ico", "_gitContribute": { - "repo": "https://github.com/autogen-ai/autogen.git", + "repo": "https://github.com/autogenhub/autogen.git", "branch": "dotnet" } }, diff --git a/dotnet/website/toc.yml b/dotnet/website/toc.yml index dc631e2d3d9b..6c7642b8fe29 100644 --- a/dotnet/website/toc.yml +++ b/dotnet/website/toc.yml @@ -17,4 +17,4 @@ dropdown: true items: - name: Python - href: https://autogen-ai.github.io/autogen/ + href: https://autogenhub.github.io/autogen/ diff --git a/dotnet/website/tutorial/Chat-with-an-agent.md b/dotnet/website/tutorial/Chat-with-an-agent.md index f31f4ccdc72d..1f5c51362c56 100644 --- a/dotnet/website/tutorial/Chat-with-an-agent.md +++ b/dotnet/website/tutorial/Chat-with-an-agent.md @@ -11,7 +11,7 @@ This tutorial shows how to generate response using an @AutoGen.Core.IAgent by ta > - @AutoGen.Gemini.GeminiChatAgent > [!NOTE] -> The complete code example can be found in [Chat_With_Agent.cs](https://github.com/autogen-ai/autogen/blob/main/dotnet/sample/AutoGen.BasicSamples/GettingStart/Chat_With_Agent.cs) +> The complete code example can be found in [Chat_With_Agent.cs](https://github.com/autogenhub/autogen/blob/main/dotnet/sample/AutoGen.BasicSamples/GettingStart/Chat_With_Agent.cs) ## Step 1: Install AutoGen diff --git a/dotnet/website/tutorial/Create-agent-with-tools.md b/dotnet/website/tutorial/Create-agent-with-tools.md index 6fd0b8a75060..3dea40e279c5 100644 --- a/dotnet/website/tutorial/Create-agent-with-tools.md +++ b/dotnet/website/tutorial/Create-agent-with-tools.md @@ -14,7 +14,7 @@ Tools are pre-defined functions in user's project that agent can invoke. Agent c > This tutorial uses the latest `GPT-3.5-turbo` as example. > [!NOTE] -> The complete code example can be found in [Use_Tools_With_Agent.cs](https://github.com/autogen-ai/autogen/blob/main/dotnet/sample/AutoGen.BasicSamples/GettingStart/Use_Tools_With_Agent.cs) +> The complete code example can be found in [Use_Tools_With_Agent.cs](https://github.com/autogenhub/autogen/blob/main/dotnet/sample/AutoGen.BasicSamples/GettingStart/Use_Tools_With_Agent.cs) ## Key Concepts - @AutoGen.Core.FunctionContract: The contract of a function that agent can invoke. It contains the function name, description, parameters schema, and return type. diff --git a/dotnet/website/tutorial/Image-chat-with-agent.md b/dotnet/website/tutorial/Image-chat-with-agent.md index 2f4b5d3bd877..11f408c0f4be 100644 --- a/dotnet/website/tutorial/Image-chat-with-agent.md +++ b/dotnet/website/tutorial/Image-chat-with-agent.md @@ -11,7 +11,7 @@ This tutorial shows how to perform image chat with an agent using the @AutoGen.O > In this example, we are using the gpt-4o model as the backend model for the agent. > [!NOTE] -> The complete code example can be found in [Image_Chat_With_Agent.cs](https://github.com/autogen-ai/autogen/blob/main/dotnet/sample/AutoGen.BasicSamples/GettingStart/Image_Chat_With_Agent.cs) +> The complete code example can be found in [Image_Chat_With_Agent.cs](https://github.com/autogenhub/autogen/blob/main/dotnet/sample/AutoGen.BasicSamples/GettingStart/Image_Chat_With_Agent.cs) ## Step 1: Install AutoGen diff --git a/notebook/JSON_mode_example.ipynb b/notebook/JSON_mode_example.ipynb index 1ebaf71f8964..1a8f03f40423 100644 --- a/notebook/JSON_mode_example.ipynb +++ b/notebook/JSON_mode_example.ipynb @@ -15,11 +15,11 @@ "The group chat manager can perfrom some simple maths encoded into the agent descriptions on the rating values (made reliable by json mode) and direct requests deemed too coersive to the \"suspicious agent\" \n", "\n", "\n", - "![agent flow](https://media.githubusercontent.com/media/autogen-ai/autogen/main/notebook/friendly_and_suspicous.jpg)\n", + "![agent flow](https://media.githubusercontent.com/media/autogenhub/autogen/main/notebook/friendly_and_suspicous.jpg)\n", "\n", "\n", "Please find documentation about this feature in OpenAI [here](https://platform.openai.com/docs/guides/text-generation/json-mode).\n", - "More information about Agent Descriptions is located [here](https://autogen-ai.github.io/autogen/blog/2023/12/29/AgentDescriptions/)\n", + "More information about Agent Descriptions is located [here](https://autogenhub.github.io/autogen/blog/2023/12/29/AgentDescriptions/)\n", "\n", "Benefits\n", "- This contribution provides a method to implement precise speaker transitions based on content of the input message. The example can prevent Prompt hacks that use coersive language.\n", diff --git a/notebook/agentchat_MathChat.ipynb b/notebook/agentchat_MathChat.ipynb index 056908702577..9b5b18e2f235 100644 --- a/notebook/agentchat_MathChat.ipynb +++ b/notebook/agentchat_MathChat.ipynb @@ -7,9 +7,9 @@ "source": [ "# Auto Generated Agent Chat: Using MathChat to Solve Math Problems\n", "\n", - "AutoGen offers conversable agents powered by LLM, tool or human, which can be used to perform tasks collectively via automated chat. This framework allows tool use and human participation through multi-agent conversation. Please find documentation about this feature [here](https://autogen-ai.github.io/autogen/docs/Use-Cases/agent_chat).\n", + "AutoGen offers conversable agents powered by LLM, tool or human, which can be used to perform tasks collectively via automated chat. This framework allows tool use and human participation through multi-agent conversation. Please find documentation about this feature [here](https://autogenhub.github.io/autogen/docs/Use-Cases/agent_chat).\n", "\n", - "MathChat is an experimental conversational framework for math problem solving. In this notebook, we demonstrate how to use MathChat to solve math problems. MathChat uses the `AssistantAgent` and `MathUserProxyAgent`, which is similar to the usage of `AssistantAgent` and `UserProxyAgent` in other notebooks (e.g., [Automated Task Solving with Code Generation, Execution & Debugging](https://github.com/autogen-ai/autogen/blob/main/notebook/agentchat_auto_feedback_from_code_execution.ipynb)). Essentially, `MathUserProxyAgent` implements a different auto reply mechanism corresponding to the MathChat prompts. You can find more details in the paper [An Empirical Study on Challenging Math Problem Solving with GPT-4](https://arxiv.org/abs/2306.01337) or the [blogpost](https://autogen-ai.github.io/autogen/blog/2023/06/28/MathChat).\n", + "MathChat is an experimental conversational framework for math problem solving. In this notebook, we demonstrate how to use MathChat to solve math problems. MathChat uses the `AssistantAgent` and `MathUserProxyAgent`, which is similar to the usage of `AssistantAgent` and `UserProxyAgent` in other notebooks (e.g., [Automated Task Solving with Code Generation, Execution & Debugging](https://github.com/autogenhub/autogen/blob/main/notebook/agentchat_auto_feedback_from_code_execution.ipynb)). Essentially, `MathUserProxyAgent` implements a different auto reply mechanism corresponding to the MathChat prompts. You can find more details in the paper [An Empirical Study on Challenging Math Problem Solving with GPT-4](https://arxiv.org/abs/2306.01337) or the [blogpost](https://autogenhub.github.io/autogen/blog/2023/06/28/MathChat).\n", "\n", "````{=mdx}\n", ":::info Requirements\n", @@ -31,7 +31,7 @@ "source": [ "## Set your API Endpoint\n", "\n", - "The [`config_list_from_json`](https://autogen-ai.github.io/autogen/docs/reference/oai/openai_utils#config_list_from_json) function loads a list of configurations from an environment variable or a json file.\n" + "The [`config_list_from_json`](https://autogenhub.github.io/autogen/docs/reference/oai/openai_utils#config_list_from_json) function loads a list of configurations from an environment variable or a json file.\n" ] }, { diff --git a/notebook/agentchat_RetrieveChat.ipynb b/notebook/agentchat_RetrieveChat.ipynb index a9daa3f0d816..5970f1b1c0df 100644 --- a/notebook/agentchat_RetrieveChat.ipynb +++ b/notebook/agentchat_RetrieveChat.ipynb @@ -8,9 +8,9 @@ "# Using RetrieveChat for Retrieve Augmented Code Generation and Question Answering\n", "\n", "AutoGen offers conversable agents powered by LLM, tool or human, which can be used to perform tasks collectively via automated chat. This framework allows tool use and human participation through multi-agent conversation.\n", - "Please find documentation about this feature [here](https://autogen-ai.github.io/autogen/docs/Use-Cases/agent_chat).\n", + "Please find documentation about this feature [here](https://autogenhub.github.io/autogen/docs/Use-Cases/agent_chat).\n", "\n", - "RetrieveChat is a conversational system for retrieval-augmented code generation and question answering. In this notebook, we demonstrate how to utilize RetrieveChat to generate code and answer questions based on customized documentations that are not present in the LLM's training dataset. RetrieveChat uses the `AssistantAgent` and `RetrieveUserProxyAgent`, which is similar to the usage of `AssistantAgent` and `UserProxyAgent` in other notebooks (e.g., [Automated Task Solving with Code Generation, Execution & Debugging](https://github.com/autogen-ai/autogen/blob/main/notebook/agentchat_auto_feedback_from_code_execution.ipynb)). Essentially, `RetrieveUserProxyAgent` implement a different auto-reply mechanism corresponding to the RetrieveChat prompts.\n", + "RetrieveChat is a conversational system for retrieval-augmented code generation and question answering. In this notebook, we demonstrate how to utilize RetrieveChat to generate code and answer questions based on customized documentations that are not present in the LLM's training dataset. RetrieveChat uses the `AssistantAgent` and `RetrieveUserProxyAgent`, which is similar to the usage of `AssistantAgent` and `UserProxyAgent` in other notebooks (e.g., [Automated Task Solving with Code Generation, Execution & Debugging](https://github.com/autogenhub/autogen/blob/main/notebook/agentchat_auto_feedback_from_code_execution.ipynb)). Essentially, `RetrieveUserProxyAgent` implement a different auto-reply mechanism corresponding to the RetrieveChat prompts.\n", "\n", "## Table of Contents\n", "We'll demonstrate six examples of using RetrieveChat for code generation and question answering:\n", @@ -43,7 +43,7 @@ "source": [ "## Set your API Endpoint\n", "\n", - "The [`config_list_from_json`](https://autogen-ai.github.io/autogen/docs/reference/oai/openai_utils#config_list_from_json) function loads a list of configurations from an environment variable or a json file.\n" + "The [`config_list_from_json`](https://autogenhub.github.io/autogen/docs/reference/oai/openai_utils#config_list_from_json) function loads a list of configurations from an environment variable or a json file.\n" ] }, { @@ -141,8 +141,8 @@ ")\n", "\n", "# 2. create the RetrieveUserProxyAgent instance named \"ragproxyagent\"\n", - "# Refer to https://autogen-ai.github.io/autogen/docs/reference/agentchat/contrib/retrieve_user_proxy_agent\n", - "# and https://autogen-ai.github.io/autogen/docs/reference/agentchat/contrib/vectordb/chromadb\n", + "# Refer to https://autogenhub.github.io/autogen/docs/reference/agentchat/contrib/retrieve_user_proxy_agent\n", + "# and https://autogenhub.github.io/autogen/docs/reference/agentchat/contrib/vectordb/chromadb\n", "# for more information on the RetrieveUserProxyAgent and ChromaVectorDB\n", "ragproxyagent = RetrieveUserProxyAgent(\n", " name=\"ragproxyagent\",\n", diff --git a/notebook/agentchat_RetrieveChat_mongodb.ipynb b/notebook/agentchat_RetrieveChat_mongodb.ipynb index c7de93dfac9d..757420014705 100644 --- a/notebook/agentchat_RetrieveChat_mongodb.ipynb +++ b/notebook/agentchat_RetrieveChat_mongodb.ipynb @@ -8,9 +8,9 @@ "# Using RetrieveChat Powered by MongoDB Atlas for Retrieve Augmented Code Generation and Question Answering\n", "\n", "AutoGen offers conversable agents powered by LLM, tool or human, which can be used to perform tasks collectively via automated chat. This framework allows tool use and human participation through multi-agent conversation.\n", - "Please find documentation about this feature [here](https://autogen-ai.github.io/autogen/docs/Use-Cases/agent_chat).\n", + "Please find documentation about this feature [here](https://autogenhub.github.io/autogen/docs/Use-Cases/agent_chat).\n", "\n", - "RetrieveChat is a conversational system for retrieval-augmented code generation and question answering. In this notebook, we demonstrate how to utilize RetrieveChat to generate code and answer questions based on customized documentations that are not present in the LLM's training dataset. RetrieveChat uses the `AssistantAgent` and `RetrieveUserProxyAgent`, which is similar to the usage of `AssistantAgent` and `UserProxyAgent` in other notebooks (e.g., [Automated Task Solving with Code Generation, Execution & Debugging](https://github.com/autogen-ai/autogen/blob/main/notebook/agentchat_auto_feedback_from_code_execution.ipynb)). Essentially, `RetrieveUserProxyAgent` implement a different auto-reply mechanism corresponding to the RetrieveChat prompts.\n", + "RetrieveChat is a conversational system for retrieval-augmented code generation and question answering. In this notebook, we demonstrate how to utilize RetrieveChat to generate code and answer questions based on customized documentations that are not present in the LLM's training dataset. RetrieveChat uses the `AssistantAgent` and `RetrieveUserProxyAgent`, which is similar to the usage of `AssistantAgent` and `UserProxyAgent` in other notebooks (e.g., [Automated Task Solving with Code Generation, Execution & Debugging](https://github.com/autogenhub/autogen/blob/main/notebook/agentchat_auto_feedback_from_code_execution.ipynb)). Essentially, `RetrieveUserProxyAgent` implement a different auto-reply mechanism corresponding to the RetrieveChat prompts.\n", "\n", "## Table of Contents\n", "We'll demonstrate six examples of using RetrieveChat for code generation and question answering:\n", @@ -123,8 +123,8 @@ ")\n", "\n", "# 2. create the RetrieveUserProxyAgent instance named \"ragproxyagent\"\n", - "# Refer to https://autogen-ai.github.io/autogen/docs/reference/agentchat/contrib/retrieve_user_proxy_agent\n", - "# and https://autogen-ai.github.io/autogen/docs/reference/agentchat/contrib/vectordb/mongodb\n", + "# Refer to https://autogenhub.github.io/autogen/docs/reference/agentchat/contrib/retrieve_user_proxy_agent\n", + "# and https://autogenhub.github.io/autogen/docs/reference/agentchat/contrib/vectordb/mongodb\n", "# for more information on the RetrieveUserProxyAgent and MongoDBAtlasVectorDB\n", "ragproxyagent = RetrieveUserProxyAgent(\n", " name=\"ragproxyagent\",\n", diff --git a/notebook/agentchat_RetrieveChat_pgvector.ipynb b/notebook/agentchat_RetrieveChat_pgvector.ipynb index 2ff37fc0d52e..17200d6690fc 100644 --- a/notebook/agentchat_RetrieveChat_pgvector.ipynb +++ b/notebook/agentchat_RetrieveChat_pgvector.ipynb @@ -8,9 +8,9 @@ "# Using RetrieveChat Powered by PGVector for Retrieve Augmented Code Generation and Question Answering\n", "\n", "AutoGen offers conversable agents powered by LLM, tool or human, which can be used to perform tasks collectively via automated chat. This framework allows tool use and human participation through multi-agent conversation.\n", - "Please find documentation about this feature [here](https://autogen-ai.github.io/autogen/docs/Use-Cases/agent_chat).\n", + "Please find documentation about this feature [here](https://autogenhub.github.io/autogen/docs/Use-Cases/agent_chat).\n", "\n", - "RetrieveChat is a conversational system for retrieval-augmented code generation and question answering. In this notebook, we demonstrate how to utilize RetrieveChat to generate code and answer questions based on customized documentations that are not present in the LLM's training dataset. RetrieveChat uses the `AssistantAgent` and `RetrieveUserProxyAgent`, which is similar to the usage of `AssistantAgent` and `UserProxyAgent` in other notebooks (e.g., [Automated Task Solving with Code Generation, Execution & Debugging](https://github.com/autogen-ai/autogen/blob/main/notebook/agentchat_auto_feedback_from_code_execution.ipynb)). Essentially, `RetrieveUserProxyAgent` implement a different auto-reply mechanism corresponding to the RetrieveChat prompts.\n", + "RetrieveChat is a conversational system for retrieval-augmented code generation and question answering. In this notebook, we demonstrate how to utilize RetrieveChat to generate code and answer questions based on customized documentations that are not present in the LLM's training dataset. RetrieveChat uses the `AssistantAgent` and `RetrieveUserProxyAgent`, which is similar to the usage of `AssistantAgent` and `UserProxyAgent` in other notebooks (e.g., [Automated Task Solving with Code Generation, Execution & Debugging](https://github.com/autogenhub/autogen/blob/main/notebook/agentchat_auto_feedback_from_code_execution.ipynb)). Essentially, `RetrieveUserProxyAgent` implement a different auto-reply mechanism corresponding to the RetrieveChat prompts.\n", "\n", "## Table of Contents\n", "We'll demonstrate six examples of using RetrieveChat for code generation and question answering:\n", @@ -67,7 +67,7 @@ "source": [ "## Set your API Endpoint\n", "\n", - "The [`config_list_from_json`](https://autogen-ai.github.io/autogen/docs/reference/oai/openai_utils#config_list_from_json) function loads a list of configurations from an environment variable or a json file.\n" + "The [`config_list_from_json`](https://autogenhub.github.io/autogen/docs/reference/oai/openai_utils#config_list_from_json) function loads a list of configurations from an environment variable or a json file.\n" ] }, { @@ -175,8 +175,8 @@ "sentence_transformer_ef = SentenceTransformer(\"all-distilroberta-v1\").encode\n", "\n", "# 2. create the RetrieveUserProxyAgent instance named \"ragproxyagent\"\n", - "# Refer to https://autogen-ai.github.io/autogen/docs/reference/agentchat/contrib/retrieve_user_proxy_agent\n", - "# and https://autogen-ai.github.io/autogen/docs/reference/agentchat/contrib/vectordb/pgvectordb\n", + "# Refer to https://autogenhub.github.io/autogen/docs/reference/agentchat/contrib/retrieve_user_proxy_agent\n", + "# and https://autogenhub.github.io/autogen/docs/reference/agentchat/contrib/vectordb/pgvectordb\n", "# for more information on the RetrieveUserProxyAgent and PGVectorDB\n", "ragproxyagent = RetrieveUserProxyAgent(\n", " name=\"ragproxyagent\",\n", diff --git a/notebook/agentchat_RetrieveChat_qdrant.ipynb b/notebook/agentchat_RetrieveChat_qdrant.ipynb index 4a53e08548b4..3a31a502da5e 100644 --- a/notebook/agentchat_RetrieveChat_qdrant.ipynb +++ b/notebook/agentchat_RetrieveChat_qdrant.ipynb @@ -9,10 +9,10 @@ "\n", "[Qdrant](https://qdrant.tech/) is a high-performance vector search engine/database.\n", "\n", - "This notebook demonstrates the usage of Qdrant for RAG, based on [agentchat_RetrieveChat.ipynb](https://github.com/autogen-ai/autogen/blob/main/notebook/agentchat_RetrieveChat.ipynb).\n", + "This notebook demonstrates the usage of Qdrant for RAG, based on [agentchat_RetrieveChat.ipynb](https://github.com/autogenhub/autogen/blob/main/notebook/agentchat_RetrieveChat.ipynb).\n", "\n", "\n", - "RetrieveChat is a conversational system for retrieve augmented code generation and question answering. In this notebook, we demonstrate how to utilize RetrieveChat to generate code and answer questions based on customized documentations that are not present in the LLM's training dataset. RetrieveChat uses the `AssistantAgent` and `RetrieveUserProxyAgent`, which is similar to the usage of `AssistantAgent` and `UserProxyAgent` in other notebooks (e.g., [Automated Task Solving with Code Generation, Execution & Debugging](https://github.com/autogen-ai/autogen/blob/main/notebook/agentchat_auto_feedback_from_code_execution.ipynb)).\n", + "RetrieveChat is a conversational system for retrieve augmented code generation and question answering. In this notebook, we demonstrate how to utilize RetrieveChat to generate code and answer questions based on customized documentations that are not present in the LLM's training dataset. RetrieveChat uses the `AssistantAgent` and `RetrieveUserProxyAgent`, which is similar to the usage of `AssistantAgent` and `UserProxyAgent` in other notebooks (e.g., [Automated Task Solving with Code Generation, Execution & Debugging](https://github.com/autogenhub/autogen/blob/main/notebook/agentchat_auto_feedback_from_code_execution.ipynb)).\n", "\n", "We'll demonstrate usage of RetrieveChat with Qdrant for code generation and question answering w/ human feedback.\n", "\n", @@ -53,7 +53,7 @@ "source": [ "## Set your API Endpoint\n", "\n", - "The [`config_list_from_json`](https://autogen-ai.github.io/autogen/docs/reference/oai/openai_utils#config_list_from_json) function loads a list of configurations from an environment variable or a json file.\n" + "The [`config_list_from_json`](https://autogenhub.github.io/autogen/docs/reference/oai/openai_utils#config_list_from_json) function loads a list of configurations from an environment variable or a json file.\n" ] }, { @@ -167,8 +167,8 @@ "client = QdrantClient(\":memory:\")\n", "\n", "# 2. create the RetrieveUserProxyAgent instance named \"ragproxyagent\"\n", - "# Refer to https://autogen-ai.github.io/autogen/docs/reference/agentchat/contrib/retrieve_user_proxy_agent\n", - "# and https://autogen-ai.github.io/autogen/docs/reference/agentchat/contrib/vectordb/qdrant\n", + "# Refer to https://autogenhub.github.io/autogen/docs/reference/agentchat/contrib/retrieve_user_proxy_agent\n", + "# and https://autogenhub.github.io/autogen/docs/reference/agentchat/contrib/vectordb/qdrant\n", "# for more information on the RetrieveUserProxyAgent and QdrantVectorDB\n", "ragproxyagent = RetrieveUserProxyAgent(\n", " name=\"ragproxyagent\",\n", @@ -177,9 +177,9 @@ " retrieve_config={\n", " \"task\": \"code\",\n", " \"docs_path\": [\n", - " \"https://raw.githubusercontent.com/autogen-ai/flaml/main/README.md\",\n", - " \"https://raw.githubusercontent.com/autogen-ai/FLAML/main/website/docs/Research.md\",\n", - " ], # change this to your own path, such as https://raw.githubusercontent.com/autogen-ai/autogen/main/README.md\n", + " \"https://raw.githubusercontent.com/autogenhub/flaml/main/README.md\",\n", + " \"https://raw.githubusercontent.com/autogenhub/FLAML/main/website/docs/Research.md\",\n", + " ], # change this to your own path, such as https://raw.githubusercontent.com/autogenhub/autogen/main/README.md\n", " \"chunk_token_size\": 2000,\n", " \"model\": config_list[0][\"model\"],\n", " \"db_config\": {\"client\": client},\n", @@ -276,13 +276,13 @@ "
\n", "

\n", "\n", - ":fire: Heads-up: We have migrated [AutoGen](https://autogen-ai.github.io/autogen/) into a dedicated [github repository](https://github.com/autogen-ai/autogen). Alongside this move, we have also launched a dedicated [Discord](https://discord.gg/pAbnFJrkgZ) server and a [website](https://autogen-ai.github.io/autogen/) for comprehensive documentation.\n", + ":fire: Heads-up: We have migrated [AutoGen](https://autogenhub.github.io/autogen/) into a dedicated [github repository](https://github.com/autogenhub/autogen). Alongside this move, we have also launched a dedicated [Discord](https://discord.gg/pAbnFJrkgZ) server and a [website](https://autogenhub.github.io/autogen/) for comprehensive documentation.\n", "\n", - ":fire: The automated multi-agent chat framework in [AutoGen](https://autogen-ai.github.io/autogen/) is in preview from v2.0.0.\n", + ":fire: The automated multi-agent chat framework in [AutoGen](https://autogenhub.github.io/autogen/) is in preview from v2.0.0.\n", "\n", ":fire: FLAML is highlighted in OpenAI's [cookbook](https://github.com/openai/openai-cookbook#related-resources-from-around-the-web).\n", "\n", - ":fire: [autogen](https://autogen-ai.github.io/autogen/) is released with support for ChatGPT and GPT-4, based on [Cost-Effective Hyperparameter Optimization for Large Language Model Generation Inference](https://arxiv.org/abs/2303.04673).\n", + ":fire: [autogen](https://autogenhub.github.io/autogen/) is released with support for ChatGPT and GPT-4, based on [Cost-Effective Hyperparameter Optimization for Large Language Model Generation Inference](https://arxiv.org/abs/2303.04673).\n", "\n", ":fire: FLAML supports Code-First AutoML & Tuning – Private Preview in [Microsoft Fabric Data Science](https://learn.microsoft.com/en-us/fabric/data-science/).\n", "\n", @@ -308,7 +308,7 @@ "pip install flaml\n", "```\n", "\n", - "Minimal dependencies are installed without extra options. You can install extra options based on the feature you need. For example, use the following to install the dependencies needed by the [`autogen`](https://autogen-ai.github.io/autogen/) package.\n", + "Minimal dependencies are installed without extra options. You can install extra options based on the feature you need. For example, use the following to install the dependencies needed by the [`autogen`](https://autogenhub.github.io/autogen/) package.\n", "\n", "```bash\n", "pip install \"flaml[autogen]\"\n", @@ -319,7 +319,7 @@ "\n", "## Quickstart\n", "\n", - "- (New) The [autogen](https://autogen-ai.github.io/autogen/) package enables the next-gen GPT-X applications with a generic multi-agent conversation framework.\n", + "- (New) The [autogen](https://autogenhub.github.io/autogen/) package enables the next-gen GPT-X applications with a generic multi-agent conversation framework.\n", " It offers customizable and conversable agents which integrate LLMs, tools and human.\n", " By automating chat among multiple capable agents, one can easily make them collectively perform tasks autonomously or with human feedback, including tasks that require using tools via code. For example,\n", "\n", diff --git a/notebook/agentchat_agentoptimizer.ipynb b/notebook/agentchat_agentoptimizer.ipynb index d762750f436e..9f5cd110fb35 100644 --- a/notebook/agentchat_agentoptimizer.ipynb +++ b/notebook/agentchat_agentoptimizer.ipynb @@ -7,7 +7,7 @@ "# AgentOptimizer: An Agentic Way to Train Your LLM Agent\n", "\n", "AutoGen offers conversable agents powered by LLM, tool, or human, which can be used to perform tasks collectively via automated chat. This framework allows tool use and human participation through multi-agent conversation.\n", - "Please find documentation about this feature [here](https://autogen-ai.github.io/autogen/docs/Use-Cases/agent_chat).\n", + "Please find documentation about this feature [here](https://autogenhub.github.io/autogen/docs/Use-Cases/agent_chat).\n", "\n", "In traditional ML pipeline, we train a model by updating its parameter according to the loss on the training set, while in the era of LLM agents, how should we train an agent? Here, we take an initial step towards the agent training. Inspired by the [function calling](https://platform.openai.com/docs/guides/function-calling) capabilities provided by OpenAI, we draw an analogy between model parameters and agent functions/skills, and update agent’s functions/skills based on its historical performance on the training set. As an agentic way of training an agent, our approach help enhance the agents’ abilities without requiring access to the LLMs parameters.\n", "\n", @@ -16,7 +16,7 @@ "Specifically, given a set of training data, AgentOptimizer would iteratively prompt the LLM to optimize the existing function list of the AssistantAgent and UserProxyAgent with code implementation if necessary. It also includes two strategies, roll-back, and early-stop, to streamline the training process.\n", "In the example scenario, we test the proposed AgentOptimizer in solving problems from the [MATH dataset](https://github.com/hendrycks/math). \n", "\n", - "![AgentOptimizer](https://media.githubusercontent.com/media/autogen-ai/autogen/main/website/blog/2023-12-23-AgentOptimizer/img/agentoptimizer.png)\n", + "![AgentOptimizer](https://media.githubusercontent.com/media/autogenhub/autogen/main/website/blog/2023-12-23-AgentOptimizer/img/agentoptimizer.png)\n", "\n", "More information could be found in the [paper](https://arxiv.org/abs/2402.11359).\n", "\n", @@ -53,7 +53,7 @@ "source": [ "# MathUserProxy with function_call\n", "\n", - "This agent is a customized MathUserProxy inherits from its [parent class](https://github.com/autogen-ai/autogen/blob/main/autogen/agentchat/contrib/math_user_proxy_agent.py).\n", + "This agent is a customized MathUserProxy inherits from its [parent class](https://github.com/autogenhub/autogen/blob/main/autogen/agentchat/contrib/math_user_proxy_agent.py).\n", "\n", "It supports using both function_call and python to solve math problems.\n" ] diff --git a/notebook/agentchat_cost_token_tracking.ipynb b/notebook/agentchat_cost_token_tracking.ipynb index 0f83bfb0dbe3..623a0b070b2a 100644 --- a/notebook/agentchat_cost_token_tracking.ipynb +++ b/notebook/agentchat_cost_token_tracking.ipynb @@ -53,7 +53,7 @@ "source": [ "## Set your API Endpoint\n", "\n", - "The [`config_list_from_json`](https://autogen-ai.github.io/autogen/docs/reference/oai/openai_utils#config_list_from_json) function loads a list of configurations from an environment variable or a json file.\n" + "The [`config_list_from_json`](https://autogenhub.github.io/autogen/docs/reference/oai/openai_utils#config_list_from_json) function loads a list of configurations from an environment variable or a json file.\n" ] }, { @@ -98,7 +98,7 @@ "]\n", "```\n", "\n", - "You can set the value of config_list in any way you prefer. Please refer to this [notebook](https://github.com/autogen-ai/autogen/blob/main/website/docs/topics/llm_configuration.ipynb) for full code examples of the different methods." + "You can set the value of config_list in any way you prefer. Please refer to this [notebook](https://github.com/autogenhub/autogen/blob/main/website/docs/topics/llm_configuration.ipynb) for full code examples of the different methods." ] }, { diff --git a/notebook/agentchat_custom_model.ipynb b/notebook/agentchat_custom_model.ipynb index 6b3d2baec32d..fa91959cf971 100644 --- a/notebook/agentchat_custom_model.ipynb +++ b/notebook/agentchat_custom_model.ipynb @@ -210,7 +210,7 @@ "source": [ "## Set your API Endpoint\n", "\n", - "The [`config_list_from_json`](https://autogen-ai.github.io/autogen/docs/reference/oai/openai_utils#config_list_from_json) function loads a list of configurations from an environment variable or a json file.\n", + "The [`config_list_from_json`](https://autogenhub.github.io/autogen/docs/reference/oai/openai_utils#config_list_from_json) function loads a list of configurations from an environment variable or a json file.\n", "\n", "It first looks for an environment variable of a specified name (\"OAI_CONFIG_LIST\" in this example), which needs to be a valid json string. If that variable is not found, it looks for a json file with the same name. It filters the configs by models (you can filter by other keys as well).\n", "\n", diff --git a/notebook/agentchat_databricks_dbrx.ipynb b/notebook/agentchat_databricks_dbrx.ipynb index cc3de76ed648..37d4be93ad39 100644 --- a/notebook/agentchat_databricks_dbrx.ipynb +++ b/notebook/agentchat_databricks_dbrx.ipynb @@ -10,7 +10,7 @@ "\n", "In March 2024, Databricks released [DBRX](https://www.databricks.com/blog/introducing-dbrx-new-state-art-open-llm), a general-purpose LLM that sets a new standard for open LLMs. While available as an open-source model on Hugging Face ([databricks/dbrx-instruct](https://huggingface.co/databricks/dbrx-instruct/tree/main) and [databricks/dbrx-base](https://huggingface.co/databricks/dbrx-base) ), customers of Databricks can also tap into the [Foundation Model APIs](https://docs.databricks.com/en/machine-learning/model-serving/score-foundation-models.html#query-a-chat-completion-model), which make DBRX available through an OpenAI-compatible, autoscaling REST API.\n", "\n", - "[Autogen](https://autogen-ai.github.io/autogen/docs/Use-Cases/agent_chat) is becoming a popular standard for agent creation. Built to support any \"LLM as a service\" that implements the OpenAI SDK, it can easily be extended to integrate with powerful open source models. \n", + "[Autogen](https://autogenhub.github.io/autogen/docs/Use-Cases/agent_chat) is becoming a popular standard for agent creation. Built to support any \"LLM as a service\" that implements the OpenAI SDK, it can easily be extended to integrate with powerful open source models. \n", "\n", "This notebook will demonstrate a few basic examples of Autogen with DBRX, including the use of `AssistantAgent`, `UserProxyAgent`, and `ConversableAgent`. These demos are not intended to be exhaustive - feel free to use them as a base to build upon!\n", "\n", @@ -76,7 +76,7 @@ "source": [ "## Setup DBRX config list\n", "\n", - "See Autogen docs for more inforation on the use of `config_list`: [LLM Configuration](https://autogen-ai.github.io/autogen/docs/topics/llm_configuration#why-is-it-a-list)" + "See Autogen docs for more inforation on the use of `config_list`: [LLM Configuration](https://autogenhub.github.io/autogen/docs/topics/llm_configuration#why-is-it-a-list)" ] }, { @@ -116,7 +116,7 @@ "source": [ "## Hello World Example\n", "\n", - "Our first example will be with a simple `UserProxyAgent` asking a question to an `AssistantAgent`. This is based on the tutorial demo [here](https://autogen-ai.github.io/autogen/docs/tutorial/introduction).\n", + "Our first example will be with a simple `UserProxyAgent` asking a question to an `AssistantAgent`. This is based on the tutorial demo [here](https://autogenhub.github.io/autogen/docs/tutorial/introduction).\n", "\n", "After sending the question and seeing a response, you can type `exit` to end the chat or continue to converse." ] @@ -207,7 +207,7 @@ "source": [ "## Simple Coding Agent\n", "\n", - "In this example, we will implement a \"coding agent\" that can execute code. You will see how this code is run alongside your notebook in your current workspace, taking advantage of the performance benefits of Databricks clusters. This is based off the demo [here](https://autogen-ai.github.io/autogen/docs/topics/non-openai-models/cloud-mistralai/).\n", + "In this example, we will implement a \"coding agent\" that can execute code. You will see how this code is run alongside your notebook in your current workspace, taking advantage of the performance benefits of Databricks clusters. This is based off the demo [here](https://autogenhub.github.io/autogen/docs/topics/non-openai-models/cloud-mistralai/).\n", "\n", "First, set up a directory: " ] @@ -430,7 +430,7 @@ "source": [ "## Conversable Bots\n", "\n", - "We can also implement the [two-agent chat pattern](https://autogen-ai.github.io/autogen/docs/tutorial/conversation-patterns/#two-agent-chat-and-chat-result) using DBRX to \"talk to itself\" in a teacher/student exchange:" + "We can also implement the [two-agent chat pattern](https://autogenhub.github.io/autogen/docs/tutorial/conversation-patterns/#two-agent-chat-and-chat-result) using DBRX to \"talk to itself\" in a teacher/student exchange:" ] }, { @@ -498,7 +498,7 @@ "\n", "It can be useful to display chat logs to the notebook for debugging, and then persist those logs to a Delta table. The following section demonstrates how to extend the default AutoGen logging libraries.\n", "\n", - "First, we will implement a Python `class` that extends the capabilities of `autogen.runtime_logging` [docs](https://autogen-ai.github.io/autogen/docs/notebooks/agentchat_logging):" + "First, we will implement a Python `class` that extends the capabilities of `autogen.runtime_logging` [docs](https://autogenhub.github.io/autogen/docs/notebooks/agentchat_logging):" ] }, { diff --git a/notebook/agentchat_function_call.ipynb b/notebook/agentchat_function_call.ipynb index d9317f59de2f..e7b6db2db5c5 100644 --- a/notebook/agentchat_function_call.ipynb +++ b/notebook/agentchat_function_call.ipynb @@ -8,7 +8,7 @@ "source": [ "# Auto Generated Agent Chat: Task Solving with Provided Tools as Functions\n", "\n", - "AutoGen offers conversable agents powered by LLM, tool, or human, which can be used to perform tasks collectively via automated chat. This framework allows tool use and human participation through multi-agent conversation. Please find documentation about this feature [here](https://autogen-ai.github.io/autogen/docs/Use-Cases/agent_chat).\n", + "AutoGen offers conversable agents powered by LLM, tool, or human, which can be used to perform tasks collectively via automated chat. This framework allows tool use and human participation through multi-agent conversation. Please find documentation about this feature [here](https://autogenhub.github.io/autogen/docs/Use-Cases/agent_chat).\n", "\n", "In this notebook, we demonstrate how to use `AssistantAgent` and `UserProxyAgent` to make function calls with the new feature of OpenAI models (in model version 0613). A specified prompt and function configs must be passed to `AssistantAgent` to initialize the agent. The corresponding functions must be passed to `UserProxyAgent`, which will execute any function calls made by `AssistantAgent`. Besides this requirement of matching descriptions with functions, we recommend checking the system message in the `AssistantAgent` to ensure the instructions align with the function call descriptions.\n", "\n", @@ -38,7 +38,7 @@ "source": [ "## Set your API Endpoint\n", "\n", - "The [`config_list_from_json`](https://autogen-ai.github.io/autogen/docs/reference/oai/openai_utils#config_list_from_json) function loads a list of configurations from an environment variable or a json file." + "The [`config_list_from_json`](https://autogenhub.github.io/autogen/docs/reference/oai/openai_utils#config_list_from_json) function loads a list of configurations from an environment variable or a json file." ] }, { diff --git a/notebook/agentchat_function_call_async.ipynb b/notebook/agentchat_function_call_async.ipynb index a6acbd6eb5d5..77e0610d1eb2 100644 --- a/notebook/agentchat_function_call_async.ipynb +++ b/notebook/agentchat_function_call_async.ipynb @@ -14,7 +14,7 @@ "id": "9a71fa36", "metadata": {}, "source": [ - "AutoGen offers conversable agents powered by LLM, tool, or human, which can be used to perform tasks collectively via automated chat. This framework allows tool use and human participation through multi-agent conversation. Please find documentation about this feature [here](https://autogen-ai.github.io/autogen/docs/Use-Cases/agent_chat).\n", + "AutoGen offers conversable agents powered by LLM, tool, or human, which can be used to perform tasks collectively via automated chat. This framework allows tool use and human participation through multi-agent conversation. Please find documentation about this feature [here](https://autogenhub.github.io/autogen/docs/Use-Cases/agent_chat).\n", "\n", "In this notebook, we demonstrate how to use `AssistantAgent` and `UserProxyAgent` to make function calls with the new feature of OpenAI models (in model version 0613). A specified prompt and function configs must be passed to `AssistantAgent` to initialize the agent. The corresponding functions must be passed to `UserProxyAgent`, which will execute any function calls made by `AssistantAgent`. Besides this requirement of matching descriptions with functions, we recommend checking the system message in the `AssistantAgent` to ensure the instructions align with the function call descriptions.\n", "\n", diff --git a/notebook/agentchat_function_call_currency_calculator.ipynb b/notebook/agentchat_function_call_currency_calculator.ipynb index f8ff390c4ff8..4c77a66e34ef 100644 --- a/notebook/agentchat_function_call_currency_calculator.ipynb +++ b/notebook/agentchat_function_call_currency_calculator.ipynb @@ -15,7 +15,7 @@ "id": "9a71fa36", "metadata": {}, "source": [ - "AutoGen offers conversable agents powered by LLM, tool, or human, which can be used to perform tasks collectively via automated chat. This framework allows tool use and human participation through multi-agent conversation. Please find documentation about this feature [here](https://autogen-ai.github.io/autogen/docs/Use-Cases/agent_chat).\n", + "AutoGen offers conversable agents powered by LLM, tool, or human, which can be used to perform tasks collectively via automated chat. This framework allows tool use and human participation through multi-agent conversation. Please find documentation about this feature [here](https://autogenhub.github.io/autogen/docs/Use-Cases/agent_chat).\n", "\n", "In this notebook, we demonstrate how to use `AssistantAgent` and `UserProxyAgent` to make function calls with the new feature of OpenAI models (in model version 0613). A specified prompt and function configs must be passed to `AssistantAgent` to initialize the agent. The corresponding functions must be passed to `UserProxyAgent`, which will execute any function calls made by `AssistantAgent`. Besides this requirement of matching descriptions with functions, we recommend checking the system message in the `AssistantAgent` to ensure the instructions align with the function call descriptions.\n", "\n", @@ -45,7 +45,7 @@ "source": [ "## Set your API Endpoint\n", "\n", - "The [`config_list_from_json`](https://autogen-ai.github.io/autogen/docs/reference/oai/openai_utils#config_list_from_json) function loads a list of configurations from an environment variable or a json file." + "The [`config_list_from_json`](https://autogenhub.github.io/autogen/docs/reference/oai/openai_utils#config_list_from_json) function loads a list of configurations from an environment variable or a json file." ] }, { diff --git a/notebook/agentchat_groupchat.ipynb b/notebook/agentchat_groupchat.ipynb index abf418ee03c6..11b1312ada4c 100644 --- a/notebook/agentchat_groupchat.ipynb +++ b/notebook/agentchat_groupchat.ipynb @@ -8,9 +8,9 @@ "# Group Chat\n", "\n", "AutoGen offers conversable agents powered by LLM, tool or human, which can be used to perform tasks collectively via automated chat. This framework allows tool use and human participation through multi-agent conversation.\n", - "Please find documentation about this feature [here](https://autogen-ai.github.io/autogen/docs/Use-Cases/agent_chat).\n", + "Please find documentation about this feature [here](https://autogenhub.github.io/autogen/docs/Use-Cases/agent_chat).\n", "\n", - "This notebook is modified based on https://github.com/autogen-ai/FLAML/blob/4ea686af5c3e8ff24d9076a7a626c8b28ab5b1d7/notebook/autogen_multiagent_roleplay_chat.ipynb\n", + "This notebook is modified based on https://github.com/autogenhub/FLAML/blob/4ea686af5c3e8ff24d9076a7a626c8b28ab5b1d7/notebook/autogen_multiagent_roleplay_chat.ipynb\n", "\n", "````{=mdx}\n", ":::info Requirements\n", @@ -31,7 +31,7 @@ "source": [ "## Set your API Endpoint\n", "\n", - "The [`config_list_from_json`](https://autogen-ai.github.io/autogen/docs/reference/oai/openai_utils#config_list_from_json) function loads a list of configurations from an environment variable or a json file." + "The [`config_list_from_json`](https://autogenhub.github.io/autogen/docs/reference/oai/openai_utils#config_list_from_json) function loads a list of configurations from an environment variable or a json file." ] }, { diff --git a/notebook/agentchat_groupchat_RAG.ipynb b/notebook/agentchat_groupchat_RAG.ipynb index 7b2f1e453c6b..6a9e8c01b3fc 100644 --- a/notebook/agentchat_groupchat_RAG.ipynb +++ b/notebook/agentchat_groupchat_RAG.ipynb @@ -8,7 +8,7 @@ "# Group Chat with Retrieval Augmented Generation\n", "\n", "AutoGen supports conversable agents powered by LLMs, tools, or humans, performing tasks collectively via automated chat. This framework allows tool use and human participation through multi-agent conversation.\n", - "Please find documentation about this feature [here](https://autogen-ai.github.io/autogen/docs/Use-Cases/agent_chat).\n", + "Please find documentation about this feature [here](https://autogenhub.github.io/autogen/docs/Use-Cases/agent_chat).\n", "\n", "````{=mdx}\n", ":::info Requirements\n", @@ -30,7 +30,7 @@ "source": [ "## Set your API Endpoint\n", "\n", - "The [`config_list_from_json`](https://autogen-ai.github.io/autogen/docs/reference/oai/openai_utils#config_list_from_json) function loads a list of configurations from an environment variable or a json file." + "The [`config_list_from_json`](https://autogenhub.github.io/autogen/docs/reference/oai/openai_utils#config_list_from_json) function loads a list of configurations from an environment variable or a json file." ] }, { diff --git a/notebook/agentchat_groupchat_customized.ipynb b/notebook/agentchat_groupchat_customized.ipynb index e439da12b89b..2ffa24ede027 100644 --- a/notebook/agentchat_groupchat_customized.ipynb +++ b/notebook/agentchat_groupchat_customized.ipynb @@ -8,7 +8,7 @@ "# Group Chat with Customized Speaker Selection Method\n", "\n", "AutoGen offers conversable agents powered by LLM, tool or human, which can be used to perform tasks collectively via automated chat. This framework allows tool use and human participation through multi-agent conversation.\n", - "Please find documentation about this feature [here](https://autogen-ai.github.io/autogen/docs/Use-Cases/agent_chat).\n", + "Please find documentation about this feature [here](https://autogenhub.github.io/autogen/docs/Use-Cases/agent_chat).\n", "\n", "In this notebook, we demonstrate how to pass a cumstomized agent selection method to GroupChat. The customized function looks like this:\n", "\n", @@ -56,7 +56,7 @@ "source": [ "## Set your API Endpoint\n", "\n", - "The [`config_list_from_json`](https://autogen-ai.github.io/autogen/docs/reference/oai/openai_utils#config_list_from_json) function loads a list of configurations from an environment variable or a json file." + "The [`config_list_from_json`](https://autogenhub.github.io/autogen/docs/reference/oai/openai_utils#config_list_from_json) function loads a list of configurations from an environment variable or a json file." ] }, { diff --git a/notebook/agentchat_groupchat_finite_state_machine.ipynb b/notebook/agentchat_groupchat_finite_state_machine.ipynb index 7587b5e6bffe..d4291dd12f59 100644 --- a/notebook/agentchat_groupchat_finite_state_machine.ipynb +++ b/notebook/agentchat_groupchat_finite_state_machine.ipynb @@ -8,7 +8,7 @@ "# FSM - User can input speaker transition constraints\n", "\n", "AutoGen offers conversable agents powered by LLM, tool, or human, which can be used to perform tasks collectively via automated chat. This framework allows tool use and human participation through multi-agent conversation.\n", - "Please find documentation about this feature [here](https://autogen-ai.github.io/autogen/docs/Use-Cases/agent_chat).\n", + "Please find documentation about this feature [here](https://autogenhub.github.io/autogen/docs/Use-Cases/agent_chat).\n", "\n", "This notebook is about using graphs to define the transition paths amongst speakers.\n", "\n", diff --git a/notebook/agentchat_groupchat_research.ipynb b/notebook/agentchat_groupchat_research.ipynb index a5954bdca245..a60b89c3ab15 100644 --- a/notebook/agentchat_groupchat_research.ipynb +++ b/notebook/agentchat_groupchat_research.ipynb @@ -8,7 +8,7 @@ "# Perform Research with Multi-Agent Group Chat\n", "\n", "AutoGen offers conversable agents powered by LLM, tool, or human, which can be used to perform tasks collectively via automated chat. This framework allows tool use and human participation through multi-agent conversation.\n", - "Please find documentation about this feature [here](https://autogen-ai.github.io/autogen/docs/Use-Cases/agent_chat).\n", + "Please find documentation about this feature [here](https://autogenhub.github.io/autogen/docs/Use-Cases/agent_chat).\n", "\n", "## Requirements\n", "\n", @@ -31,7 +31,7 @@ "source": [ "## Set your API Endpoint\n", "\n", - "The [`config_list_from_json`](https://autogen-ai.github.io/autogen/docs/reference/oai/openai_utils#config_list_from_json) function loads a list of configurations from an environment variable or a json file." + "The [`config_list_from_json`](https://autogenhub.github.io/autogen/docs/reference/oai/openai_utils#config_list_from_json) function loads a list of configurations from an environment variable or a json file." ] }, { diff --git a/notebook/agentchat_groupchat_stateflow.ipynb b/notebook/agentchat_groupchat_stateflow.ipynb index 969bbca51096..55749d4cefed 100644 --- a/notebook/agentchat_groupchat_stateflow.ipynb +++ b/notebook/agentchat_groupchat_stateflow.ipynb @@ -29,7 +29,7 @@ "source": [ "## Set your API Endpoint\n", "\n", - "The [`config_list_from_json`](https://autogen-ai.github.io/autogen/docs/reference/oai/openai_utils#config_list_from_json) function loads a list of configurations from an environment variable or a json file." + "The [`config_list_from_json`](https://autogenhub.github.io/autogen/docs/reference/oai/openai_utils#config_list_from_json) function loads a list of configurations from an environment variable or a json file." ] }, { @@ -62,7 +62,7 @@ "## A workflow for research\n", "\n", "
\n", - " \"SF_Example_1\"\n", " \n", "
\n", diff --git a/notebook/agentchat_groupchat_vis.ipynb b/notebook/agentchat_groupchat_vis.ipynb index b97513e0173c..e342da9e5168 100644 --- a/notebook/agentchat_groupchat_vis.ipynb +++ b/notebook/agentchat_groupchat_vis.ipynb @@ -8,7 +8,7 @@ "# Group Chat with Coder and Visualization Critic\n", "\n", "AutoGen offers conversable agents powered by LLM, tool or human, which can be used to perform tasks collectively via automated chat. This framework allows tool use and human participation through multi-agent conversation.\n", - "Please find documentation about this feature [here](https://autogen-ai.github.io/autogen/docs/Use-Cases/agent_chat).\n", + "Please find documentation about this feature [here](https://autogenhub.github.io/autogen/docs/Use-Cases/agent_chat).\n", "\n", "````{=mdx}\n", ":::info Requirements\n", @@ -29,7 +29,7 @@ "source": [ "## Set your API Endpoint\n", "\n", - "The [`config_list_from_json`](https://autogen-ai.github.io/autogen/docs/reference/oai/openai_utils#config_list_from_json) function loads a list of configurations from an environment variable or a json file." + "The [`config_list_from_json`](https://autogenhub.github.io/autogen/docs/reference/oai/openai_utils#config_list_from_json) function loads a list of configurations from an environment variable or a json file." ] }, { diff --git a/notebook/agentchat_human_feedback.ipynb b/notebook/agentchat_human_feedback.ipynb index 5df9d9e724c0..fcf62c2f67eb 100644 --- a/notebook/agentchat_human_feedback.ipynb +++ b/notebook/agentchat_human_feedback.ipynb @@ -12,7 +12,7 @@ "# Auto Generated Agent Chat: Task Solving with Code Generation, Execution, Debugging & Human Feedback\n", "\n", "AutoGen offers conversable agents powered by LLM, tool, or human, which can be used to perform tasks collectively via automated chat. This framework allows tool use and human participation through multi-agent conversation.\n", - "Please find documentation about this feature [here](https://autogen-ai.github.io/autogen/docs/Use-Cases/agent_chat).\n", + "Please find documentation about this feature [here](https://autogenhub.github.io/autogen/docs/Use-Cases/agent_chat).\n", "\n", "In this notebook, we demonstrate how to use `AssistantAgent` and `UserProxyAgent` to solve a challenging math problem with human feedback. Here `AssistantAgent` is an LLM-based agent that can write Python code (in a Python coding block) for a user to execute for a given task. `UserProxyAgent` is an agent which serves as a proxy for a user to execute the code written by `AssistantAgent`. By setting `human_input_mode` properly, the `UserProxyAgent` can also prompt the user for feedback to `AssistantAgent`. For example, when `human_input_mode` is set to \"ALWAYS\", the `UserProxyAgent` will always prompt the user for feedback. When user feedback is provided, the `UserProxyAgent` will directly pass the feedback to `AssistantAgent`. When no user feedback is provided, the `UserProxyAgent` will execute the code written by `AssistantAgent` and return the execution results (success or failure and corresponding outputs) to `AssistantAgent`.\n", "\n", @@ -47,7 +47,7 @@ "source": [ "## Set your API Endpoint\n", "\n", - "The [`config_list_from_json`](https://autogen-ai.github.io/autogen/docs/reference/oai/openai_utils#config_list_from_json) function loads a list of configurations from an environment variable or a json file." + "The [`config_list_from_json`](https://autogenhub.github.io/autogen/docs/reference/oai/openai_utils#config_list_from_json) function loads a list of configurations from an environment variable or a json file." ] }, { diff --git a/notebook/agentchat_inception_function.ipynb b/notebook/agentchat_inception_function.ipynb index a2bd3f4242b7..c011a3c87785 100644 --- a/notebook/agentchat_inception_function.ipynb +++ b/notebook/agentchat_inception_function.ipynb @@ -6,7 +6,7 @@ "source": [ "# Auto Generated Agent Chat: Function Inception\n", "\n", - "AutoGen offers conversable agents powered by LLM, tool or human, which can be used to perform tasks collectively via automated chat. This framework allows tool use and human participation through multi-agent conversation. Please find documentation about this feature [here](https://autogen-ai.github.io/autogen/docs/Use-Cases/agent_chat).\n", + "AutoGen offers conversable agents powered by LLM, tool or human, which can be used to perform tasks collectively via automated chat. This framework allows tool use and human participation through multi-agent conversation. Please find documentation about this feature [here](https://autogenhub.github.io/autogen/docs/Use-Cases/agent_chat).\n", "\n", "In this notebook, we demonstrate how to use `AssistantAgent` and `UserProxyAgent` to give them the ability to auto-extend the list of functions the model may call. Functions need to be registered to `UserProxyAgent`, which will be responsible for executing any function calls made by `AssistantAgent`. The assistant also needs to know the signature of functions that may be called. A special `define_function` function is registered, which registers a new function in `UserProxyAgent` and updates the configuration of the assistant.\n", "\n", diff --git a/notebook/agentchat_langchain.ipynb b/notebook/agentchat_langchain.ipynb index 5253bfbba294..8d6b755df417 100644 --- a/notebook/agentchat_langchain.ipynb +++ b/notebook/agentchat_langchain.ipynb @@ -10,7 +10,7 @@ "source": [ "# Auto Generated Agent Chat: Task Solving with Langchain Provided Tools as Functions\n", "\n", - "AutoGen offers conversable agents powered by LLM, tool, or human, which can be used to perform tasks collectively via automated chat. This framework allows tool use and human participants through multi-agent conversation. Please find documentation about this feature [here](https://autogen-ai.github.io/autogen/docs/Use-Cases/agent_chat).\n", + "AutoGen offers conversable agents powered by LLM, tool, or human, which can be used to perform tasks collectively via automated chat. This framework allows tool use and human participants through multi-agent conversation. Please find documentation about this feature [here](https://autogenhub.github.io/autogen/docs/Use-Cases/agent_chat).\n", "\n", "In this notebook, we demonstrate how to use `AssistantAgent` and `UserProxyAgent` to make function calls with the new feature of OpenAI models (in model version 0613) with a set of Langchain-provided tools and toolkits, to demonstrate how to leverage the 35+ tools available. \n", "A specified prompt and function configs must be passed to `AssistantAgent` to initialize the agent. The corresponding functions must be passed to `UserProxyAgent`, which will execute any function calls made by `AssistantAgent`. Besides this requirement of matching descriptions with functions, we recommend checking the system message in the `AssistantAgent` to ensure the instructions align with the function call descriptions.\n", @@ -49,7 +49,7 @@ "source": [ "## Set your API Endpoint\n", "\n", - "The [`config_list_from_models`](https://autogen-ai.github.io/autogen/docs/reference/oai/openai_utils#config_list_from_models) function tries to create a list of configurations using Azure OpenAI endpoints and OpenAI endpoints for the provided list of models. It assumes the api keys and api bases are stored in the corresponding environment variables or local txt files:\n", + "The [`config_list_from_models`](https://autogenhub.github.io/autogen/docs/reference/oai/openai_utils#config_list_from_models) function tries to create a list of configurations using Azure OpenAI endpoints and OpenAI endpoints for the provided list of models. It assumes the api keys and api bases are stored in the corresponding environment variables or local txt files:\n", "\n", "- OpenAI API key: os.environ[\"OPENAI_API_KEY\"] or `openai_api_key_file=\"key_openai.txt\"`.\n", "- Azure OpenAI API key: os.environ[\"AZURE_OPENAI_API_KEY\"] or `aoai_api_key_file=\"key_aoai.txt\"`. Multiple keys can be stored, one per line.\n", @@ -128,7 +128,7 @@ "]\n", "```\n", "\n", - "You can set the value of config_list in any way you prefer. Please refer to this [notebook](https://github.com/autogen-ai/autogen/blob/main/website/docs/topics/llm_configuration.ipynb) for full code examples of the different methods." + "You can set the value of config_list in any way you prefer. Please refer to this [notebook](https://github.com/autogenhub/autogen/blob/main/website/docs/topics/llm_configuration.ipynb) for full code examples of the different methods." ] }, { diff --git a/notebook/agentchat_microsoft_fabric.ipynb b/notebook/agentchat_microsoft_fabric.ipynb index 20cf771b440e..1a2b9573866e 100644 --- a/notebook/agentchat_microsoft_fabric.ipynb +++ b/notebook/agentchat_microsoft_fabric.ipynb @@ -13,8 +13,8 @@ "source": [ "## Use AutoGen in Microsoft Fabric\n", "\n", - "[AutoGen](https://github.com/autogen-ai/autogen) offers conversable LLM agents, which can be used to solve various tasks with human or automatic feedback, including tasks that require using tools via code.\n", - "Please find documentation about this feature [here](https://autogen-ai.github.io/autogen/docs/Use-Cases/agent_chat).\n", + "[AutoGen](https://github.com/autogenhub/autogen) offers conversable LLM agents, which can be used to solve various tasks with human or automatic feedback, including tasks that require using tools via code.\n", + "Please find documentation about this feature [here](https://autogenhub.github.io/autogen/docs/Use-Cases/agent_chat).\n", "\n", "[Microsoft Fabric](https://learn.microsoft.com/en-us/fabric/get-started/microsoft-fabric-overview) is an all-in-one analytics solution for enterprises that covers everything from data movement to data science, Real-Time Analytics, and business intelligence. It offers a comprehensive suite of services, including data lake, data engineering, and data integration, all in one place. Its pre-built AI models include GPT-x models such as `gpt-4o`, `gpt-4-turbo`, `gpt-4`, `gpt-4-8k`, `gpt-4-32k`, `gpt-35-turbo`, `gpt-35-turbo-16k` and `gpt-35-turbo-instruct`, etc. It's important to note that the Azure Open AI service is not supported on trial SKUs and only paid SKUs (F64 or higher, or P1 or higher) are supported.\n", "\n", @@ -282,7 +282,7 @@ "http_client = get_openai_httpx_sync_client() # http_client is needed for openai>1\n", "http_client.__deepcopy__ = types.MethodType(\n", " lambda self, memo: self, http_client\n", - ") # https://autogen-ai.github.io/autogen/docs/topics/llm_configuration#adding-http-client-in-llm_config-for-proxy\\n\",\n", + ") # https://autogenhub.github.io/autogen/docs/topics/llm_configuration#adding-http-client-in-llm_config-for-proxy\\n\",\n", "\n", "config_list = [\n", " {\n", @@ -447,7 +447,7 @@ "http_client = get_openai_httpx_sync_client() # http_client is needed for openai>1\n", "http_client.__deepcopy__ = types.MethodType(\n", " lambda self, memo: self, http_client\n", - ") # https://autogen-ai.github.io/autogen/docs/topics/llm_configuration#adding-http-client-in-llm_config-for-proxy\n", + ") # https://autogenhub.github.io/autogen/docs/topics/llm_configuration#adding-http-client-in-llm_config-for-proxy\n", "\n", "config_list = [\n", " {\n", @@ -708,7 +708,7 @@ "### Example 2\n", "How to use `AssistantAgent` and `RetrieveUserProxyAgent` to do Retrieval Augmented Generation (RAG) for QA and Code Generation.\n", "\n", - "Check out this [blog](https://autogen-ai.github.io/autogen/blog/2023/10/18/RetrieveChat) for more details." + "Check out this [blog](https://autogenhub.github.io/autogen/blog/2023/10/18/RetrieveChat) for more details." ] }, { @@ -3229,7 +3229,7 @@ "### Example 3\n", "How to use `MultimodalConversableAgent` to chat with images.\n", "\n", - "Check out this [blog](https://autogen-ai.github.io/autogen/blog/2023/11/06/LMM-Agent) for more details." + "Check out this [blog](https://autogenhub.github.io/autogen/blog/2023/11/06/LMM-Agent) for more details." ] }, { diff --git a/notebook/agentchat_oai_assistant_groupchat.ipynb b/notebook/agentchat_oai_assistant_groupchat.ipynb index a110f788929d..4bd70fc4b846 100644 --- a/notebook/agentchat_oai_assistant_groupchat.ipynb +++ b/notebook/agentchat_oai_assistant_groupchat.ipynb @@ -7,7 +7,7 @@ "# Auto Generated Agent Chat: Group Chat with GPTAssistantAgent\n", "\n", "AutoGen offers conversable agents powered by LLM, tool or human, which can be used to perform tasks collectively via automated chat. This framework allows tool use and human participation through multi-agent conversation.\n", - "Please find documentation about this feature [here](https://autogen-ai.github.io/autogen/docs/Use-Cases/agent_chat).\n", + "Please find documentation about this feature [here](https://autogenhub.github.io/autogen/docs/Use-Cases/agent_chat).\n", "\n", "In this notebook, we demonstrate how to get multiple `GPTAssistantAgent` converse through group chat.\n", "\n", @@ -32,7 +32,7 @@ "source": [ "## Set your API Endpoint\n", "\n", - "The [`config_list_from_json`](https://autogen-ai.github.io/autogen/docs/reference/oai/openai_utils#config_list_from_json) function loads a list of configurations from an environment variable or a json file." + "The [`config_list_from_json`](https://autogenhub.github.io/autogen/docs/reference/oai/openai_utils#config_list_from_json) function loads a list of configurations from an environment variable or a json file." ] }, { @@ -139,12 +139,12 @@ "text": [ "\u001b[33mUser_proxy\u001b[0m (to chat_manager):\n", "\n", - "Get the number of issues and pull requests for the repository 'autogen-ai/autogen' over the past three weeks and offer analyzes to the data. You should print the data in csv format grouped by weeks.\n", + "Get the number of issues and pull requests for the repository 'autogenhub/autogen' over the past three weeks and offer analyzes to the data. You should print the data in csv format grouped by weeks.\n", "\n", "--------------------------------------------------------------------------------\n", "\u001b[33mCoder\u001b[0m (to chat_manager):\n", "\n", - "To gather the number of issues and pull requests for the repository 'autogen-ai/autogen' over the past three weeks and to offer an analysis of the data, we'll need to modify the previous script.\n", + "To gather the number of issues and pull requests for the repository 'autogenhub/autogen' over the past three weeks and to offer an analysis of the data, we'll need to modify the previous script.\n", "\n", "We will enhance the script to gather data from the past three weeks, separated by each week, and then output the data in CSV format, grouped by the week during which the issues and pull requests were created. This will require us to make multiple API calls for each week and aggregate the data accordingly.\n", "\n", @@ -467,7 +467,7 @@ "source": [ "user_proxy.initiate_chat(\n", " manager,\n", - " message=\"Get the number of issues and pull requests for the repository 'autogen-ai/autogen' over the past three weeks and offer analysis to the data. You should print the data in csv format grouped by weeks.\",\n", + " message=\"Get the number of issues and pull requests for the repository 'autogenhub/autogen' over the past three weeks and offer analysis to the data. You should print the data in csv format grouped by weeks.\",\n", ")\n", "# type exit to terminate the chat" ] diff --git a/notebook/agentchat_oai_assistant_retrieval.ipynb b/notebook/agentchat_oai_assistant_retrieval.ipynb index 2a050ba7fc0a..594bda97fa59 100644 --- a/notebook/agentchat_oai_assistant_retrieval.ipynb +++ b/notebook/agentchat_oai_assistant_retrieval.ipynb @@ -6,7 +6,7 @@ "source": [ "# RAG OpenAI Assistants in AutoGen\n", "\n", - "This notebook shows an example of the [`GPTAssistantAgent`](https://github.com/autogen-ai/autogen/blob/main/autogen/agentchat/contrib/gpt_assistant_agent.py) with retrieval augmented generation. `GPTAssistantAgent` is an experimental AutoGen agent class that leverages the [OpenAI Assistant API](https://platform.openai.com/docs/assistants/overview) for conversational capabilities, working with\n", + "This notebook shows an example of the [`GPTAssistantAgent`](https://github.com/autogenhub/autogen/blob/main/autogen/agentchat/contrib/gpt_assistant_agent.py) with retrieval augmented generation. `GPTAssistantAgent` is an experimental AutoGen agent class that leverages the [OpenAI Assistant API](https://platform.openai.com/docs/assistants/overview) for conversational capabilities, working with\n", "`UserProxyAgent` in AutoGen." ] }, diff --git a/notebook/agentchat_oai_assistant_twoagents_basic.ipynb b/notebook/agentchat_oai_assistant_twoagents_basic.ipynb index 1b24fa12b9dc..6bb1d51ca10c 100644 --- a/notebook/agentchat_oai_assistant_twoagents_basic.ipynb +++ b/notebook/agentchat_oai_assistant_twoagents_basic.ipynb @@ -6,7 +6,7 @@ "source": [ "# OpenAI Assistants in AutoGen\n", "\n", - "This notebook shows a very basic example of the [`GPTAssistantAgent`](https://github.com/autogen-ai/autogen/blob/main/autogen/agentchat/contrib/gpt_assistant_agent.py), which is an experimental AutoGen agent class that leverages the [OpenAI Assistant API](https://platform.openai.com/docs/assistants/overview) for conversational capabilities, working with\n", + "This notebook shows a very basic example of the [`GPTAssistantAgent`](https://github.com/autogenhub/autogen/blob/main/autogen/agentchat/contrib/gpt_assistant_agent.py), which is an experimental AutoGen agent class that leverages the [OpenAI Assistant API](https://platform.openai.com/docs/assistants/overview) for conversational capabilities, working with\n", "`UserProxyAgent` in AutoGen." ] }, diff --git a/notebook/agentchat_oai_code_interpreter.ipynb b/notebook/agentchat_oai_code_interpreter.ipynb index 351b45d464c8..c5200caeebc8 100644 --- a/notebook/agentchat_oai_code_interpreter.ipynb +++ b/notebook/agentchat_oai_code_interpreter.ipynb @@ -28,7 +28,7 @@ "source": [ "## Set your API Endpoint\n", "\n", - "The [`config_list_from_json`](https://autogen-ai.github.io/autogen/docs/reference/oai/openai_utils#config_list_from_json) function loads a list of configurations from an environment variable or a json file." + "The [`config_list_from_json`](https://autogenhub.github.io/autogen/docs/reference/oai/openai_utils#config_list_from_json) function loads a list of configurations from an environment variable or a json file." ] }, { diff --git a/notebook/agentchat_planning.ipynb b/notebook/agentchat_planning.ipynb index 6dc2983ee56d..bf337ef9c63f 100644 --- a/notebook/agentchat_planning.ipynb +++ b/notebook/agentchat_planning.ipynb @@ -12,7 +12,7 @@ "# Auto Generated Agent Chat: Collaborative Task Solving with Coding and Planning Agent\n", "\n", "AutoGen offers conversable agents powered by LLM, tool, or human, which can be used to perform tasks collectively via automated chat. This framework allows tool use and human participation through multi-agent conversation.\n", - "Please find documentation about this feature [here](https://autogen-ai.github.io/autogen/docs/Use-Cases/agent_chat).\n", + "Please find documentation about this feature [here](https://autogenhub.github.io/autogen/docs/Use-Cases/agent_chat).\n", "\n", "In this notebook, we demonstrate how to use multiple agents to work together and accomplish a task that requires finding info from the web and coding. `AssistantAgent` is an LLM-based agent that can write and debug Python code (in a Python coding block) for a user to execute for a given task. `UserProxyAgent` is an agent which serves as a proxy for a user to execute the code written by `AssistantAgent`. We further create a planning agent for the assistant agent to consult. The planning agent is a variation of the LLM-based `AssistantAgent` with a different system message.\n", "\n", @@ -47,7 +47,7 @@ "source": [ "## Set your API Endpoint\n", "\n", - "The [`config_list_from_json`](https://autogen-ai.github.io/autogen/docs/reference/oai/openai_utils#config_list_from_json) function loads a list of configurations from an environment variable or a json file. It first looks for an environment variable with a specified name. The value of the environment variable needs to be a valid json string. If that variable is not found, it looks for a json file with the same name. It filters the configs by filter_dict.\n", + "The [`config_list_from_json`](https://autogenhub.github.io/autogen/docs/reference/oai/openai_utils#config_list_from_json) function loads a list of configurations from an environment variable or a json file. It first looks for an environment variable with a specified name. The value of the environment variable needs to be a valid json string. If that variable is not found, it looks for a json file with the same name. It filters the configs by filter_dict.\n", "\n", "It's OK to have only the OpenAI API key, or only the Azure OpenAI API key + base.\n" ] @@ -97,7 +97,7 @@ "]\n", "```\n", "\n", - "You can set the value of config_list in any way you prefer. Please refer to this [notebook](https://github.com/autogen-ai/autogen/blob/main/notebook/oai_openai_utils.ipynb) for full code examples of the different methods.\n", + "You can set the value of config_list in any way you prefer. Please refer to this [notebook](https://github.com/autogenhub/autogen/blob/main/notebook/oai_openai_utils.ipynb) for full code examples of the different methods.\n", "\n", "## Construct Agents\n", "\n", diff --git a/notebook/agentchat_stream.ipynb b/notebook/agentchat_stream.ipynb index 09a2819c0df3..45701fc9085f 100644 --- a/notebook/agentchat_stream.ipynb +++ b/notebook/agentchat_stream.ipynb @@ -12,7 +12,7 @@ "# Interactive LLM Agent Dealing with Data Stream\n", "\n", "AutoGen offers conversable agents powered by LLM, tool, or human, which can be used to perform tasks collectively via automated chat. This framework allows tool use and human participation through multi-agent conversation.\n", - "Please find documentation about this feature [here](https://autogen-ai.github.io/autogen/docs/Use-Cases/agent_chat).\n", + "Please find documentation about this feature [here](https://autogenhub.github.io/autogen/docs/Use-Cases/agent_chat).\n", "\n", "In this notebook, we demonstrate how to use customized agents to continuously acquire news from the web and ask for investment suggestions.\n", "\n", @@ -47,7 +47,7 @@ "source": [ "## Set your API Endpoint\n", "\n", - "The [`config_list_from_json`](https://autogen-ai.github.io/autogen/docs/reference/oai/openai_utils#config_list_from_json) function loads a list of configurations from an environment variable or a json file.\n" + "The [`config_list_from_json`](https://autogenhub.github.io/autogen/docs/reference/oai/openai_utils#config_list_from_json) function loads a list of configurations from an environment variable or a json file.\n" ] }, { @@ -94,7 +94,7 @@ "]\n", "```\n", "\n", - "You can set the value of config_list in any way you prefer. Please refer to this [notebook](https://github.com/autogen-ai/autogen/blob/main/website/docs/topics/llm_configuration.ipynb) for full code examples of the different methods." + "You can set the value of config_list in any way you prefer. Please refer to this [notebook](https://github.com/autogenhub/autogen/blob/main/website/docs/topics/llm_configuration.ipynb) for full code examples of the different methods." ] }, { diff --git a/notebook/agentchat_surfer.ipynb b/notebook/agentchat_surfer.ipynb index a69838d00d29..8bb75bc195fc 100644 --- a/notebook/agentchat_surfer.ipynb +++ b/notebook/agentchat_surfer.ipynb @@ -35,7 +35,7 @@ "source": [ "## Set your API Endpoint\n", "\n", - "The [`config_list_from_json`](https://autogen-ai.github.io/autogen/docs/reference/oai/openai_utils#config_list_from_json) function loads a list of configurations from an environment variable or a json file.\n", + "The [`config_list_from_json`](https://autogenhub.github.io/autogen/docs/reference/oai/openai_utils#config_list_from_json) function loads a list of configurations from an environment variable or a json file.\n", "\n", "It first looks for environment variable \"OAI_CONFIG_LIST\" which needs to be a valid json string. If that variable is not found, it then looks for a json file named \"OAI_CONFIG_LIST\". It filters the configs by models (you can filter by other keys as well).\n", "\n", diff --git a/notebook/agentchat_teachability.ipynb b/notebook/agentchat_teachability.ipynb index c531ef3457da..38139a3167cc 100644 --- a/notebook/agentchat_teachability.ipynb +++ b/notebook/agentchat_teachability.ipynb @@ -13,7 +13,7 @@ "\n", "In making decisions about memo storage and retrieval, `Teachability` calls an instance of `TextAnalyzerAgent` to analyze pieces of text in several different ways. This adds extra LLM calls involving a relatively small number of tokens. These calls can add a few seconds to the time a user waits for a response.\n", "\n", - "This notebook demonstrates how `Teachability` can be added to an agent so that it can learn facts, preferences, and skills from users. To chat with a teachable agent yourself, run [chat_with_teachable_agent.py](https://github.com/autogen-ai/autogen/blob/main/test/agentchat/contrib/capabilities/chat_with_teachable_agent.py).\n", + "This notebook demonstrates how `Teachability` can be added to an agent so that it can learn facts, preferences, and skills from users. To chat with a teachable agent yourself, run [chat_with_teachable_agent.py](https://github.com/autogenhub/autogen/blob/main/test/agentchat/contrib/capabilities/chat_with_teachable_agent.py).\n", "\n", "## Requirements\n", "\n", @@ -37,7 +37,7 @@ "source": [ "## Set your API Endpoint\n", "\n", - "The [`config_list_from_json`](https://autogen-ai.github.io/autogen/docs/reference/oai/openai_utils#config_list_from_json) function loads a list of configurations from an environment variable or a json file." + "The [`config_list_from_json`](https://autogenhub.github.io/autogen/docs/reference/oai/openai_utils#config_list_from_json) function loads a list of configurations from an environment variable or a json file." ] }, { diff --git a/notebook/agentchat_teachable_oai_assistants.ipynb b/notebook/agentchat_teachable_oai_assistants.ipynb index 8181c5a46026..67e2bede4ce6 100644 --- a/notebook/agentchat_teachable_oai_assistants.ipynb +++ b/notebook/agentchat_teachable_oai_assistants.ipynb @@ -14,7 +14,7 @@ "In making decisions about memo storage and retrieval, `Teachability` calls an instance of `TextAnalyzerAgent` to analyze pieces of text in several different ways. This adds extra LLM calls involving a relatively small number of tokens. These calls can add a few seconds to the time a user waits for a response.\n", "\n", "This notebook demonstrates how `Teachability` can be added to instances of `GPTAssistantAgent`\n", - "so that they can learn facts, preferences, and skills from users. As explained [here](https://autogen-ai.github.io/autogen/docs/topics/openai-assistant/gpt_assistant_agent), each instance of `GPTAssistantAgent` wraps an OpenAI Assistant that can be given a set of tools including functions, code interpreter, and retrieval. Assistants with these tools are demonstrated in separate standalone sections below, which can be run independently.\n", + "so that they can learn facts, preferences, and skills from users. As explained [here](https://autogenhub.github.io/autogen/docs/topics/openai-assistant/gpt_assistant_agent), each instance of `GPTAssistantAgent` wraps an OpenAI Assistant that can be given a set of tools including functions, code interpreter, and retrieval. Assistants with these tools are demonstrated in separate standalone sections below, which can be run independently.\n", "\n", "## Requirements\n", "\n", @@ -41,7 +41,7 @@ "source": [ "## Set your API Endpoint\n", "\n", - "The [`config_list_from_json`](https://autogen-ai.github.io/autogen/docs/reference/oai/openai_utils#config_list_from_json) function loads a list of configurations from an environment variable or a json file." + "The [`config_list_from_json`](https://autogenhub.github.io/autogen/docs/reference/oai/openai_utils#config_list_from_json) function loads a list of configurations from an environment variable or a json file." ] }, { diff --git a/notebook/agentchat_teaching.ipynb b/notebook/agentchat_teaching.ipynb index fe7e5a69a0c0..319c5403496c 100644 --- a/notebook/agentchat_teaching.ipynb +++ b/notebook/agentchat_teaching.ipynb @@ -10,9 +10,9 @@ "TODO: Implement advanced teachability based on this example.\n", "\n", "AutoGen offers conversable agents powered by LLMs, tools, or humans, which can be used to perform tasks collectively via automated chat. This framework makes it easy to build many advanced applications of LLMs.\n", - "Please find documentation about this feature [here](https://autogen-ai.github.io/autogen/docs/Use-Cases/agent_chat).\n", + "Please find documentation about this feature [here](https://autogenhub.github.io/autogen/docs/Use-Cases/agent_chat).\n", "\n", - "This notebook demonstrates how AutoGen enables a user to teach AI new skills via natural agent interactions, without requiring knowledge of programming language. It is modified based on https://github.com/autogen-ai/FLAML/blob/evaluation/notebook/research_paper/teaching.ipynb and https://github.com/autogen-ai/FLAML/blob/evaluation/notebook/research_paper/teaching_recipe_reuse.ipynb.\n", + "This notebook demonstrates how AutoGen enables a user to teach AI new skills via natural agent interactions, without requiring knowledge of programming language. It is modified based on https://github.com/autogenhub/FLAML/blob/evaluation/notebook/research_paper/teaching.ipynb and https://github.com/autogenhub/FLAML/blob/evaluation/notebook/research_paper/teaching_recipe_reuse.ipynb.\n", "\n", "## Requirements\n", "\n", diff --git a/notebook/agentchat_two_users.ipynb b/notebook/agentchat_two_users.ipynb index cd0b2bbcf2dc..1ba6a627668e 100644 --- a/notebook/agentchat_two_users.ipynb +++ b/notebook/agentchat_two_users.ipynb @@ -11,7 +11,7 @@ "source": [ "# Auto Generated Agent Chat: Collaborative Task Solving with Multiple Agents and Human Users\n", "\n", - "AutoGen offers conversable agents powered by LLM, tool, or human, which can be used to perform tasks collectively via automated chat. This framework allows tool use and human participation through multi-agent conversation. Please find documentation about this feature [here](https://autogen-ai.github.io/autogen/docs/Use-Cases/agent_chat).\n", + "AutoGen offers conversable agents powered by LLM, tool, or human, which can be used to perform tasks collectively via automated chat. This framework allows tool use and human participation through multi-agent conversation. Please find documentation about this feature [here](https://autogenhub.github.io/autogen/docs/Use-Cases/agent_chat).\n", "\n", "In this notebook, we demonstrate an application involving multiple agents and human users to work together and accomplish a task. `AssistantAgent` is an LLM-based agent that can write Python code (in a Python coding block) for a user to execute for a given task. `UserProxyAgent` is an agent which serves as a proxy for a user to execute the code written by `AssistantAgent`. We create multiple `UserProxyAgent` instances that can represent different human users.\n", "\n", @@ -46,7 +46,7 @@ "source": [ "## Set your API Endpoint\n", "\n", - "The [`config_list_from_json`](https://autogen-ai.github.io/autogen/docs/reference/oai/openai_utils#config_list_from_json) function loads a list of configurations from an environment variable or a json file.\n", + "The [`config_list_from_json`](https://autogenhub.github.io/autogen/docs/reference/oai/openai_utils#config_list_from_json) function loads a list of configurations from an environment variable or a json file.\n", "\n", "It first looks for an environment variable of a specified name (\"OAI_CONFIG_LIST\" in this example), which needs to be a valid json string. If that variable is not found, it looks for a json file with the same name. It filters the configs by models (you can filter by other keys as well).\n", "\n", @@ -74,7 +74,7 @@ "]\n", "```\n", "\n", - "You can set the value of config_list in any way you prefer. Please refer to this [notebook](https://github.com/autogen-ai/autogen/blob/main/website/docs/topics/llm_configuration.ipynb) for full code examples of the different methods." + "You can set the value of config_list in any way you prefer. Please refer to this [notebook](https://github.com/autogenhub/autogen/blob/main/website/docs/topics/llm_configuration.ipynb) for full code examples of the different methods." ] }, { diff --git a/notebook/agentchat_video_transcript_translate_with_whisper.ipynb b/notebook/agentchat_video_transcript_translate_with_whisper.ipynb index 2fdf07542acd..a3171978d8e1 100644 --- a/notebook/agentchat_video_transcript_translate_with_whisper.ipynb +++ b/notebook/agentchat_video_transcript_translate_with_whisper.ipynb @@ -8,7 +8,7 @@ "# Translating Video audio using Whisper and GPT-3.5-turbo\n", "\n", "In this notebook, we demonstrate how to use whisper and GPT-3.5-turbo with `AssistantAgent` and `UserProxyAgent` to recognize and translate\n", - "the speech sound from a video file and add the timestamp like a subtitle file based on [agentchat_function_call.ipynb](https://github.com/autogen-ai/autogen/blob/main/notebook/agentchat_function_call.ipynb)\n" + "the speech sound from a video file and add the timestamp like a subtitle file based on [agentchat_function_call.ipynb](https://github.com/autogenhub/autogen/blob/main/notebook/agentchat_function_call.ipynb)\n" ] }, { diff --git a/notebook/agentchat_web_info.ipynb b/notebook/agentchat_web_info.ipynb index 488024b3b291..4cfac9cfa231 100644 --- a/notebook/agentchat_web_info.ipynb +++ b/notebook/agentchat_web_info.ipynb @@ -12,7 +12,7 @@ "# Auto Generated Agent Chat: Solving Tasks Requiring Web Info\n", "\n", "AutoGen offers conversable agents powered by LLM, tool, or human, which can be used to perform tasks collectively via automated chat. This framework allows tool use and human participation through multi-agent conversation.\n", - "Please find documentation about this feature [here](https://autogen-ai.github.io/autogen/docs/Use-Cases/agent_chat).\n", + "Please find documentation about this feature [here](https://autogenhub.github.io/autogen/docs/Use-Cases/agent_chat).\n", "\n", "In this notebook, we demonstrate how to use `AssistantAgent` and `UserProxyAgent` to perform tasks which require acquiring info from the web:\n", "* discuss a paper based on its URL.\n", @@ -51,7 +51,7 @@ "source": [ "## Set your API Endpoint\n", "\n", - "The [`config_list_from_json`](https://autogen-ai.github.io/autogen/docs/reference/oai/openai_utils#config_list_from_json) function loads a list of configurations from an environment variable or a json file.\n" + "The [`config_list_from_json`](https://autogenhub.github.io/autogen/docs/reference/oai/openai_utils#config_list_from_json) function loads a list of configurations from an environment variable or a json file.\n" ] }, { @@ -108,7 +108,7 @@ "]\n", "```\n", "\n", - "You can set the value of config_list in any way you prefer. Please refer to this [notebook](https://github.com/autogen-ai/autogen/blob/main/notebook/oai_openai_utils.ipynb) for full code examples of the different methods." + "You can set the value of config_list in any way you prefer. Please refer to this [notebook](https://github.com/autogenhub/autogen/blob/main/notebook/oai_openai_utils.ipynb) for full code examples of the different methods." ] }, { diff --git a/notebook/agentchat_websockets.ipynb b/notebook/agentchat_websockets.ipynb index aad1d0f72be9..10bed59a14ac 100644 --- a/notebook/agentchat_websockets.ipynb +++ b/notebook/agentchat_websockets.ipynb @@ -8,16 +8,16 @@ "source": [ "# Websockets: Streaming input and output using websockets\n", "\n", - "This notebook demonstrates how to use the [`IOStream`](https://autogen-ai.github.io/autogen/docs/reference/io/base/IOStream) class to stream both input and output using websockets. The use of websockets allows you to build web clients that are more responsive than the one using web methods. The main difference is that the webosockets allows you to push data while you need to poll the server for new response using web mothods.\n", + "This notebook demonstrates how to use the [`IOStream`](https://autogenhub.github.io/autogen/docs/reference/io/base/IOStream) class to stream both input and output using websockets. The use of websockets allows you to build web clients that are more responsive than the one using web methods. The main difference is that the webosockets allows you to push data while you need to poll the server for new response using web mothods.\n", "\n", "\n", - "In this guide, we explore the capabilities of the [`IOStream`](https://autogen-ai.github.io/autogen/docs/reference/io/base/IOStream) class. It is specifically designed to enhance the development of clients such as web clients which use websockets for streaming both input and output. The [`IOStream`](https://autogen-ai.github.io/autogen/docs/reference/io/base/IOStream) stands out by enabling a more dynamic and interactive user experience for web applications.\n", + "In this guide, we explore the capabilities of the [`IOStream`](https://autogenhub.github.io/autogen/docs/reference/io/base/IOStream) class. It is specifically designed to enhance the development of clients such as web clients which use websockets for streaming both input and output. The [`IOStream`](https://autogenhub.github.io/autogen/docs/reference/io/base/IOStream) stands out by enabling a more dynamic and interactive user experience for web applications.\n", "\n", "Websockets technology is at the core of this functionality, offering a significant advancement over traditional web methods by allowing data to be \"pushed\" to the client in real-time. This is a departure from the conventional approach where clients must repeatedly \"poll\" the server to check for any new responses. By employing the underlining [websockets](https://websockets.readthedocs.io/) library, the IOStream class facilitates a continuous, two-way communication channel between the server and client. This ensures that updates are received instantly, without the need for constant polling, thereby making web clients more efficient and responsive.\n", "\n", - "The real power of websockets, leveraged through the [`IOStream`](https://autogen-ai.github.io/autogen/docs/reference/io/base/IOStream) class, lies in its ability to create highly responsive web clients. This responsiveness is critical for applications requiring real-time data updates such as chat applications. By integrating the [`IOStream`](https://autogen-ai.github.io/autogen/docs/reference/io/base/IOStream) class into your web application, you not only enhance user experience through immediate data transmission but also reduce the load on your server by eliminating unnecessary polling.\n", + "The real power of websockets, leveraged through the [`IOStream`](https://autogenhub.github.io/autogen/docs/reference/io/base/IOStream) class, lies in its ability to create highly responsive web clients. This responsiveness is critical for applications requiring real-time data updates such as chat applications. By integrating the [`IOStream`](https://autogenhub.github.io/autogen/docs/reference/io/base/IOStream) class into your web application, you not only enhance user experience through immediate data transmission but also reduce the load on your server by eliminating unnecessary polling.\n", "\n", - "In essence, the transition to using websockets through the [`IOStream`](https://autogen-ai.github.io/autogen/docs/reference/io/base/IOStream) class marks a significant enhancement in web client development. This approach not only streamlines the data exchange process between clients and servers but also opens up new possibilities for creating more interactive and engaging web applications. By following this guide, developers can harness the full potential of websockets and the [`IOStream`](https://autogen-ai.github.io/autogen/docs/reference/io/base/IOStream) class to push the boundaries of what is possible with web client responsiveness and interactivity.\n", + "In essence, the transition to using websockets through the [`IOStream`](https://autogenhub.github.io/autogen/docs/reference/io/base/IOStream) class marks a significant enhancement in web client development. This approach not only streamlines the data exchange process between clients and servers but also opens up new possibilities for creating more interactive and engaging web applications. By following this guide, developers can harness the full potential of websockets and the [`IOStream`](https://autogenhub.github.io/autogen/docs/reference/io/base/IOStream) class to push the boundaries of what is possible with web client responsiveness and interactivity.\n", "\n", "## Requirements\n", "\n", @@ -42,7 +42,7 @@ "source": [ "## Set your API Endpoint\n", "\n", - "The [`config_list_from_json`](https://autogen-ai.github.io/autogen/docs/reference/oai/openai_utils#config_list_from_json) function loads a list of configurations from an environment variable or a json file." + "The [`config_list_from_json`](https://autogenhub.github.io/autogen/docs/reference/oai/openai_utils#config_list_from_json) function loads a list of configurations from an environment variable or a json file." ] }, { @@ -92,7 +92,7 @@ "An `on_connect` function is a crucial part of applications that utilize websockets, acting as an event handler that is called whenever a new client connection is established. This function is designed to initiate any necessary setup, communication protocols, or data exchange procedures specific to the newly connected client. Essentially, it lays the groundwork for the interactive session that follows, configuring how the server and the client will communicate and what initial actions are to be taken once a connection is made. Now, let's delve into the details of how to define this function, especially in the context of using the AutoGen framework with websockets.\n", "\n", "\n", - "Upon a client's connection to the websocket server, the server automatically initiates a new instance of the [`IOWebsockets`](https://autogen-ai.github.io/autogen/docs/reference/io/websockets/IOWebsockets) class. This instance is crucial for managing the data flow between the server and the client. The `on_connect` function leverages this instance to set up the communication protocol, define interaction rules, and initiate any preliminary data exchanges or configurations required for the client-server interaction to proceed smoothly.\n" + "Upon a client's connection to the websocket server, the server automatically initiates a new instance of the [`IOWebsockets`](https://autogenhub.github.io/autogen/docs/reference/io/websockets/IOWebsockets) class. This instance is crucial for managing the data flow between the server and the client. The `on_connect` function leverages this instance to set up the communication protocol, define interaction rules, and initiate any preliminary data exchanges or configurations required for the client-server interaction to proceed smoothly.\n" ] }, { diff --git a/notebook/agenteval_cq_math.ipynb b/notebook/agenteval_cq_math.ipynb index d13eec50be57..152d243961d0 100644 --- a/notebook/agenteval_cq_math.ipynb +++ b/notebook/agenteval_cq_math.ipynb @@ -15,9 +15,9 @@ "\n", "- `quantify_criteria`: This function quantifies the performance of any sample task based on the criteria generated in the `generate_criteria` step in the following way: $(c_1=a_1, \\dots, c_n=a_n)$\n", "\n", - "![AgentEval](https://media.githubusercontent.com/media/autogen-ai/autogen/main/website/blog/2023-11-20-AgentEval/img/agenteval-CQ.png)\n", + "![AgentEval](https://media.githubusercontent.com/media/autogenhub/autogen/main/website/blog/2023-11-20-AgentEval/img/agenteval-CQ.png)\n", "\n", - "For more detailed explanations, please refer to the accompanying [blog post](https://autogen-ai.github.io/autogen/blog/2023/11/20/AgentEval)\n", + "For more detailed explanations, please refer to the accompanying [blog post](https://autogenhub.github.io/autogen/blog/2023/11/20/AgentEval)\n", "\n", "## Requirements\n", "\n", diff --git a/notebook/autobuild_basic.ipynb b/notebook/autobuild_basic.ipynb index 1420efff709c..249066951d91 100644 --- a/notebook/autobuild_basic.ipynb +++ b/notebook/autobuild_basic.ipynb @@ -9,10 +9,10 @@ "source": [ "# AutoBuild\n", "By: [Linxin Song](https://linxins97.github.io/), [Jieyu Zhang](https://jieyuz2.github.io/)\n", - "Reference: [Agent AutoBuild](https://autogen-ai.github.io/autogen/blog/2023/11/26/Agent-AutoBuild/)\n", + "Reference: [Agent AutoBuild](https://autogenhub.github.io/autogen/blog/2023/11/26/Agent-AutoBuild/)\n", "\n", "AutoGen offers conversable agents powered by LLM, tool, or human, which can be used to perform tasks collectively via automated chat. This framework allows tool use and human participation through multi-agent conversation.\n", - "Please find documentation about this feature [here](https://autogen-ai.github.io/autogen/docs/Use-Cases/agent_chat).\n", + "Please find documentation about this feature [here](https://autogenhub.github.io/autogen/docs/Use-Cases/agent_chat).\n", "\n", "In this notebook, we introduce a new class, `AgentBuilder`, to help user build an automatic task solving process powered by multi-agent system. Specifically, in `build()`, we prompt a LLM to create multiple participant agent and initialize a group chat, and specify whether this task need programming to solve. AgentBuilder also support open-source LLMs by [vLLM](https://docs.vllm.ai/en/latest/index.html) and [Fastchat](https://github.com/lm-sys/FastChat). Check the supported model list [here](https://docs.vllm.ai/en/latest/models/supported_models.html)." ] diff --git a/notebook/autogen_uniformed_api_calling.ipynb b/notebook/autogen_uniformed_api_calling.ipynb index 0ae7fd9da529..f356e0d3f2a7 100644 --- a/notebook/autogen_uniformed_api_calling.ipynb +++ b/notebook/autogen_uniformed_api_calling.ipynb @@ -7,7 +7,7 @@ "# A Uniform interface to call different LLMs\n", "\n", "Autogen provides a uniform interface for API calls to different LLMs, and creating LLM agents from them.\n", - "Through setting up a configuration file, you can easily switch between different LLMs by just changing the model name, while enjoying all the [enhanced features](https://autogen-ai.github.io/autogen/docs/topics/llm-caching) such as [caching](https://autogen-ai.github.io/autogen/docs/Use-Cases/enhanced_inference/#usage-summary) and [cost calculation](https://autogen-ai.github.io/autogen/docs/Use-Cases/enhanced_inference/#usage-summary)!\n", + "Through setting up a configuration file, you can easily switch between different LLMs by just changing the model name, while enjoying all the [enhanced features](https://autogenhub.github.io/autogen/docs/topics/llm-caching) such as [caching](https://autogenhub.github.io/autogen/docs/Use-Cases/enhanced_inference/#usage-summary) and [cost calculation](https://autogenhub.github.io/autogen/docs/Use-Cases/enhanced_inference/#usage-summary)!\n", "\n", "In this notebook, we will show you how to use AutoGen to call different LLMs and create LLM agents from them.\n", "\n", @@ -22,7 +22,7 @@ "\n", "... and more to come!\n", "\n", - "You can also [plug in your local deployed LLM](https://autogen-ai.github.io/autogen/blog/2024/01/26/Custom-Models) into AutoGen if needed." + "You can also [plug in your local deployed LLM](https://autogenhub.github.io/autogen/blog/2024/01/26/Custom-Models) into AutoGen if needed." ] }, { diff --git a/notebook/config_loader_utility_functions.ipynb b/notebook/config_loader_utility_functions.ipynb index b6b31345fa22..cbb51b3aa5ce 100644 --- a/notebook/config_loader_utility_functions.ipynb +++ b/notebook/config_loader_utility_functions.ipynb @@ -6,7 +6,7 @@ "source": [ "# Config loader utility functions\n", "\n", - "For an introduction to configuring LLMs, refer to the [main configuration docs](https://autogen-ai.github.io/autogen/docs/topics/llm_configuration). This guide will run through examples of the more advanced utility functions for managing API configurations.\n", + "For an introduction to configuring LLMs, refer to the [main configuration docs](https://autogenhub.github.io/autogen/docs/topics/llm_configuration). This guide will run through examples of the more advanced utility functions for managing API configurations.\n", "\n", "Managing API configurations can be tricky, especially when dealing with multiple models and API versions. The provided utility functions assist users in managing these configurations effectively. Ensure your API keys and other sensitive data are stored securely. You might store keys in `.txt` or `.env` files or environment variables for local development. Never expose your API keys publicly. If you insist on storing your key files locally on your repo (you shouldn't), ensure the key file path is added to the `.gitignore` file.\n", "\n", diff --git a/notebook/oai_chatgpt_gpt4.ipynb b/notebook/oai_chatgpt_gpt4.ipynb index b588763f6c13..2149daf7a40e 100644 --- a/notebook/oai_chatgpt_gpt4.ipynb +++ b/notebook/oai_chatgpt_gpt4.ipynb @@ -17,8 +17,8 @@ } }, "source": [ - "Contributions to this project, i.e., https://github.com/autogen-ai/autogen, are licensed under the Apache License, Version 2.0 (Apache-2.0).\n", - "Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai\n", + "Contributions to this project, i.e., https://github.com/autogenhub/autogen, are licensed under the Apache License, Version 2.0 (Apache-2.0).\n", + "Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub\n", "SPDX-License-Identifier: Apache-2.0\n", "Portions derived from https://github.com/microsoft/autogen under the MIT License.\n", "SPDX-License-Identifier: MIT\n", @@ -33,7 +33,7 @@ "\n", "In this notebook, we tune OpenAI ChatGPT (both GPT-3.5 and GPT-4) models for math problem solving. We use [the MATH benchmark](https://crfm.stanford.edu/helm/latest/?group=math_chain_of_thought) for measuring mathematical problem solving on competition math problems with chain-of-thoughts style reasoning.\n", "\n", - "Related link: [Blogpost](https://autogen-ai.github.io/autogen/blog/2023/04/21/LLM-tuning-math) based on this experiment.\n", + "Related link: [Blogpost](https://autogenhub.github.io/autogen/blog/2023/04/21/LLM-tuning-math) based on this experiment.\n", "\n", "## Requirements\n", "\n", @@ -98,7 +98,7 @@ "source": [ "### Set your API Endpoint\n", "\n", - "The [`config_list_openai_aoai`](https://autogen-ai.github.io/autogen/docs/reference/oai/openai_utils#config_list_openai_aoai) function tries to create a list of Azure OpenAI endpoints and OpenAI endpoints. It assumes the api keys and api bases are stored in the corresponding environment variables or local txt files:\n", + "The [`config_list_openai_aoai`](https://autogenhub.github.io/autogen/docs/reference/oai/openai_utils#config_list_openai_aoai) function tries to create a list of Azure OpenAI endpoints and OpenAI endpoints. It assumes the api keys and api bases are stored in the corresponding environment variables or local txt files:\n", "\n", "- OpenAI API key: os.environ[\"OPENAI_API_KEY\"] or `openai_api_key_file=\"key_openai.txt\"`.\n", "- Azure OpenAI API key: os.environ[\"AZURE_OPENAI_API_KEY\"] or `aoai_api_key_file=\"key_aoai.txt\"`. Multiple keys can be stored, one per line.\n", diff --git a/notebook/oai_completion.ipynb b/notebook/oai_completion.ipynb index e283eb0b248c..1a7fb4957745 100644 --- a/notebook/oai_completion.ipynb +++ b/notebook/oai_completion.ipynb @@ -17,8 +17,8 @@ } }, "source": [ - "Contributions to this project, i.e., https://github.com/autogen-ai/autogen, are licensed under the Apache License, Version 2.0 (Apache-2.0).\n", - "Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai\n", + "Contributions to this project, i.e., https://github.com/autogenhub/autogen, are licensed under the Apache License, Version 2.0 (Apache-2.0).\n", + "Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub\n", "SPDX-License-Identifier: Apache-2.0\n", "Portions derived from https://github.com/microsoft/autogen under the MIT License.\n", "SPDX-License-Identifier: MIT\n", @@ -64,11 +64,11 @@ "source": [ "## Set your API Endpoint\n", "\n", - "* The [`config_list_openai_aoai`](https://autogen-ai.github.io/autogen/docs/reference/oai/openai_utils#config_list_openai_aoai) function tries to create a list of configurations using Azure OpenAI endpoints and OpenAI endpoints. It assumes the api keys and api bases are stored in the corresponding environment variables or local txt files:\n", + "* The [`config_list_openai_aoai`](https://autogenhub.github.io/autogen/docs/reference/oai/openai_utils#config_list_openai_aoai) function tries to create a list of configurations using Azure OpenAI endpoints and OpenAI endpoints. It assumes the api keys and api bases are stored in the corresponding environment variables or local txt files:\n", " - OpenAI API key: os.environ[\"OPENAI_API_KEY\"] or `openai_api_key_file=\"key_openai.txt\"`.\n", " - Azure OpenAI API key: os.environ[\"AZURE_OPENAI_API_KEY\"] or `aoai_api_key_file=\"key_aoai.txt\"`. Multiple keys can be stored, one per line.\n", " - Azure OpenAI API base: os.environ[\"AZURE_OPENAI_API_BASE\"] or `aoai_api_base_file=\"base_aoai.txt\"`. Multiple bases can be stored, one per line.\n", - "* The [`config_list_from_json`](https://autogen-ai.github.io/autogen/docs/reference/oai/openai_utils#config_list_from_json) function loads a list of configurations from an environment variable or a json file. It first looks for the environment variable `env_or_file`, which must be a valid json string. If that variable is not found, it looks for a json file with the same name. It filters the configs by filter_dict.\n", + "* The [`config_list_from_json`](https://autogenhub.github.io/autogen/docs/reference/oai/openai_utils#config_list_from_json) function loads a list of configurations from an environment variable or a json file. It first looks for the environment variable `env_or_file`, which must be a valid json string. If that variable is not found, it looks for a json file with the same name. It filters the configs by filter_dict.\n", "\n", "It's OK to have only the OpenAI API key, or only the Azure OpenAI API key + base. If you open this notebook in colab, you can upload your files by clicking the file icon on the left panel and then choosing \"upload file\" icon.\n" ] diff --git a/setup.py b/setup.py index 4ca0587e7412..64004e772435 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # @@ -125,7 +125,7 @@ description="A programming framework for agentic AI", long_description=long_description, long_description_content_type="text/markdown", - url="https://github.com/autogen-ai/autogen", + url="https://github.com/autogenhub/autogen", packages=setuptools.find_packages(include=["autogen*"], exclude=["test"]), install_requires=install_requires, extras_require=extra_require, diff --git a/test/agentchat/contrib/agent_eval/test_agent_eval.py b/test/agentchat/contrib/agent_eval/test_agent_eval.py index 05c547d25efe..57023662d258 100644 --- a/test/agentchat/contrib/agent_eval/test_agent_eval.py +++ b/test/agentchat/contrib/agent_eval/test_agent_eval.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/test/agentchat/contrib/agent_eval/test_criterion.py b/test/agentchat/contrib/agent_eval/test_criterion.py index 0befdf6d0416..a065ee09fbbb 100644 --- a/test/agentchat/contrib/agent_eval/test_criterion.py +++ b/test/agentchat/contrib/agent_eval/test_criterion.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/test/agentchat/contrib/agent_eval/test_task.py b/test/agentchat/contrib/agent_eval/test_task.py index 5489a60b5a8a..2beca045d780 100644 --- a/test/agentchat/contrib/agent_eval/test_task.py +++ b/test/agentchat/contrib/agent_eval/test_task.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/test/agentchat/contrib/capabilities/chat_with_teachable_agent.py b/test/agentchat/contrib/capabilities/chat_with_teachable_agent.py index 46f02337d66a..c3a57824db30 100755 --- a/test/agentchat/contrib/capabilities/chat_with_teachable_agent.py +++ b/test/agentchat/contrib/capabilities/chat_with_teachable_agent.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # @@ -28,7 +28,7 @@ def create_teachable_agent(reset_db=False): """Instantiates a teachable agent using the settings from the top of this file.""" # Load LLM inference endpoints from an env variable or a file - # See https://autogen-ai.github.io/autogen/docs/FAQ#set-your-api-endpoints + # See https://autogenhub.github.io/autogen/docs/FAQ#set-your-api-endpoints # and OAI_CONFIG_LIST_sample config_list = config_list_from_json(env_or_file=OAI_CONFIG_LIST, filter_dict=filter_dict, file_location=KEY_LOC) diff --git a/test/agentchat/contrib/capabilities/test_image_generation_capability.py b/test/agentchat/contrib/capabilities/test_image_generation_capability.py index 9703c3b2f49e..7efa394924aa 100644 --- a/test/agentchat/contrib/capabilities/test_image_generation_capability.py +++ b/test/agentchat/contrib/capabilities/test_image_generation_capability.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/test/agentchat/contrib/capabilities/test_teachable_agent.py b/test/agentchat/contrib/capabilities/test_teachable_agent.py index d148f511bd2d..05de50a7ceed 100755 --- a/test/agentchat/contrib/capabilities/test_teachable_agent.py +++ b/test/agentchat/contrib/capabilities/test_teachable_agent.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # @@ -40,7 +40,7 @@ def create_teachable_agent(reset_db=False, verbosity=0): """Instantiates a teachable agent using the settings from the top of this file.""" # Load LLM inference endpoints from an env variable or a file - # See https://autogen-ai.github.io/autogen/docs/FAQ#set-your-api-endpoints + # See https://autogenhub.github.io/autogen/docs/FAQ#set-your-api-endpoints # and OAI_CONFIG_LIST_sample config_list = config_list_from_json(env_or_file=OAI_CONFIG_LIST, filter_dict=filter_dict, file_location=KEY_LOC) diff --git a/test/agentchat/contrib/capabilities/test_transform_messages.py b/test/agentchat/contrib/capabilities/test_transform_messages.py index 831ee13277cb..cbd8be24b0b1 100644 --- a/test/agentchat/contrib/capabilities/test_transform_messages.py +++ b/test/agentchat/contrib/capabilities/test_transform_messages.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/test/agentchat/contrib/capabilities/test_transforms.py b/test/agentchat/contrib/capabilities/test_transforms.py index 20233c77e456..6868ad1c825f 100644 --- a/test/agentchat/contrib/capabilities/test_transforms.py +++ b/test/agentchat/contrib/capabilities/test_transforms.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/test/agentchat/contrib/capabilities/test_transforms_util.py b/test/agentchat/contrib/capabilities/test_transforms_util.py index ebe49e167de3..a2efe049ef8c 100644 --- a/test/agentchat/contrib/capabilities/test_transforms_util.py +++ b/test/agentchat/contrib/capabilities/test_transforms_util.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/test/agentchat/contrib/capabilities/test_vision_capability.py b/test/agentchat/contrib/capabilities/test_vision_capability.py index 24238fc5731e..3d215a540a53 100644 --- a/test/agentchat/contrib/capabilities/test_vision_capability.py +++ b/test/agentchat/contrib/capabilities/test_vision_capability.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/test/agentchat/contrib/retrievechat/test_pgvector_retrievechat.py b/test/agentchat/contrib/retrievechat/test_pgvector_retrievechat.py index e0809867b099..d8fc0263ccef 100644 --- a/test/agentchat/contrib/retrievechat/test_pgvector_retrievechat.py +++ b/test/agentchat/contrib/retrievechat/test_pgvector_retrievechat.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/test/agentchat/contrib/retrievechat/test_qdrant_retrievechat.py b/test/agentchat/contrib/retrievechat/test_qdrant_retrievechat.py index aeda74cf4127..0b92acb8fec5 100755 --- a/test/agentchat/contrib/retrievechat/test_qdrant_retrievechat.py +++ b/test/agentchat/contrib/retrievechat/test_qdrant_retrievechat.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/test/agentchat/contrib/retrievechat/test_retrievechat.py b/test/agentchat/contrib/retrievechat/test_retrievechat.py index 92b256b93f75..882593467226 100755 --- a/test/agentchat/contrib/retrievechat/test_retrievechat.py +++ b/test/agentchat/contrib/retrievechat/test_retrievechat.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/test/agentchat/contrib/test_agent_builder.py b/test/agentchat/contrib/test_agent_builder.py index 4612577c46ec..9a4ad6b55ea8 100755 --- a/test/agentchat/contrib/test_agent_builder.py +++ b/test/agentchat/contrib/test_agent_builder.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/test/agentchat/contrib/test_agent_optimizer.py b/test/agentchat/contrib/test_agent_optimizer.py index 9f1d8cc01a7f..1dc6ce405d64 100644 --- a/test/agentchat/contrib/test_agent_optimizer.py +++ b/test/agentchat/contrib/test_agent_optimizer.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/test/agentchat/contrib/test_gpt_assistant.py b/test/agentchat/contrib/test_gpt_assistant.py index 7ff0e7285cef..5617991bab2e 100755 --- a/test/agentchat/contrib/test_gpt_assistant.py +++ b/test/agentchat/contrib/test_gpt_assistant.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/test/agentchat/contrib/test_img_utils.py b/test/agentchat/contrib/test_img_utils.py index 7057585c29fe..f62014e6f1cd 100755 --- a/test/agentchat/contrib/test_img_utils.py +++ b/test/agentchat/contrib/test_img_utils.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/test/agentchat/contrib/test_llamaindex_conversable_agent.py b/test/agentchat/contrib/test_llamaindex_conversable_agent.py index 96e0b8eda2e2..deca47926fb6 100644 --- a/test/agentchat/contrib/test_llamaindex_conversable_agent.py +++ b/test/agentchat/contrib/test_llamaindex_conversable_agent.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/test/agentchat/contrib/test_llava.py b/test/agentchat/contrib/test_llava.py index d3b644cfc2a2..1bb19a633a70 100755 --- a/test/agentchat/contrib/test_llava.py +++ b/test/agentchat/contrib/test_llava.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/test/agentchat/contrib/test_lmm.py b/test/agentchat/contrib/test_lmm.py index 5d2d45aaff43..f174855bfbeb 100755 --- a/test/agentchat/contrib/test_lmm.py +++ b/test/agentchat/contrib/test_lmm.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/test/agentchat/contrib/test_society_of_mind_agent.py b/test/agentchat/contrib/test_society_of_mind_agent.py index c96702d7c14a..a70131c7c434 100755 --- a/test/agentchat/contrib/test_society_of_mind_agent.py +++ b/test/agentchat/contrib/test_society_of_mind_agent.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/test/agentchat/contrib/test_web_surfer.py b/test/agentchat/contrib/test_web_surfer.py index 508ebb72e487..0d8c60e0eed8 100755 --- a/test/agentchat/contrib/test_web_surfer.py +++ b/test/agentchat/contrib/test_web_surfer.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # @@ -21,7 +21,7 @@ sys.path.append(os.path.join(os.path.dirname(__file__), "..")) from test_assistant_agent import KEY_LOC, OAI_CONFIG_LIST # noqa: E402 -BLOG_POST_URL = "https://autogen-ai.github.io/autogen/blog/2023/04/21/LLM-tuning-math" +BLOG_POST_URL = "https://autogenhub.github.io/autogen/blog/2023/04/21/LLM-tuning-math" BLOG_POST_TITLE = "Does Model and Inference Parameter Matter in LLM Applications? - A Case Study for MATH | AutoGen" BING_QUERY = "Microsoft" diff --git a/test/agentchat/contrib/vectordb/test_chromadb.py b/test/agentchat/contrib/vectordb/test_chromadb.py index daf51f371e71..b14c906d50c1 100644 --- a/test/agentchat/contrib/vectordb/test_chromadb.py +++ b/test/agentchat/contrib/vectordb/test_chromadb.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/test/agentchat/contrib/vectordb/test_mongodb.py b/test/agentchat/contrib/vectordb/test_mongodb.py index 51279848784b..387380139502 100644 --- a/test/agentchat/contrib/vectordb/test_mongodb.py +++ b/test/agentchat/contrib/vectordb/test_mongodb.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/test/agentchat/contrib/vectordb/test_pgvectordb.py b/test/agentchat/contrib/vectordb/test_pgvectordb.py index 01ad3dc99035..462c2c4f5b6d 100644 --- a/test/agentchat/contrib/vectordb/test_pgvectordb.py +++ b/test/agentchat/contrib/vectordb/test_pgvectordb.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/test/agentchat/contrib/vectordb/test_qdrant.py b/test/agentchat/contrib/vectordb/test_qdrant.py index 056f7e89b9a5..a2a284373c96 100644 --- a/test/agentchat/contrib/vectordb/test_qdrant.py +++ b/test/agentchat/contrib/vectordb/test_qdrant.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/test/agentchat/contrib/vectordb/test_vectordb_utils.py b/test/agentchat/contrib/vectordb/test_vectordb_utils.py index 71be547b58be..b85680f08890 100644 --- a/test/agentchat/contrib/vectordb/test_vectordb_utils.py +++ b/test/agentchat/contrib/vectordb/test_vectordb_utils.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/test/agentchat/extensions/tsp.py b/test/agentchat/extensions/tsp.py index 11877abedd08..4d1e68cdb6d0 100644 --- a/test/agentchat/extensions/tsp.py +++ b/test/agentchat/extensions/tsp.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/test/agentchat/extensions/tsp_api.py b/test/agentchat/extensions/tsp_api.py index 4ceb93b56c2c..67176162ba26 100644 --- a/test/agentchat/extensions/tsp_api.py +++ b/test/agentchat/extensions/tsp_api.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/test/agentchat/test_agent_file_logging.py b/test/agentchat/test_agent_file_logging.py index 9c014b09a55e..181c8c143433 100644 --- a/test/agentchat/test_agent_file_logging.py +++ b/test/agentchat/test_agent_file_logging.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/test/agentchat/test_agent_logging.py b/test/agentchat/test_agent_logging.py index 0ae39eaa65e0..f94ae64a00af 100644 --- a/test/agentchat/test_agent_logging.py +++ b/test/agentchat/test_agent_logging.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/test/agentchat/test_agent_setup_with_use_docker_settings.py b/test/agentchat/test_agent_setup_with_use_docker_settings.py index 61e2073d9ebc..04d4c01aa9c4 100644 --- a/test/agentchat/test_agent_setup_with_use_docker_settings.py +++ b/test/agentchat/test_agent_setup_with_use_docker_settings.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/test/agentchat/test_agent_usage.py b/test/agentchat/test_agent_usage.py index 781727c52483..d9906b09b2de 100755 --- a/test/agentchat/test_agent_usage.py +++ b/test/agentchat/test_agent_usage.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/test/agentchat/test_agentchat_utils.py b/test/agentchat/test_agentchat_utils.py index cfdc609d59c2..530dcf5f8ffb 100644 --- a/test/agentchat/test_agentchat_utils.py +++ b/test/agentchat/test_agentchat_utils.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/test/agentchat/test_assistant_agent.py b/test/agentchat/test_assistant_agent.py index b4cd995b5156..1854752f8f35 100755 --- a/test/agentchat/test_assistant_agent.py +++ b/test/agentchat/test_assistant_agent.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/test/agentchat/test_async.py b/test/agentchat/test_async.py index 07f7a75b07e2..01fee6bbde5d 100755 --- a/test/agentchat/test_async.py +++ b/test/agentchat/test_async.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/test/agentchat/test_async_chats.py b/test/agentchat/test_async_chats.py index 7d83464d66f9..4749e1d46e5a 100755 --- a/test/agentchat/test_async_chats.py +++ b/test/agentchat/test_async_chats.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/test/agentchat/test_async_get_human_input.py b/test/agentchat/test_async_get_human_input.py index 80cd929b6a79..8ff215ccd8d0 100755 --- a/test/agentchat/test_async_get_human_input.py +++ b/test/agentchat/test_async_get_human_input.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/test/agentchat/test_cache_agent.py b/test/agentchat/test_cache_agent.py index 4c6d75cd3416..9a16eaac7d9c 100644 --- a/test/agentchat/test_cache_agent.py +++ b/test/agentchat/test_cache_agent.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/test/agentchat/test_chats.py b/test/agentchat/test_chats.py index ec15ce1789a0..318d52674c53 100755 --- a/test/agentchat/test_chats.py +++ b/test/agentchat/test_chats.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/test/agentchat/test_conversable_agent.py b/test/agentchat/test_conversable_agent.py index da1ad92f5d4c..5f79f72ab02b 100755 --- a/test/agentchat/test_conversable_agent.py +++ b/test/agentchat/test_conversable_agent.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/test/agentchat/test_function_and_tool_calling.py b/test/agentchat/test_function_and_tool_calling.py index ed3977ff6704..ffe57dd8da0b 100644 --- a/test/agentchat/test_function_and_tool_calling.py +++ b/test/agentchat/test_function_and_tool_calling.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/test/agentchat/test_function_call.py b/test/agentchat/test_function_call.py index c8f73b4f4ad7..deb554ff9978 100755 --- a/test/agentchat/test_function_call.py +++ b/test/agentchat/test_function_call.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/test/agentchat/test_function_call_groupchat.py b/test/agentchat/test_function_call_groupchat.py index 0e4bc9586413..fbffebc9ff28 100755 --- a/test/agentchat/test_function_call_groupchat.py +++ b/test/agentchat/test_function_call_groupchat.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/test/agentchat/test_groupchat.py b/test/agentchat/test_groupchat.py index c716ef51758a..5efb839317cd 100755 --- a/test/agentchat/test_groupchat.py +++ b/test/agentchat/test_groupchat.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/test/agentchat/test_human_input.py b/test/agentchat/test_human_input.py index 5c2e99f2431d..5f848e1bd19c 100755 --- a/test/agentchat/test_human_input.py +++ b/test/agentchat/test_human_input.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/test/agentchat/test_math_user_proxy_agent.py b/test/agentchat/test_math_user_proxy_agent.py index e2baed12bae5..214295e984e7 100755 --- a/test/agentchat/test_math_user_proxy_agent.py +++ b/test/agentchat/test_math_user_proxy_agent.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/test/agentchat/test_nested.py b/test/agentchat/test_nested.py index e9cad254f413..150a35e60721 100755 --- a/test/agentchat/test_nested.py +++ b/test/agentchat/test_nested.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/test/agentchat/test_tool_calls.py b/test/agentchat/test_tool_calls.py index cdb428cae4ca..99b19725f023 100755 --- a/test/agentchat/test_tool_calls.py +++ b/test/agentchat/test_tool_calls.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/test/cache/test_cache.py b/test/cache/test_cache.py index fc7653590eb9..602f1c87fc91 100755 --- a/test/cache/test_cache.py +++ b/test/cache/test_cache.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/test/cache/test_cosmos_db_cache.py b/test/cache/test_cosmos_db_cache.py index 8ff466dd6fa9..34bac89037fa 100644 --- a/test/cache/test_cosmos_db_cache.py +++ b/test/cache/test_cosmos_db_cache.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/test/cache/test_disk_cache.py b/test/cache/test_disk_cache.py index 4724503c53d7..b91c8ca80f8c 100755 --- a/test/cache/test_disk_cache.py +++ b/test/cache/test_disk_cache.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/test/cache/test_in_memory_cache.py b/test/cache/test_in_memory_cache.py index 9f8878de622b..3d447d3377c9 100644 --- a/test/cache/test_in_memory_cache.py +++ b/test/cache/test_in_memory_cache.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/test/cache/test_redis_cache.py b/test/cache/test_redis_cache.py index 120f2bc58d52..25b85bb23532 100755 --- a/test/cache/test_redis_cache.py +++ b/test/cache/test_redis_cache.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/test/conftest.py b/test/conftest.py index 242a2ac693cb..df6a650d0c5c 100644 --- a/test/conftest.py +++ b/test/conftest.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/test/io/test_base.py b/test/io/test_base.py index 21c59813dead..d9ac8947e343 100644 --- a/test/io/test_base.py +++ b/test/io/test_base.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/test/io/test_console.py b/test/io/test_console.py index eb6ed0fff34f..d7e04ca2a148 100644 --- a/test/io/test_console.py +++ b/test/io/test_console.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/test/io/test_websockets.py b/test/io/test_websockets.py index 335bade6e4fd..340188a134bb 100644 --- a/test/io/test_websockets.py +++ b/test/io/test_websockets.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/test/oai/_test_completion.py b/test/oai/_test_completion.py index 592dc1ce5bb2..fd6a6752b7ef 100755 --- a/test/oai/_test_completion.py +++ b/test/oai/_test_completion.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/test/oai/test_anthropic.py b/test/oai/test_anthropic.py index 5b7e0a9b4387..9ccba3f3c25c 100644 --- a/test/oai/test_anthropic.py +++ b/test/oai/test_anthropic.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/test/oai/test_client.py b/test/oai/test_client.py index b9bff919246f..288dfbb6b732 100755 --- a/test/oai/test_client.py +++ b/test/oai/test_client.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/test/oai/test_client_stream.py b/test/oai/test_client_stream.py index c658104d4d55..407cfad9948d 100755 --- a/test/oai/test_client_stream.py +++ b/test/oai/test_client_stream.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/test/oai/test_client_utils.py b/test/oai/test_client_utils.py index 2fb7f1ea719d..504519e7e53c 100644 --- a/test/oai/test_client_utils.py +++ b/test/oai/test_client_utils.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/test/oai/test_cohere.py b/test/oai/test_cohere.py index a8f55c22883f..6e3038f31f03 100644 --- a/test/oai/test_cohere.py +++ b/test/oai/test_cohere.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/test/oai/test_custom_client.py b/test/oai/test_custom_client.py index d4dc987d2786..48bcc728ebde 100644 --- a/test/oai/test_custom_client.py +++ b/test/oai/test_custom_client.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/test/oai/test_gemini.py b/test/oai/test_gemini.py index f2fe15684dfd..8ce0d3cda64c 100644 --- a/test/oai/test_gemini.py +++ b/test/oai/test_gemini.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/test/oai/test_groq.py b/test/oai/test_groq.py index aca4282b5d85..de2385a237d7 100644 --- a/test/oai/test_groq.py +++ b/test/oai/test_groq.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/test/oai/test_mistral.py b/test/oai/test_mistral.py index 188a975dd909..9663a2d0191a 100644 --- a/test/oai/test_mistral.py +++ b/test/oai/test_mistral.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/test/oai/test_together.py b/test/oai/test_together.py index 838a7e908bff..000729c40de9 100644 --- a/test/oai/test_together.py +++ b/test/oai/test_together.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/test/oai/test_utils.py b/test/oai/test_utils.py index ca2ad57959ac..adf9fc2c9e78 100755 --- a/test/oai/test_utils.py +++ b/test/oai/test_utils.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/test/test_browser_utils.py b/test/test_browser_utils.py index 1986d4fb4e02..c47fd7fe8ebf 100755 --- a/test/test_browser_utils.py +++ b/test/test_browser_utils.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # @@ -16,7 +16,7 @@ import requests from agentchat.test_assistant_agent import KEY_LOC # noqa: E402 -BLOG_POST_URL = "https://autogen-ai.github.io/autogen/blog/2023/04/21/LLM-tuning-math" +BLOG_POST_URL = "https://autogenhub.github.io/autogen/blog/2023/04/21/LLM-tuning-math" BLOG_POST_TITLE = "Does Model and Inference Parameter Matter in LLM Applications? - A Case Study for MATH | AutoGen" BLOG_POST_STRING = "Large language models (LLMs) are powerful tools that can generate natural language texts for various applications, such as chatbots, summarization, translation, and more. GPT-4 is currently the state of the art LLM in the world. Is model selection irrelevant? What about inference parameters?" diff --git a/test/test_code_utils.py b/test/test_code_utils.py index 354fd1cc1a8a..c10262d70efd 100755 --- a/test/test_code_utils.py +++ b/test/test_code_utils.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/test/test_function_utils.py b/test/test_function_utils.py index 0c23a74899dc..bb7a6d44807e 100644 --- a/test/test_function_utils.py +++ b/test/test_function_utils.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/test/test_graph_utils.py b/test/test_graph_utils.py index 020bc0a3151e..9b4537bd3898 100644 --- a/test/test_graph_utils.py +++ b/test/test_graph_utils.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/test/test_logging.py b/test/test_logging.py index 531cda1181dc..0e26574771c9 100644 --- a/test/test_logging.py +++ b/test/test_logging.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/test/test_notebook.py b/test/test_notebook.py index 17d57e22dcdb..f961525fd0ab 100755 --- a/test/test_notebook.py +++ b/test/test_notebook.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/test/test_pydantic.py b/test/test_pydantic.py index 5cea6574d89e..d496fe0b7dbc 100644 --- a/test/test_pydantic.py +++ b/test/test_pydantic.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/test/test_retrieve_utils.py b/test/test_retrieve_utils.py index 243d2d5cadff..83be2f4425fc 100755 --- a/test/test_retrieve_utils.py +++ b/test/test_retrieve_utils.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/test/test_token_count.py b/test/test_token_count.py index ee096c16cbd8..ffd71d068ef8 100755 --- a/test/test_token_count.py +++ b/test/test_token_count.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # diff --git a/test/twoagent.py b/test/twoagent.py index 20e9b59e60c0..96e6af63e5b8 100644 --- a/test/twoagent.py +++ b/test/twoagent.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai +# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub # # SPDX-License-Identifier: Apache-2.0 # @@ -7,7 +7,7 @@ from autogen import AssistantAgent, UserProxyAgent, config_list_from_json # Load LLM inference endpoints from an env variable or a file -# See https://autogen-ai.github.io/autogen/docs/FAQ#set-your-api-endpoints +# See https://autogenhub.github.io/autogen/docs/FAQ#set-your-api-endpoints # and OAI_CONFIG_LIST_sample config_list = config_list_from_json(env_or_file="OAI_CONFIG_LIST") assistant = AssistantAgent("assistant", llm_config={"config_list": config_list}) diff --git a/website/blog/2023-10-18-RetrieveChat/index.mdx b/website/blog/2023-10-18-RetrieveChat/index.mdx index a95632ab71b9..188e762e635d 100644 --- a/website/blog/2023-10-18-RetrieveChat/index.mdx +++ b/website/blog/2023-10-18-RetrieveChat/index.mdx @@ -82,7 +82,7 @@ from autogen.agentchat.contrib.retrieve_user_proxy_agent import RetrieveUserProx 2. Create an 'AssistantAgent' instance named "assistant" and an 'RetrieveUserProxyAgent' instance named "ragproxyagent" -Refer to the [doc](https://autogen-ai.github.io/autogen/docs/reference/agentchat/contrib/retrieve_user_proxy_agent) +Refer to the [doc](https://autogenhub.github.io/autogen/docs/reference/agentchat/contrib/retrieve_user_proxy_agent) for more information on the detailed configurations. ```python diff --git a/website/blog/2023-10-26-TeachableAgent/index.mdx b/website/blog/2023-10-26-TeachableAgent/index.mdx index ee292cf6a186..adbbbbc08b58 100644 --- a/website/blog/2023-10-26-TeachableAgent/index.mdx +++ b/website/blog/2023-10-26-TeachableAgent/index.mdx @@ -54,7 +54,7 @@ from autogen import ConversableAgent # As an example ```python # Load LLM inference endpoints from an env variable or a file -# See https://autogen-ai.github.io/autogen/docs/FAQ#set-your-api-endpoints +# See https://autogenhub.github.io/autogen/docs/FAQ#set-your-api-endpoints # and OAI_CONFIG_LIST_sample filter_dict = {"model": ["gpt-4"]} # GPT-3.5 is less reliable than GPT-4 at learning from user feedback. config_list = config_list_from_json(env_or_file="OAI_CONFIG_LIST", filter_dict=filter_dict) diff --git a/website/blog/2023-11-06-LMM-Agent/index.mdx b/website/blog/2023-11-06-LMM-Agent/index.mdx index f8af3f9c298d..b60b876a4d26 100644 --- a/website/blog/2023-11-06-LMM-Agent/index.mdx +++ b/website/blog/2023-11-06-LMM-Agent/index.mdx @@ -9,8 +9,8 @@ tags: [LMM, multimodal] **In Brief:** * Introducing the **Multimodal Conversable Agent** and the **LLaVA Agent** to enhance LMM functionalities. * Users can input text and images simultaneously using the `` tag to specify image loading. -* Demonstrated through the [GPT-4V notebook](https://github.com/autogen-ai/autogen/blob/main/notebook/agentchat_lmm_gpt-4v.ipynb). -* Demonstrated through the [LLaVA notebook](https://github.com/autogen-ai/autogen/blob/main/notebook/agentchat_lmm_llava.ipynb). +* Demonstrated through the [GPT-4V notebook](https://github.com/autogenhub/autogen/blob/main/notebook/agentchat_lmm_gpt-4v.ipynb). +* Demonstrated through the [LLaVA notebook](https://github.com/autogenhub/autogen/blob/main/notebook/agentchat_lmm_llava.ipynb). ## Introduction Large multimodal models (LMMs) augment large language models (LLMs) with the ability to process multi-sensory data. @@ -62,7 +62,7 @@ The `MultimodalConversableAgent` interprets the input prompt, extracting images ## Advanced Usage Similar to other AutoGen agents, multimodal agents support multi-round dialogues with other agents, code generation, factual queries, and management via a GroupChat interface. -For example, the `FigureCreator` in our [GPT-4V notebook](https://github.com/autogen-ai/autogen/blob/main/notebook/agentchat_lmm_gpt-4v.ipynb) and [LLaVA notebook](https://github.com/autogen-ai/autogen/blob/main/notebook/agentchat_lmm_llava.ipynb) integrates two agents: a coder (an AssistantAgent) and critics (a multimodal agent). +For example, the `FigureCreator` in our [GPT-4V notebook](https://github.com/autogenhub/autogen/blob/main/notebook/agentchat_lmm_gpt-4v.ipynb) and [LLaVA notebook](https://github.com/autogenhub/autogen/blob/main/notebook/agentchat_lmm_llava.ipynb) integrates two agents: a coder (an AssistantAgent) and critics (a multimodal agent). The coder drafts Python code for visualizations, while the critics provide insights for enhancement. Collaboratively, these agents aim to refine visual outputs. With `human_input_mode=ALWAYS`, you can also contribute suggestions for better visualizations. @@ -72,6 +72,6 @@ With `human_input_mode=ALWAYS`, you can also contribute suggestions for better v ## Future Enhancements -For further inquiries or suggestions, please open an issue in the [AutoGen repository](https://github.com/autogen-ai/autogen/) or contact me directly at beibin.li@microsoft.com. +For further inquiries or suggestions, please open an issue in the [AutoGen repository](https://github.com/autogenhub/autogen/) or contact me directly at beibin.li@microsoft.com. AutoGen will continue to evolve, incorporating more multimodal functionalities such as DALLE model integration, audio interaction, and video comprehension. Stay tuned for these exciting developments. diff --git a/website/blog/2023-11-13-OAI-assistants/index.mdx b/website/blog/2023-11-13-OAI-assistants/index.mdx index 63dcfc97ae75..128c8724b1e8 100644 --- a/website/blog/2023-11-13-OAI-assistants/index.mdx +++ b/website/blog/2023-11-13-OAI-assistants/index.mdx @@ -9,12 +9,12 @@ tags: [openai-assistant] ## TL;DR -OpenAI assistants are now integrated into AutoGen via [`GPTAssistantAgent`](https://github.com/autogen-ai/autogen/blob/main/autogen/agentchat/contrib/gpt_assistant_agent.py). +OpenAI assistants are now integrated into AutoGen via [`GPTAssistantAgent`](https://github.com/autogenhub/autogen/blob/main/autogen/agentchat/contrib/gpt_assistant_agent.py). This enables multiple OpenAI assistants, which form the backend of the now popular GPTs, to collaborate and tackle complex tasks. Checkout example notebooks for reference: -* [Basic example](https://github.com/autogen-ai/autogen/blob/main/notebook/agentchat_oai_assistant_twoagents_basic.ipynb) -* [Code interpreter](https://github.com/autogen-ai/autogen/blob/main/notebook/agentchat_oai_code_interpreter.ipynb) -* [Function calls](https://github.com/autogen-ai/autogen/blob/main/notebook/agentchat_oai_assistant_function_call.ipynb) +* [Basic example](https://github.com/autogenhub/autogen/blob/main/notebook/agentchat_oai_assistant_twoagents_basic.ipynb) +* [Code interpreter](https://github.com/autogenhub/autogen/blob/main/notebook/agentchat_oai_code_interpreter.ipynb) +* [Function calls](https://github.com/autogenhub/autogen/blob/main/notebook/agentchat_oai_assistant_function_call.ipynb) ## Introduction @@ -100,7 +100,7 @@ user_proxy = UserProxyAgent(name="user_proxy", user_proxy.initiate_chat(gpt_assistant, message="Print hello world") ``` -Checkout more examples [here](https://github.com/autogen-ai/autogen/tree/main/notebook). +Checkout more examples [here](https://github.com/autogenhub/autogen/tree/main/notebook). ## Limitations and Future Work diff --git a/website/blog/2023-11-20-AgentEval/index.mdx b/website/blog/2023-11-20-AgentEval/index.mdx index b0761b2cdac6..20c0c4ad6e01 100644 --- a/website/blog/2023-11-20-AgentEval/index.mdx +++ b/website/blog/2023-11-20-AgentEval/index.mdx @@ -14,7 +14,7 @@ tags: [LLM, GPT, evaluation, task utility] **TL;DR:** * As a developer of an LLM-powered application, how can you assess the utility it brings to end users while helping them with their tasks? * To shed light on the question above, we introduce `AgentEval` — the first version of the framework to assess the utility of any LLM-powered application crafted to assist users in specific tasks. AgentEval aims to simplify the evaluation process by automatically proposing a set of criteria tailored to the unique purpose of your application. This allows for a comprehensive assessment, quantifying the utility of your application against the suggested criteria. -* We demonstrate how `AgentEval` work using [math problems dataset](https://autogen-ai.github.io/autogen/blog/2023/06/28/MathChat) as an example in the [following notebook](https://github.com/microsoft/autogen/blob/main/notebook/agenteval_cq_math.ipynb). Any feedback would be useful for future development. Please contact us on our [Discord](http://aka.ms/autogen-dc). +* We demonstrate how `AgentEval` work using [math problems dataset](https://autogenhub.github.io/autogen/blog/2023/06/28/MathChat) as an example in the [following notebook](https://github.com/microsoft/autogen/blob/main/notebook/agenteval_cq_math.ipynb). Any feedback would be useful for future development. Please contact us on our [Discord](http://aka.ms/autogen-dc). ## Introduction diff --git a/website/blog/2023-12-01-AutoGenStudio/index.mdx b/website/blog/2023-12-01-AutoGenStudio/index.mdx index 6d7cdd513e8a..0e1628369f75 100644 --- a/website/blog/2023-12-01-AutoGenStudio/index.mdx +++ b/website/blog/2023-12-01-AutoGenStudio/index.mdx @@ -26,9 +26,9 @@ To help you rapidly prototype multi-agent solutions for your tasks, we are intro - Publish your sessions to a local gallery. -See the official AutoGen Studio documentation [here](https://autogen-ai.github.io/autogen/docs/autogen-studio/getting-started) for more details. +See the official AutoGen Studio documentation [here](https://autogenhub.github.io/autogen/docs/autogen-studio/getting-started) for more details. -AutoGen Studio is open source [code here](https://github.com/autogen-ai/build-with-autogen/blob/main/samples/apps/autogen-studio), and can be installed via pip. Give it a try! +AutoGen Studio is open source [code here](https://github.com/autogenhub/build-with-autogen/blob/main/samples/apps/autogen-studio), and can be installed via pip. Give it a try! ```bash pip install autogenstudio @@ -36,7 +36,7 @@ pip install autogenstudio ## Introduction -The accelerating pace of technology has ushered us into an era where digital assistants (or agents) are becoming integral to our lives. [AutoGen](https://github.com/autogen-ai/autogen/tree/main/autogen) has emerged as a leading framework for orchestrating the power of agents. In the spirit of expanding this frontier and democratizing this capability, we are thrilled to introduce a new user-friendly interface: **AutoGen Studio**. +The accelerating pace of technology has ushered us into an era where digital assistants (or agents) are becoming integral to our lives. [AutoGen](https://github.com/autogenhub/autogen/tree/main/autogen) has emerged as a leading framework for orchestrating the power of agents. In the spirit of expanding this frontier and democratizing this capability, we are thrilled to introduce a new user-friendly interface: **AutoGen Studio**. With AutoGen Studio, users can rapidly create, manage, and interact with agents that can learn, adapt, and collaborate. As we release this interface into the open-source community, our ambition is not only to enhance productivity but to inspire a level of personalized interaction between humans and agents. @@ -48,7 +48,7 @@ The following guide will help you get AutoGen Studio up and running on your syst ### Configuring an LLM Provider -To get started, you need access to a language model. You can get this set up by following the steps in the AutoGen documentation [here](https://autogen-ai.github.io/autogen/docs/FAQ#set-your-api-endpoints). Configure your environment with either `OPENAI_API_KEY` or `AZURE_OPENAI_API_KEY`. +To get started, you need access to a language model. You can get this set up by following the steps in the AutoGen documentation [here](https://autogenhub.github.io/autogen/docs/FAQ#set-your-api-endpoints). Configure your environment with either `OPENAI_API_KEY` or `AZURE_OPENAI_API_KEY`. For example, in your terminal, you would set the API key like this: @@ -104,7 +104,7 @@ There are two ways to install AutoGen Studio - from PyPi or from source. We **re yarn build ``` - For Windows users, to build the frontend, you may need alternative commands provided in the [autogen studio readme](https://github.com/autogen-ai/build-with-autogen/blob/main/samples/apps/autogen-studio). + For Windows users, to build the frontend, you may need alternative commands provided in the [autogen studio readme](https://github.com/autogenhub/build-with-autogen/blob/main/samples/apps/autogen-studio). ### Running the Application @@ -139,7 +139,7 @@ This section focuses on defining the properties of agents and agent workflows. I

-**Agents**: This provides an interface to declaratively specify properties for an AutoGen agent (mirrors most of the members of a base [AutoGen conversable agent](https://github.com/autogen-ai/autogen/blob/main/autogen/agentchat/conversable_agent.py) class). +**Agents**: This provides an interface to declaratively specify properties for an AutoGen agent (mirrors most of the members of a base [AutoGen conversable agent](https://github.com/autogenhub/autogen/blob/main/autogen/agentchat/conversable_agent.py) class). **Agent Workflows**: An agent workflow is a specification of a set of agents that can work together to accomplish a task. The simplest version of this is a setup with two agents – a user proxy agent (that represents a user i.e. it compiles code and prints result) and an assistant that can address task requests (e.g., generating plans, writing code, evaluating responses, proposing error recovery steps, etc.). A more complex flow could be a group chat where even more agents work towards a solution. @@ -168,7 +168,7 @@ AutoGen Studio comes with 3 example skills: `fetch_profile`, `find_papers`, `gen ## The AutoGen Studio API -While AutoGen Studio is a web interface, it is powered by an underlying python API that is reusable and modular. Importantly, we have implemented an API where agent workflows can be declaratively specified (in JSON), loaded and run. An example of the current API is shown below. Please consult the [AutoGen Studio repo](https://github.com/autogen-ai/build-with-autogen/blob/main/samples/apps/autogen-studio) for more details. +While AutoGen Studio is a web interface, it is powered by an underlying python API that is reusable and modular. Importantly, we have implemented an API where agent workflows can be declaratively specified (in JSON), loaded and run. An example of the current API is shown below. Please consult the [AutoGen Studio repo](https://github.com/autogenhub/build-with-autogen/blob/main/samples/apps/autogen-studio) for more details. ```python import json @@ -201,7 +201,7 @@ As we continue to develop and refine AutoGen Studio, the road map below outlines We welcome contributions to AutoGen Studio. We recommend the following general steps to contribute to the project: -- Review the overall AutoGen project [AutoGen](https://github.com/autogen-ai/autogen). +- Review the overall AutoGen project [AutoGen](https://github.com/autogenhub/autogen). - Please review the AutoGen Studio [roadmap](https://github.com/microsoft/autogen/issues/737) to get a sense of the current priorities for the project. Help is appreciated especially with Studio issues tagged with `help-wanted`. - Please initiate a discussion on the roadmap issue or a new issue to discuss your proposed contribution. - Submit a pull request with your contribution! @@ -219,7 +219,7 @@ A: To reset your conversation history, you can delete the `database.sqlite` file A: Yes, you can view the generated messages in the debug console of the web UI, providing insights into the agent interactions. Alternatively, you can inspect the `database.sqlite` file for a comprehensive record of messages. **Q: Where can I find documentation and support for AutoGen Studio?** -A: We are constantly working to improve AutoGen Studio. For the latest updates, please refer to the [AutoGen Studio Readme](https://github.com/autogen-ai/build-with-autogen/blob/main/samples/apps/autogen-studio). For additional support, please open an issue on [GitHub](https://github.com/autogen-ai/autogen) or ask questions on [Discord](https://aka.ms/autogen-dc). +A: We are constantly working to improve AutoGen Studio. For the latest updates, please refer to the [AutoGen Studio Readme](https://github.com/autogenhub/build-with-autogen/blob/main/samples/apps/autogen-studio). For additional support, please open an issue on [GitHub](https://github.com/autogenhub/autogen) or ask questions on [Discord](https://aka.ms/autogen-dc). **Q: Can I use Other Models with AutoGen Studio?** Yes. AutoGen standardizes on the openai model api format, and you can use any api server that offers an openai compliant endpoint. In the AutoGen Studio UI, each agent has an `llm_config` field where you can input your model endpoint details including `model name`, `api key`, `base url`, `model type` and `api version`. For Azure OpenAI models, you can find these details in the Azure portal. Note that for Azure OpenAI, the `model name` is the deployment id or engine, and the `model type` is "azure". diff --git a/website/blog/2023-12-23-AgentOptimizer/index.mdx b/website/blog/2023-12-23-AgentOptimizer/index.mdx index ea13ad2447b1..38ad81d917dd 100644 --- a/website/blog/2023-12-23-AgentOptimizer/index.mdx +++ b/website/blog/2023-12-23-AgentOptimizer/index.mdx @@ -36,7 +36,7 @@ It contains three main methods: This method records the conversation history and performance of the agents in solving one problem. It includes two inputs: conversation_history (List[Dict]) and is_satisfied (bool). -conversation_history is a list of dictionaries which could be got from chat_messages_for_summary in the [AgentChat](https://autogen-ai.github.io/autogen/docs/reference/agentchat/agentchat/) class. +conversation_history is a list of dictionaries which could be got from chat_messages_for_summary in the [AgentChat](https://autogenhub.github.io/autogen/docs/reference/agentchat/agentchat/) class. is_satisfied is a bool value that represents whether the user is satisfied with the solution. If it is none, the user will be asked to input the satisfaction. Example: diff --git a/website/blog/2023-12-29-AgentDescriptions/index.mdx b/website/blog/2023-12-29-AgentDescriptions/index.mdx index 3f8580b47c6b..50477caa9857 100644 --- a/website/blog/2023-12-29-AgentDescriptions/index.mdx +++ b/website/blog/2023-12-29-AgentDescriptions/index.mdx @@ -8,7 +8,7 @@ tags: [AutoGen] ## TL;DR -AutoGen 0.2.2 introduces a [description](https://autogen-ai.github.io/autogen/docs/reference/agentchat/conversable_agent#__init__) field to ConversableAgent (and all subclasses), and changes GroupChat so that it uses agent `description`s rather than `system_message`s when choosing which agents should speak next. +AutoGen 0.2.2 introduces a [description](https://autogenhub.github.io/autogen/docs/reference/agentchat/conversable_agent#__init__) field to ConversableAgent (and all subclasses), and changes GroupChat so that it uses agent `description`s rather than `system_message`s when choosing which agents should speak next. This is expected to simplify GroupChat’s job, improve orchestration, and make it easier to implement new GroupChat or GroupChat-like alternatives. @@ -18,9 +18,9 @@ However, if you were struggling with getting GroupChat to work, you can now try ## Introduction -As AutoGen matures and developers build increasingly complex combinations of agents, orchestration is becoming an important capability. At present, [GroupChat](https://autogen-ai.github.io/autogen/docs/reference/agentchat/groupchat#groupchat-objects) and the [GroupChatManager](https://autogen-ai.github.io/autogen/docs/reference/agentchat/groupchat#groupchatmanager-objects) are the main built-in tools for orchestrating conversations between 3 or more agents. For orchestrators like GroupChat to work well, they need to know something about each agent so that they can decide who should speak and when. Prior to AutoGen 0.2.2, GroupChat relied on each agent's `system_message` and `name` to learn about each participating agent. This is likely fine when the system prompt is short and sweet, but can lead to problems when the instructions are very long (e.g., with the [AssistantAgent](https://autogen-ai.github.io/autogen/docs/reference/agentchat/assistant_agent)), or non-existent (e.g., with the [UserProxyAgent](https://autogen-ai.github.io/autogen/docs/reference/agentchat/user_proxy_agent)). +As AutoGen matures and developers build increasingly complex combinations of agents, orchestration is becoming an important capability. At present, [GroupChat](https://autogenhub.github.io/autogen/docs/reference/agentchat/groupchat#groupchat-objects) and the [GroupChatManager](https://autogenhub.github.io/autogen/docs/reference/agentchat/groupchat#groupchatmanager-objects) are the main built-in tools for orchestrating conversations between 3 or more agents. For orchestrators like GroupChat to work well, they need to know something about each agent so that they can decide who should speak and when. Prior to AutoGen 0.2.2, GroupChat relied on each agent's `system_message` and `name` to learn about each participating agent. This is likely fine when the system prompt is short and sweet, but can lead to problems when the instructions are very long (e.g., with the [AssistantAgent](https://autogenhub.github.io/autogen/docs/reference/agentchat/assistant_agent)), or non-existent (e.g., with the [UserProxyAgent](https://autogenhub.github.io/autogen/docs/reference/agentchat/user_proxy_agent)). -AutoGen 0.2.2 introduces a [description](https://autogen-ai.github.io/autogen/docs/reference/agentchat/conversable_agent#__init__) field to all agents, and replaces the use of the `system_message` for orchestration in GroupChat and all future orchestrators. The `description` field defaults to the `system_message` to ensure backwards compatibility, so you may not need to change anything with your code if things are working well for you. However, if you were struggling with GroupChat, give setting the `description` field a try. +AutoGen 0.2.2 introduces a [description](https://autogenhub.github.io/autogen/docs/reference/agentchat/conversable_agent#__init__) field to all agents, and replaces the use of the `system_message` for orchestration in GroupChat and all future orchestrators. The `description` field defaults to the `system_message` to ensure backwards compatibility, so you may not need to change anything with your code if things are working well for you. However, if you were struggling with GroupChat, give setting the `description` field a try. The remainder of this post provides an example of how using the `description` field simplifies GroupChat's job, provides some evidence of its effectiveness, and provides tips for writing good descriptions. diff --git a/website/blog/2024-01-23-Code-execution-in-docker/index.mdx b/website/blog/2024-01-23-Code-execution-in-docker/index.mdx index c6cb0c690da9..4aaf0e7cd193 100644 --- a/website/blog/2024-01-23-Code-execution-in-docker/index.mdx +++ b/website/blog/2024-01-23-Code-execution-in-docker/index.mdx @@ -55,8 +55,8 @@ user_proxy = autogen.UserProxyAgent(name="user_proxy", llm_config=llm_config, ## Related documentation -- [Code execution with docker](https://autogen-ai.github.io/autogen/docs/Installation#code-execution-with-docker-default) -- [How to disable code execution in docker](https://autogen-ai.github.io/autogen/docs/FAQ#agents-are-throwing-due-to-docker-not-running-how-can-i-resolve-this) +- [Code execution with docker](https://autogenhub.github.io/autogen/docs/Installation#code-execution-with-docker-default) +- [How to disable code execution in docker](https://autogenhub.github.io/autogen/docs/FAQ#agents-are-throwing-due-to-docker-not-running-how-can-i-resolve-this) ## Conclusion diff --git a/website/blog/2024-01-25-AutoGenBench/index.mdx b/website/blog/2024-01-25-AutoGenBench/index.mdx index c20db0836c86..7967958e1b1e 100644 --- a/website/blog/2024-01-25-AutoGenBench/index.mdx +++ b/website/blog/2024-01-25-AutoGenBench/index.mdx @@ -21,8 +21,8 @@ Today we are releasing AutoGenBench - a tool for evaluating AutoGen agents and w AutoGenBench is a standalone command line tool, installable from PyPI, which handles downloading, configuring, running, and reporting supported benchmarks. AutoGenBench works best when run alongside Docker, since it uses Docker to isolate tests from one another. -- See the [AutoGenBench README](https://github.com/autogen-ai/build-with-autogen/blob/main/samples/tools/autogenbench/README.md) for information on installation and running benchmarks. -- See the [AutoGenBench CONTRIBUTING guide](https://github.com/autogen-ai/build-with-autogen/blob/main/samples/tools/autogenbench/CONTRIBUTING.md) for information on developing or contributing benchmark datasets. +- See the [AutoGenBench README](https://github.com/autogenhub/build-with-autogen/blob/main/samples/tools/autogenbench/README.md) for information on installation and running benchmarks. +- See the [AutoGenBench CONTRIBUTING guide](https://github.com/autogenhub/build-with-autogen/blob/main/samples/tools/autogenbench/CONTRIBUTING.md) for information on developing or contributing benchmark datasets. ### Quick Start @@ -42,7 +42,7 @@ autogenbench tabulate Results/human_eval_two_agents ## Introduction -Measurement and evaluation are core components of every major AI or ML research project. The same is true for AutoGen. To this end, today we are releasing AutoGenBench, a standalone command line tool that we have been using to guide development of AutoGen. Conveniently, AutoGenBench handles: downloading, configuring, running, and reporting results of agents on various public benchmark datasets. In addition to reporting top-line numbers, each AutoGenBench run produces a comprehensive set of logs and telemetry that can be used for debugging, profiling, computing custom metrics, and as input to [AgentEval](https://autogen-ai.github.io/autogen/blog/2023/11/20/AgentEval). In the remainder of this blog post, we outline core design principles for AutoGenBench (key to understanding its operation); present a guide to installing and running AutoGenBench; outline a roadmap for evaluation; and conclude with an open call for contributions. +Measurement and evaluation are core components of every major AI or ML research project. The same is true for AutoGen. To this end, today we are releasing AutoGenBench, a standalone command line tool that we have been using to guide development of AutoGen. Conveniently, AutoGenBench handles: downloading, configuring, running, and reporting results of agents on various public benchmark datasets. In addition to reporting top-line numbers, each AutoGenBench run produces a comprehensive set of logs and telemetry that can be used for debugging, profiling, computing custom metrics, and as input to [AgentEval](https://autogenhub.github.io/autogen/blog/2023/11/20/AgentEval). In the remainder of this blog post, we outline core design principles for AutoGenBench (key to understanding its operation); present a guide to installing and running AutoGenBench; outline a roadmap for evaluation; and conclude with an open call for contributions. ## Design Principles @@ -52,7 +52,7 @@ AutoGenBench is designed around three core design principles. Knowing these prin - **Isolation:** Agents interact with their worlds in both subtle and overt ways. For example an agent may install a python library or write a file to disk. This can lead to ordering effects that can impact future measurements. Consider, for example, comparing two agents on a common benchmark. One agent may appear more efficient than the other simply because it ran second, and benefitted from the hard work the first agent did in installing and debugging necessary Python libraries. To address this, AutoGenBench isolates each task in its own Docker container. This ensures that all runs start with the same initial conditions. (Docker is also a _much safer way to run agent-produced code_, in general.) -- **Instrumentation:** While top-line metrics are great for comparing agents or models, we often want much more information about how the agents are performing, where they are getting stuck, and how they can be improved. We may also later think of new research questions that require computing a different set of metrics. To this end, AutoGenBench is designed to log everything, and to compute metrics from those logs. This ensures that one can always go back to the logs to answer questions about what happened, run profiling software, or feed the logs into tools like [AgentEval](https://autogen-ai.github.io/autogen/blog/2023/11/20/AgentEval). +- **Instrumentation:** While top-line metrics are great for comparing agents or models, we often want much more information about how the agents are performing, where they are getting stuck, and how they can be improved. We may also later think of new research questions that require computing a different set of metrics. To this end, AutoGenBench is designed to log everything, and to compute metrics from those logs. This ensures that one can always go back to the logs to answer questions about what happened, run profiling software, or feed the logs into tools like [AgentEval](https://autogenhub.github.io/autogen/blog/2023/11/20/AgentEval). ## Installing and Running AutoGenBench @@ -125,7 +125,7 @@ Please do not cite these values in academic work without first inspecting and ve From this output we can see the results of the three separate repetitions of each task, and final summary statistics of each run. In this case, the results were generated via GPT-4 (as defined in the OAI_CONFIG_LIST that was provided), and used the `TwoAgents` template. **It is important to remember that AutoGenBench evaluates _specific_ end-to-end configurations of agents (as opposed to evaluating a model or cognitive framework more generally).** -Finally, complete execution traces and logs can be found in the `Results` folder. See the [AutoGenBench README](https://github.com/autogen-ai/build-with-autogen/blob/main/samples/tools/autogenbench/README.md) for more details about command-line options and output formats. Each of these commands also offers extensive in-line help via: +Finally, complete execution traces and logs can be found in the `Results` folder. See the [AutoGenBench README](https://github.com/autogenhub/build-with-autogen/blob/main/samples/tools/autogenbench/README.md) for more details about command-line options and output formats. Each of these commands also offers extensive in-line help via: - `autogenbench --help` - `autogenbench clone --help` @@ -145,4 +145,4 @@ For an up to date tracking of our work items on this project, please see [AutoGe ## Call for Participation -Finally, we want to end this blog post with an open call for contributions. AutoGenBench is still nascent, and has much opportunity for improvement. New benchmarks are constantly being published, and will need to be added. Everyone may have their own distinct set of metrics that they care most about optimizing, and these metrics should be onboarded. To this end, we welcome any and all contributions to this corner of the AutoGen project. If contributing is something that interests you, please see the [contributor’s guide](https://github.com/autogen-ai/build-with-autogen/blob/main/samples/tools/autogenbench/CONTRIBUTING.md) and join our [Discord](https://aka.ms/autogen-dc) discussion in the [#autogenbench](https://discord.com/channels/1153072414184452236/1199851779328847902) channel! +Finally, we want to end this blog post with an open call for contributions. AutoGenBench is still nascent, and has much opportunity for improvement. New benchmarks are constantly being published, and will need to be added. Everyone may have their own distinct set of metrics that they care most about optimizing, and these metrics should be onboarded. To this end, we welcome any and all contributions to this corner of the AutoGen project. If contributing is something that interests you, please see the [contributor’s guide](https://github.com/autogenhub/build-with-autogen/blob/main/samples/tools/autogenbench/CONTRIBUTING.md) and join our [Discord](https://aka.ms/autogen-dc) discussion in the [#autogenbench](https://discord.com/channels/1153072414184452236/1199851779328847902) channel! diff --git a/website/blog/2024-02-02-AutoAnny/index.mdx b/website/blog/2024-02-02-AutoAnny/index.mdx index 7b59761f0b8a..860331a9e5f0 100644 --- a/website/blog/2024-02-02-AutoAnny/index.mdx +++ b/website/blog/2024-02-02-AutoAnny/index.mdx @@ -16,7 +16,7 @@ import AutoAnnyLogo from './img/AutoAnnyLogo.jpg'; ## TL;DR We are adding a new sample app called Anny-- a simple Discord bot powered -by AutoGen that's intended to assist AutoGen Devs. See [`samples/apps/auto-anny`](https://github.com/autogen-ai/build-with-autogen/tree/main/samples/apps/auto-anny) for details. +by AutoGen that's intended to assist AutoGen Devs. See [`samples/apps/auto-anny`](https://github.com/autogenhub/build-with-autogen/tree/main/samples/apps/auto-anny) for details. ## Introduction @@ -41,7 +41,7 @@ The current version of Anny is pretty simple -- it uses the Discord API and Auto For example, it supports commands like `/heyanny help` for command listing, `/heyanny ghstatus` for GitHub activity summary, `/heyanny ghgrowth` for GitHub repo growth indicators, and `/heyanny ghunattended` for listing unattended issues and PRs. Most of these commands use multiple AutoGen agents to accomplish these task. -To use Anny, please follow instructions in [`samples/apps/auto-anny`](https://github.com/autogen-ai/build-with-autogen/tree/main/samples/apps/auto-anny). +To use Anny, please follow instructions in [`samples/apps/auto-anny`](https://github.com/autogenhub/build-with-autogen/tree/main/samples/apps/auto-anny). ## It's Not Just for AutoGen If you're an open-source developer managing your own project, you can probably relate to our challenges. We invite you to check out Anny and contribute to its development and roadmap. diff --git a/website/blog/2024-02-11-FSM-GroupChat/index.mdx b/website/blog/2024-02-11-FSM-GroupChat/index.mdx index d96d7d993c2b..7ab50021bbd5 100644 --- a/website/blog/2024-02-11-FSM-GroupChat/index.mdx +++ b/website/blog/2024-02-11-FSM-GroupChat/index.mdx @@ -285,4 +285,4 @@ pip install autogen[graph] ``` ## Notebook examples -More examples can be found in the [notebook](https://autogen-ai.github.io/autogen/docs/notebooks/agentchat_groupchat_finite_state_machine/). The notebook includes more examples of possible transition paths such as (1) hub and spoke, (2) sequential team operations, and (3) think aloud and debate. It also uses the function `visualize_speaker_transitions_dict` from `autogen.graph_utils` to visualize the various graphs. +More examples can be found in the [notebook](https://autogenhub.github.io/autogen/docs/notebooks/agentchat_groupchat_finite_state_machine/). The notebook includes more examples of possible transition paths such as (1) hub and spoke, (2) sequential team operations, and (3) think aloud and debate. It also uses the function `visualize_speaker_transitions_dict` from `autogen.graph_utils` to visualize the various graphs. diff --git a/website/blog/2024-05-24-Agent/index.mdx b/website/blog/2024-05-24-Agent/index.mdx index 3aaaca23df84..0e063ea44804 100644 --- a/website/blog/2024-05-24-Agent/index.mdx +++ b/website/blog/2024-05-24-Agent/index.mdx @@ -143,7 +143,7 @@ better with low cost. [EcoAssistant](/blog/2023/11/09/EcoAssistant) is a good ex There are certainly tradeoffs to make. The large design space of multi-agents offers these tradeoffs and opens up new opportunities for optimization. -> Over a year since the debut of Ask AT&T, the generative AI platform to which we’ve onboarded over 80,000 users, AT&T has been enhancing its capabilities by incorporating 'AI Agents'. These agents, powered by the Autogen framework pioneered by Microsoft (https://autogen-ai.github.io/autogen/blog/2023/12/01/AutoGenStudio/), are designed to tackle complicated workflows and tasks that traditional language models find challenging. To drive collaboration, AT&T is contributing back to the open-source project by introducing features that facilitate enhanced security and role-based access for various projects and data. +> Over a year since the debut of Ask AT&T, the generative AI platform to which we’ve onboarded over 80,000 users, AT&T has been enhancing its capabilities by incorporating 'AI Agents'. These agents, powered by the Autogen framework pioneered by Microsoft (https://autogenhub.github.io/autogen/blog/2023/12/01/AutoGenStudio/), are designed to tackle complicated workflows and tasks that traditional language models find challenging. To drive collaboration, AT&T is contributing back to the open-source project by introducing features that facilitate enhanced security and role-based access for various projects and data. > > > Andy Markus, Chief Data Officer at AT&T diff --git a/website/blog/2024-06-21-AgentEval/index.mdx b/website/blog/2024-06-21-AgentEval/index.mdx index 12babeec3e63..ce2ee4192951 100644 --- a/website/blog/2024-06-21-AgentEval/index.mdx +++ b/website/blog/2024-06-21-AgentEval/index.mdx @@ -15,13 +15,13 @@ tags: [LLM, GPT, evaluation, task utility] TL;DR: * As a developer, how can you assess the utility and effectiveness of an LLM-powered application in helping end users with their tasks? -* To shed light on the question above, we previously introduced [`AgentEval`](https://autogen-ai.github.io/autogen/blog/2023/11/20/AgentEval/) — a framework to assess the multi-dimensional utility of any LLM-powered application crafted to assist users in specific tasks. We have now embedded it as part of the AutoGen library to ease developer adoption. +* To shed light on the question above, we previously introduced [`AgentEval`](https://autogenhub.github.io/autogen/blog/2023/11/20/AgentEval/) — a framework to assess the multi-dimensional utility of any LLM-powered application crafted to assist users in specific tasks. We have now embedded it as part of the AutoGen library to ease developer adoption. * Here, we introduce an updated version of AgentEval that includes a verification process to estimate the robustness of the QuantifierAgent. More details can be found in [this paper](https://arxiv.org/abs/2405.02178). ## Introduction -Previously introduced [`AgentEval`](https://autogen-ai.github.io/autogen/blog/2023/11/20/AgentEval/) is a comprehensive framework designed to bridge the gap in assessing the utility of LLM-powered applications. It leverages recent advancements in LLMs to offer a scalable and cost-effective alternative to traditional human evaluations. The framework comprises three main agents: `CriticAgent`, `QuantifierAgent`, and `VerifierAgent`, each playing a crucial role in assessing the task utility of an application. +Previously introduced [`AgentEval`](https://autogenhub.github.io/autogen/blog/2023/11/20/AgentEval/) is a comprehensive framework designed to bridge the gap in assessing the utility of LLM-powered applications. It leverages recent advancements in LLMs to offer a scalable and cost-effective alternative to traditional human evaluations. The framework comprises three main agents: `CriticAgent`, `QuantifierAgent`, and `VerifierAgent`, each playing a crucial role in assessing the task utility of an application. **CriticAgent: Defining the Criteria** diff --git a/website/blog/2024-06-24-AltModels-Classes/index.mdx b/website/blog/2024-06-24-AltModels-Classes/index.mdx index 251faebbe716..29ec6a563418 100644 --- a/website/blog/2024-06-24-AltModels-Classes/index.mdx +++ b/website/blog/2024-06-24-AltModels-Classes/index.mdx @@ -48,7 +48,7 @@ AutoGen's ability to associate specific configurations to each agent means you c The common requirements of text generation and function/tool calling are supported by these client classes. -Multi-modal support, such as for image/audio/video, is an area of active development. The [Google Gemini](https://autogen-ai.github.io/autogen/docs/topics/non-openai-models/cloud-gemini) client class can be +Multi-modal support, such as for image/audio/video, is an area of active development. The [Google Gemini](https://autogenhub.github.io/autogen/docs/topics/non-openai-models/cloud-gemini) client class can be used to create a multimodal agent. ## Tips @@ -58,9 +58,9 @@ Here are some tips when working with these client classes: - **Most to least capable** - start with larger models and get your workflow working, then iteratively try smaller models. - **Right model** - choose one that's suited to your task, whether it's coding, function calling, knowledge, or creative writing. - **Agent names** - these cloud providers do not use the `name` field on a message, so be sure to use your agent's name in their `system_message` and `description` fields, as well as instructing the LLM to 'act as' them. This is particularly important for "auto" speaker selection in group chats as we need to guide the LLM to choose the next agent based on a name, so tweak `select_speaker_message_template`, `select_speaker_prompt_template`, and `select_speaker_auto_multiple_template` with more guidance. -- **Context length** - as your conversation gets longer, models need to support larger context lengths, be mindful of what the model supports and consider using [Transform Messages](https://autogen-ai.github.io/autogen/docs/topics/handling_long_contexts/intro_to_transform_messages) to manage context size. -- **Provider parameters** - providers have parameters you can set such as temperature, maximum tokens, top-k, top-p, and safety. See each client class in AutoGen's [API Reference](https://autogen-ai.github.io/autogen/docs/reference/oai/gemini) or [documentation](https://autogen-ai.github.io/autogen/docs/topics/non-openai-models/cloud-gemini) for details. -- **Prompts** - prompt engineering is critical in guiding smaller LLMs to do what you need. [ConversableAgent](https://autogen-ai.github.io/autogen/docs/reference/agentchat/conversable_agent), [GroupChat](https://autogen-ai.github.io/autogen/docs/reference/agentchat/groupchat), [UserProxyAgent](https://autogen-ai.github.io/autogen/docs/reference/agentchat/user_proxy_agent), and [AssistantAgent](https://autogen-ai.github.io/autogen/docs/reference/agentchat/assistant_agent) all have customizable prompt attributes that you can tailor. Here are some prompting tips from [Anthropic](https://docs.anthropic.com/en/docs/build-with-claude/prompt-engineering/overview)([+Library](https://docs.anthropic.com/en/prompt-library/library)), [Mistral AI](https://docs.mistral.ai/guides/prompting_capabilities/), [Together.AI](https://docs.together.ai/docs/examples), and [Meta](https://llama.meta.com/docs/how-to-guides/prompting/). +- **Context length** - as your conversation gets longer, models need to support larger context lengths, be mindful of what the model supports and consider using [Transform Messages](https://autogenhub.github.io/autogen/docs/topics/handling_long_contexts/intro_to_transform_messages) to manage context size. +- **Provider parameters** - providers have parameters you can set such as temperature, maximum tokens, top-k, top-p, and safety. See each client class in AutoGen's [API Reference](https://autogenhub.github.io/autogen/docs/reference/oai/gemini) or [documentation](https://autogenhub.github.io/autogen/docs/topics/non-openai-models/cloud-gemini) for details. +- **Prompts** - prompt engineering is critical in guiding smaller LLMs to do what you need. [ConversableAgent](https://autogenhub.github.io/autogen/docs/reference/agentchat/conversable_agent), [GroupChat](https://autogenhub.github.io/autogen/docs/reference/agentchat/groupchat), [UserProxyAgent](https://autogenhub.github.io/autogen/docs/reference/agentchat/user_proxy_agent), and [AssistantAgent](https://autogenhub.github.io/autogen/docs/reference/agentchat/assistant_agent) all have customizable prompt attributes that you can tailor. Here are some prompting tips from [Anthropic](https://docs.anthropic.com/en/docs/build-with-claude/prompt-engineering/overview)([+Library](https://docs.anthropic.com/en/prompt-library/library)), [Mistral AI](https://docs.mistral.ai/guides/prompting_capabilities/), [Together.AI](https://docs.together.ai/docs/examples), and [Meta](https://llama.meta.com/docs/how-to-guides/prompting/). - **Help!** - reach out on the AutoGen [Discord](https://discord.gg/pAbnFJrkgZ) or [log an issue](https://github.com/microsoft/autogen/issues) if you need help with or can help improve these client classes. Now it's time to try them out. @@ -109,7 +109,7 @@ Add your model configurations to the `OAI_CONFIG_LIST`. Ensure you specify the ` ### Usage -The `[config_list_from_json](https://autogen-ai.github.io/autogen/docs/reference/oai/openai_utils/#config_list_from_json)` function loads a list of configurations from an environment variable or a json file. +The `[config_list_from_json](https://autogenhub.github.io/autogen/docs/reference/oai/openai_utils/#config_list_from_json)` function loads a list of configurations from an environment variable or a json file. ```py import autogen @@ -150,7 +150,7 @@ user_proxy.intiate_chat(assistant, message="Write python code to print Hello Wor ``` -**NOTE: To integrate this setup into GroupChat, follow the [tutorial](https://autogen-ai.github.io/autogen/docs/notebooks/agentchat_groupchat) with the same config as above.** +**NOTE: To integrate this setup into GroupChat, follow the [tutorial](https://autogenhub.github.io/autogen/docs/notebooks/agentchat_groupchat) with the same config as above.** ## Function Calls @@ -390,4 +390,4 @@ So we can see how Anthropic's Sonnet is able to suggest multiple tools in a sing ## More tips and tricks -For an interesting chess game between Anthropic's Sonnet and Mistral's Mixtral, we've put together a sample notebook that highlights some of the tips and tricks for working with non-OpenAI LLMs. [See the notebook here](https://autogen-ai.github.io/autogen/docs/notebooks/agentchat_nested_chats_chess_altmodels). +For an interesting chess game between Anthropic's Sonnet and Mistral's Mixtral, we've put together a sample notebook that highlights some of the tips and tricks for working with non-OpenAI LLMs. [See the notebook here](https://autogenhub.github.io/autogen/docs/notebooks/agentchat_nested_chats_chess_altmodels). diff --git a/website/blog/2024-07-25-AgentOps/index.mdx b/website/blog/2024-07-25-AgentOps/index.mdx index 49cad634428d..6be18abb2968 100644 --- a/website/blog/2024-07-25-AgentOps/index.mdx +++ b/website/blog/2024-07-25-AgentOps/index.mdx @@ -28,7 +28,7 @@ Agent observability, in its most basic form, allows you to monitor, troubleshoot ## Why AgentOps? -AutoGen has simplified the process of building agents, yet we recognized the need for an easy-to-use, native tool for observability. We've previously discussed AgentOps, and now we're excited to partner with AgentOps as our official agent observability tool. Integrating AgentOps with AutoGen simplifies your workflow and boosts your agents' performance through clear observability, ensuring they operate optimally. For more details, check out our [AgentOps documentation](https://autogen-ai.github.io/autogen/docs/notebooks/agentchat_agentops/). +AutoGen has simplified the process of building agents, yet we recognized the need for an easy-to-use, native tool for observability. We've previously discussed AgentOps, and now we're excited to partner with AgentOps as our official agent observability tool. Integrating AgentOps with AutoGen simplifies your workflow and boosts your agents' performance through clear observability, ensuring they operate optimally. For more details, check out our [AgentOps documentation](https://autogenhub.github.io/autogen/docs/notebooks/agentchat_agentops/). Agent Session Replay diff --git a/website/docs/Examples.md b/website/docs/Examples.md index af3d5cb10213..9f5f9424d8f0 100644 --- a/website/docs/Examples.md +++ b/website/docs/Examples.md @@ -40,7 +40,7 @@ Links to notebook examples: - Automated Continual Learning from New Data - [View Notebook](/docs/notebooks/agentchat_stream) -- [AutoAnny](https://github.com/autogen-ai/build-with-autogen/tree/main/samples/apps/auto-anny) - A Discord bot built using AutoGen +- [AutoAnny](https://github.com/autogenhub/build-with-autogen/tree/main/samples/apps/auto-anny) - A Discord bot built using AutoGen ### Tool Use @@ -59,7 +59,7 @@ Links to notebook examples: ### Human Involvement -- Simple example in ChatGPT style [View example](https://github.com/autogen-ai/build-with-autogen/blob/main/samples/simple_chat.py) +- Simple example in ChatGPT style [View example](https://github.com/autogenhub/build-with-autogen/blob/main/samples/simple_chat.py) - Auto Code Generation, Execution, Debugging and **Human Feedback** - [View Notebook](/docs/notebooks/agentchat_human_feedback) - Automated Task Solving with GPT-4 + **Multiple Human Users** - [View Notebook](/docs/notebooks/agentchat_two_users) - Agent Chat with **Async Human Inputs** - [View Notebook](/docs/notebooks/async_human_input) @@ -91,7 +91,7 @@ Links to notebook examples: ### Long Context Handling - + - Long Context Handling as A Capability - [View Notebook](/docs/notebooks/agentchat_transform_messages) ### Evaluation and Assessment @@ -111,7 +111,7 @@ Links to notebook examples: ### Utilities -- API Unification - [View Documentation with Code Example](https://autogen-ai.github.io/autogen/docs/Use-Cases/enhanced_inference/#api-unification) +- API Unification - [View Documentation with Code Example](https://autogenhub.github.io/autogen/docs/Use-Cases/enhanced_inference/#api-unification) - Utility Functions to Help Managing API configurations effectively - [View Notebook](/docs/topics/llm_configuration) ### Inference Hyperparameters Tuning @@ -120,5 +120,5 @@ AutoGen offers a cost-effective hyperparameter optimization technique [EcoOptiGe Please find documentation about this feature [here](/docs/Use-Cases/enhanced_inference). Links to notebook examples: -* [Optimize for Code Generation](https://github.com/autogen-ai/autogen/blob/main/notebook/oai_completion.ipynb) | [Open in colab](https://colab.research.google.com/github/autogen-ai/autogen/blob/main/notebook/oai_completion.ipynb) -* [Optimize for Math](https://github.com/autogen-ai/autogen/blob/main/notebook/oai_chatgpt_gpt4.ipynb) | [Open in colab](https://colab.research.google.com/github/autogen-ai/autogen/blob/main/notebook/oai_chatgpt_gpt4.ipynb) +* [Optimize for Code Generation](https://github.com/autogenhub/autogen/blob/main/notebook/oai_completion.ipynb) | [Open in colab](https://colab.research.google.com/github/autogenhub/autogen/blob/main/notebook/oai_completion.ipynb) +* [Optimize for Math](https://github.com/autogenhub/autogen/blob/main/notebook/oai_chatgpt_gpt4.ipynb) | [Open in colab](https://colab.research.google.com/github/autogenhub/autogen/blob/main/notebook/oai_chatgpt_gpt4.ipynb) diff --git a/website/docs/FAQ.mdx b/website/docs/FAQ.mdx index 07b18e9d896d..842920c78f50 100644 --- a/website/docs/FAQ.mdx +++ b/website/docs/FAQ.mdx @@ -34,8 +34,8 @@ In version >=1, OpenAI renamed their `api_base` parameter to `base_url`. So for Yes. You currently have two options: -- Autogen can work with any API endpoint which complies with OpenAI-compatible RESTful APIs - e.g. serving local LLM via FastChat or LM Studio. Please check https://autogen-ai.github.io/autogen/blog/2023/07/14/Local-LLMs for an example. -- You can supply your own custom model implementation and use it with Autogen. Please check https://autogen-ai.github.io/autogen/blog/2024/01/26/Custom-Models for more information. +- Autogen can work with any API endpoint which complies with OpenAI-compatible RESTful APIs - e.g. serving local LLM via FastChat or LM Studio. Please check https://autogenhub.github.io/autogen/blog/2023/07/14/Local-LLMs for an example. +- You can supply your own custom model implementation and use it with Autogen. Please check https://autogenhub.github.io/autogen/blog/2024/01/26/Custom-Models for more information. ## Handle Rate Limit Error and Timeout Error @@ -52,9 +52,9 @@ When you call `initiate_chat` the conversation restarts by default. You can use ## `max_consecutive_auto_reply` vs `max_turn` vs `max_round` -- [`max_consecutive_auto_reply`](https://autogen-ai.github.io/autogen/docs/reference/agentchat/conversable_agent#max_consecutive_auto_reply) the maximum number of consecutive auto replie (a reply from an agent without human input is considered an auto reply). It plays a role when `human_input_mode` is not "ALWAYS". -- [`max_turns` in `ConversableAgent.initiate_chat`](https://autogen-ai.github.io/autogen/docs/reference/agentchat/conversable_agent#initiate_chat) limits the number of conversation turns between two conversable agents (without differentiating auto-reply and reply/input from human) -- [`max_round` in GroupChat](https://autogen-ai.github.io/autogen/docs/reference/agentchat/groupchat#groupchat-objects) specifies the maximum number of rounds in a group chat session. +- [`max_consecutive_auto_reply`](https://autogenhub.github.io/autogen/docs/reference/agentchat/conversable_agent#max_consecutive_auto_reply) the maximum number of consecutive auto replie (a reply from an agent without human input is considered an auto reply). It plays a role when `human_input_mode` is not "ALWAYS". +- [`max_turns` in `ConversableAgent.initiate_chat`](https://autogenhub.github.io/autogen/docs/reference/agentchat/conversable_agent#initiate_chat) limits the number of conversation turns between two conversable agents (without differentiating auto-reply and reply/input from human) +- [`max_round` in GroupChat](https://autogenhub.github.io/autogen/docs/reference/agentchat/groupchat#groupchat-objects) specifies the maximum number of rounds in a group chat session. ## How do we decide what LLM is used for each agent? How many agents can be used? How do we decide how many agents in the group? @@ -106,7 +106,7 @@ for each code-execution agent, or set `AUTOGEN_USE_DOCKER` to `False` as an environment variable. You can also develop your AutoGen application in a docker container. -For example, when developing in [GitHub codespace](https://codespaces.new/autogen-ai/autogen?quickstart=1), +For example, when developing in [GitHub codespace](https://codespaces.new/autogenhub/autogen?quickstart=1), AutoGen runs in a docker container. If you are not developing in GitHub Codespaces, follow instructions [here](installation/Docker.md#option-1-install-and-run-autogen-in-docker) @@ -159,7 +159,7 @@ Explanation: Per [this gist](https://gist.github.com/defulmere/8b9695e415a442710 (from [issue #478](https://github.com/microsoft/autogen/issues/478)) -See here https://autogen-ai.github.io/autogen/docs/reference/agentchat/conversable_agent/#register_reply +See here https://autogenhub.github.io/autogen/docs/reference/agentchat/conversable_agent/#register_reply For example, you can register a reply function that gets called when `generate_reply` is called for an agent. @@ -188,11 +188,11 @@ In the above, we register a `print_messages` function that is called each time t ## How to get last message ? -Refer to https://autogen-ai.github.io/autogen/docs/reference/agentchat/conversable_agent/#last_message +Refer to https://autogenhub.github.io/autogen/docs/reference/agentchat/conversable_agent/#last_message ## How to get each agent message ? -Please refer to https://autogen-ai.github.io/autogen/docs/reference/agentchat/conversable_agent#chat_messages +Please refer to https://autogenhub.github.io/autogen/docs/reference/agentchat/conversable_agent#chat_messages ## When using autogen docker, is it always necessary to reinstall modules? diff --git a/website/docs/Getting-Started.mdx b/website/docs/Getting-Started.mdx index a66838c36024..5510b4f0443c 100644 --- a/website/docs/Getting-Started.mdx +++ b/website/docs/Getting-Started.mdx @@ -121,7 +121,7 @@ Learn more about configuring LLMs for agents [here](/docs/topics/llm_configurati #### Multi-Agent Conversation Framework Autogen enables the next-gen LLM applications with a generic multi-agent conversation framework. It offers customizable and conversable agents which integrate LLMs, tools, and humans. -By automating chat among multiple capable agents, one can easily make them collectively perform tasks autonomously or with human feedback, including tasks that require using tools via code. For [example](https://github.com/autogen-ai/autogen/blob/main/test/twoagent.py), +By automating chat among multiple capable agents, one can easily make them collectively perform tasks autonomously or with human feedback, including tasks that require using tools via code. For [example](https://github.com/autogenhub/autogen/blob/main/test/twoagent.py), The figure below shows an example conversation flow with AutoGen. @@ -138,10 +138,10 @@ The figure below shows an example conversation flow with AutoGen. - Follow on [Twitter](https://twitter.com/Chi_Wang_) - See our [roadmaps](https://aka.ms/autogen-roadmap) -If you like our project, please give it a [star](https://github.com/autogen-ai/autogen/stargazers) on GitHub. If you are interested in contributing, please read [Contributor's Guide](/docs/contributor-guide/contributing). +If you like our project, please give it a [star](https://github.com/autogenhub/autogen/stargazers) on GitHub. If you are interested in contributing, please read [Contributor's Guide](/docs/contributor-guide/contributing).