From 8f3d56d18c9db0063622d45caf11b625c533f87a Mon Sep 17 00:00:00 2001 From: seehi <6580@pm.me> Date: Mon, 26 Feb 2024 14:46:07 +0800 Subject: [PATCH] update requirements.txt --- tests/metagpt/rag/factories/test_llm.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/metagpt/rag/factories/test_llm.py b/tests/metagpt/rag/factories/test_llm.py index 21f5ee823..94e3a8f67 100644 --- a/tests/metagpt/rag/factories/test_llm.py +++ b/tests/metagpt/rag/factories/test_llm.py @@ -1,5 +1,4 @@ import pytest -from llama_index.llms.anthropic import Anthropic from llama_index.llms.azure_openai import AzureOpenAI from llama_index.llms.gemini import Gemini from llama_index.llms.ollama import Ollama @@ -29,7 +28,6 @@ class TestRAGLLMFactory: [ (LLMType.OPENAI, OpenAI), (LLMType.AZURE, AzureOpenAI), - (LLMType.ANTHROPIC, Anthropic), (LLMType.GEMINI, Gemini), (LLMType.OLLAMA, Ollama), ],