daviddogukan commited on
Commit
f17b8db
·
1 Parent(s): 392c3f2

Add dependencies for multi-LLM comparison tool

Browse files

- Add gradio for UI framework
- Add OpenAI, Anthropic, Google, Cohere, Mistral API clients
- Add pandas for data handling and CSV export
- Add aiohttp for async HTTP requests

Files changed (1) hide show
  1. requirements.txt +9 -0
requirements.txt ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ gradio>=4.0.0
2
+ openai>=1.0.0
3
+ anthropic>=0.18.0
4
+ google-generativeai>=0.3.0
5
+ cohere>=5.0.0
6
+ mistralai>=0.1.0
7
+ pandas>=2.0.0
8
+ aiohttp>=3.9.0
9
+