kenken999 commited on
Commit
6ee56ac
1 Parent(s): 22165c2
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. Dockerfile +1 -1
  2. __pycache__/main.cpython-39.pyc +0 -0
  3. __pycache__/proxy_server.cpython-39.pyc +0 -0
  4. __pycache__/utils.cpython-39.pyc +0 -0
  5. litellm/__pycache__/__init__.cpython-39.pyc +0 -0
  6. litellm/__pycache__/_logging.cpython-39.pyc +0 -0
  7. litellm/__pycache__/budget_manager.cpython-39.pyc +0 -0
  8. litellm/__pycache__/caching.cpython-39.pyc +0 -0
  9. litellm/__pycache__/exceptions.cpython-39.pyc +0 -0
  10. litellm/__pycache__/main.cpython-39.pyc +0 -0
  11. litellm/__pycache__/router.cpython-39.pyc +0 -0
  12. litellm/__pycache__/timeout.cpython-39.pyc +0 -0
  13. litellm/__pycache__/utils.cpython-39.pyc +0 -0
  14. litellm/integrations/__pycache__/__init__.cpython-39.pyc +0 -0
  15. litellm/integrations/__pycache__/aispend.cpython-39.pyc +0 -0
  16. litellm/integrations/__pycache__/berrispend.cpython-39.pyc +0 -0
  17. litellm/integrations/__pycache__/custom_logger.cpython-39.pyc +0 -0
  18. litellm/integrations/__pycache__/dynamodb.cpython-39.pyc +0 -0
  19. litellm/integrations/__pycache__/helicone.cpython-39.pyc +0 -0
  20. litellm/integrations/__pycache__/langfuse.cpython-39.pyc +0 -0
  21. litellm/integrations/__pycache__/langsmith.cpython-39.pyc +0 -0
  22. litellm/integrations/__pycache__/litedebugger.cpython-39.pyc +0 -0
  23. litellm/integrations/__pycache__/llmonitor.cpython-39.pyc +0 -0
  24. litellm/integrations/__pycache__/prompt_layer.cpython-39.pyc +0 -0
  25. litellm/integrations/__pycache__/s3.cpython-39.pyc +0 -0
  26. litellm/integrations/__pycache__/supabase.cpython-39.pyc +0 -0
  27. litellm/integrations/__pycache__/traceloop.cpython-39.pyc +0 -0
  28. litellm/integrations/__pycache__/weights_biases.cpython-39.pyc +0 -0
  29. litellm/llms/__pycache__/__init__.cpython-39.pyc +0 -0
  30. litellm/llms/__pycache__/ai21.cpython-39.pyc +0 -0
  31. litellm/llms/__pycache__/aleph_alpha.cpython-39.pyc +0 -0
  32. litellm/llms/__pycache__/anthropic.cpython-39.pyc +0 -0
  33. litellm/llms/__pycache__/azure.cpython-39.pyc +0 -0
  34. litellm/llms/__pycache__/base.cpython-39.pyc +0 -0
  35. litellm/llms/__pycache__/baseten.cpython-39.pyc +0 -0
  36. litellm/llms/__pycache__/bedrock.cpython-39.pyc +0 -0
  37. litellm/llms/__pycache__/cloudflare.cpython-39.pyc +0 -0
  38. litellm/llms/__pycache__/cohere.cpython-39.pyc +0 -0
  39. litellm/llms/__pycache__/gemini.cpython-39.pyc +0 -0
  40. litellm/llms/__pycache__/huggingface_restapi.cpython-39.pyc +0 -0
  41. litellm/llms/__pycache__/maritalk.cpython-39.pyc +0 -0
  42. litellm/llms/__pycache__/nlp_cloud.cpython-39.pyc +0 -0
  43. litellm/llms/__pycache__/ollama.cpython-39.pyc +0 -0
  44. litellm/llms/__pycache__/ollama_chat.cpython-39.pyc +0 -0
  45. litellm/llms/__pycache__/oobabooga.cpython-39.pyc +0 -0
  46. litellm/llms/__pycache__/openai.cpython-39.pyc +0 -0
  47. litellm/llms/__pycache__/openrouter.cpython-39.pyc +0 -0
  48. litellm/llms/__pycache__/palm.cpython-39.pyc +0 -0
  49. litellm/llms/__pycache__/petals.cpython-39.pyc +0 -0
  50. litellm/llms/__pycache__/replicate.cpython-39.pyc +0 -0
Dockerfile CHANGED
@@ -18,4 +18,4 @@ WORKDIR $HOME/app
18
 
19
  COPY --chown=user . $HOME/app
20
 
21
- CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]
 
18
 
19
  COPY --chown=user . $HOME/app
20
 
21
+ CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860", "--reload"]
__pycache__/main.cpython-39.pyc CHANGED
Binary files a/__pycache__/main.cpython-39.pyc and b/__pycache__/main.cpython-39.pyc differ
 
__pycache__/proxy_server.cpython-39.pyc CHANGED
Binary files a/__pycache__/proxy_server.cpython-39.pyc and b/__pycache__/proxy_server.cpython-39.pyc differ
 
__pycache__/utils.cpython-39.pyc CHANGED
Binary files a/__pycache__/utils.cpython-39.pyc and b/__pycache__/utils.cpython-39.pyc differ
 
litellm/__pycache__/__init__.cpython-39.pyc CHANGED
Binary files a/litellm/__pycache__/__init__.cpython-39.pyc and b/litellm/__pycache__/__init__.cpython-39.pyc differ
 
litellm/__pycache__/_logging.cpython-39.pyc CHANGED
Binary files a/litellm/__pycache__/_logging.cpython-39.pyc and b/litellm/__pycache__/_logging.cpython-39.pyc differ
 
litellm/__pycache__/budget_manager.cpython-39.pyc CHANGED
Binary files a/litellm/__pycache__/budget_manager.cpython-39.pyc and b/litellm/__pycache__/budget_manager.cpython-39.pyc differ
 
litellm/__pycache__/caching.cpython-39.pyc CHANGED
Binary files a/litellm/__pycache__/caching.cpython-39.pyc and b/litellm/__pycache__/caching.cpython-39.pyc differ
 
litellm/__pycache__/exceptions.cpython-39.pyc CHANGED
Binary files a/litellm/__pycache__/exceptions.cpython-39.pyc and b/litellm/__pycache__/exceptions.cpython-39.pyc differ
 
litellm/__pycache__/main.cpython-39.pyc CHANGED
Binary files a/litellm/__pycache__/main.cpython-39.pyc and b/litellm/__pycache__/main.cpython-39.pyc differ
 
litellm/__pycache__/router.cpython-39.pyc CHANGED
Binary files a/litellm/__pycache__/router.cpython-39.pyc and b/litellm/__pycache__/router.cpython-39.pyc differ
 
litellm/__pycache__/timeout.cpython-39.pyc CHANGED
Binary files a/litellm/__pycache__/timeout.cpython-39.pyc and b/litellm/__pycache__/timeout.cpython-39.pyc differ
 
litellm/__pycache__/utils.cpython-39.pyc CHANGED
Binary files a/litellm/__pycache__/utils.cpython-39.pyc and b/litellm/__pycache__/utils.cpython-39.pyc differ
 
litellm/integrations/__pycache__/__init__.cpython-39.pyc CHANGED
Binary files a/litellm/integrations/__pycache__/__init__.cpython-39.pyc and b/litellm/integrations/__pycache__/__init__.cpython-39.pyc differ
 
litellm/integrations/__pycache__/aispend.cpython-39.pyc CHANGED
Binary files a/litellm/integrations/__pycache__/aispend.cpython-39.pyc and b/litellm/integrations/__pycache__/aispend.cpython-39.pyc differ
 
litellm/integrations/__pycache__/berrispend.cpython-39.pyc CHANGED
Binary files a/litellm/integrations/__pycache__/berrispend.cpython-39.pyc and b/litellm/integrations/__pycache__/berrispend.cpython-39.pyc differ
 
litellm/integrations/__pycache__/custom_logger.cpython-39.pyc CHANGED
Binary files a/litellm/integrations/__pycache__/custom_logger.cpython-39.pyc and b/litellm/integrations/__pycache__/custom_logger.cpython-39.pyc differ
 
litellm/integrations/__pycache__/dynamodb.cpython-39.pyc CHANGED
Binary files a/litellm/integrations/__pycache__/dynamodb.cpython-39.pyc and b/litellm/integrations/__pycache__/dynamodb.cpython-39.pyc differ
 
litellm/integrations/__pycache__/helicone.cpython-39.pyc CHANGED
Binary files a/litellm/integrations/__pycache__/helicone.cpython-39.pyc and b/litellm/integrations/__pycache__/helicone.cpython-39.pyc differ
 
litellm/integrations/__pycache__/langfuse.cpython-39.pyc CHANGED
Binary files a/litellm/integrations/__pycache__/langfuse.cpython-39.pyc and b/litellm/integrations/__pycache__/langfuse.cpython-39.pyc differ
 
litellm/integrations/__pycache__/langsmith.cpython-39.pyc CHANGED
Binary files a/litellm/integrations/__pycache__/langsmith.cpython-39.pyc and b/litellm/integrations/__pycache__/langsmith.cpython-39.pyc differ
 
litellm/integrations/__pycache__/litedebugger.cpython-39.pyc CHANGED
Binary files a/litellm/integrations/__pycache__/litedebugger.cpython-39.pyc and b/litellm/integrations/__pycache__/litedebugger.cpython-39.pyc differ
 
litellm/integrations/__pycache__/llmonitor.cpython-39.pyc CHANGED
Binary files a/litellm/integrations/__pycache__/llmonitor.cpython-39.pyc and b/litellm/integrations/__pycache__/llmonitor.cpython-39.pyc differ
 
litellm/integrations/__pycache__/prompt_layer.cpython-39.pyc CHANGED
Binary files a/litellm/integrations/__pycache__/prompt_layer.cpython-39.pyc and b/litellm/integrations/__pycache__/prompt_layer.cpython-39.pyc differ
 
litellm/integrations/__pycache__/s3.cpython-39.pyc CHANGED
Binary files a/litellm/integrations/__pycache__/s3.cpython-39.pyc and b/litellm/integrations/__pycache__/s3.cpython-39.pyc differ
 
litellm/integrations/__pycache__/supabase.cpython-39.pyc CHANGED
Binary files a/litellm/integrations/__pycache__/supabase.cpython-39.pyc and b/litellm/integrations/__pycache__/supabase.cpython-39.pyc differ
 
litellm/integrations/__pycache__/traceloop.cpython-39.pyc CHANGED
Binary files a/litellm/integrations/__pycache__/traceloop.cpython-39.pyc and b/litellm/integrations/__pycache__/traceloop.cpython-39.pyc differ
 
litellm/integrations/__pycache__/weights_biases.cpython-39.pyc CHANGED
Binary files a/litellm/integrations/__pycache__/weights_biases.cpython-39.pyc and b/litellm/integrations/__pycache__/weights_biases.cpython-39.pyc differ
 
litellm/llms/__pycache__/__init__.cpython-39.pyc CHANGED
Binary files a/litellm/llms/__pycache__/__init__.cpython-39.pyc and b/litellm/llms/__pycache__/__init__.cpython-39.pyc differ
 
litellm/llms/__pycache__/ai21.cpython-39.pyc CHANGED
Binary files a/litellm/llms/__pycache__/ai21.cpython-39.pyc and b/litellm/llms/__pycache__/ai21.cpython-39.pyc differ
 
litellm/llms/__pycache__/aleph_alpha.cpython-39.pyc CHANGED
Binary files a/litellm/llms/__pycache__/aleph_alpha.cpython-39.pyc and b/litellm/llms/__pycache__/aleph_alpha.cpython-39.pyc differ
 
litellm/llms/__pycache__/anthropic.cpython-39.pyc CHANGED
Binary files a/litellm/llms/__pycache__/anthropic.cpython-39.pyc and b/litellm/llms/__pycache__/anthropic.cpython-39.pyc differ
 
litellm/llms/__pycache__/azure.cpython-39.pyc CHANGED
Binary files a/litellm/llms/__pycache__/azure.cpython-39.pyc and b/litellm/llms/__pycache__/azure.cpython-39.pyc differ
 
litellm/llms/__pycache__/base.cpython-39.pyc CHANGED
Binary files a/litellm/llms/__pycache__/base.cpython-39.pyc and b/litellm/llms/__pycache__/base.cpython-39.pyc differ
 
litellm/llms/__pycache__/baseten.cpython-39.pyc CHANGED
Binary files a/litellm/llms/__pycache__/baseten.cpython-39.pyc and b/litellm/llms/__pycache__/baseten.cpython-39.pyc differ
 
litellm/llms/__pycache__/bedrock.cpython-39.pyc CHANGED
Binary files a/litellm/llms/__pycache__/bedrock.cpython-39.pyc and b/litellm/llms/__pycache__/bedrock.cpython-39.pyc differ
 
litellm/llms/__pycache__/cloudflare.cpython-39.pyc CHANGED
Binary files a/litellm/llms/__pycache__/cloudflare.cpython-39.pyc and b/litellm/llms/__pycache__/cloudflare.cpython-39.pyc differ
 
litellm/llms/__pycache__/cohere.cpython-39.pyc CHANGED
Binary files a/litellm/llms/__pycache__/cohere.cpython-39.pyc and b/litellm/llms/__pycache__/cohere.cpython-39.pyc differ
 
litellm/llms/__pycache__/gemini.cpython-39.pyc CHANGED
Binary files a/litellm/llms/__pycache__/gemini.cpython-39.pyc and b/litellm/llms/__pycache__/gemini.cpython-39.pyc differ
 
litellm/llms/__pycache__/huggingface_restapi.cpython-39.pyc CHANGED
Binary files a/litellm/llms/__pycache__/huggingface_restapi.cpython-39.pyc and b/litellm/llms/__pycache__/huggingface_restapi.cpython-39.pyc differ
 
litellm/llms/__pycache__/maritalk.cpython-39.pyc CHANGED
Binary files a/litellm/llms/__pycache__/maritalk.cpython-39.pyc and b/litellm/llms/__pycache__/maritalk.cpython-39.pyc differ
 
litellm/llms/__pycache__/nlp_cloud.cpython-39.pyc CHANGED
Binary files a/litellm/llms/__pycache__/nlp_cloud.cpython-39.pyc and b/litellm/llms/__pycache__/nlp_cloud.cpython-39.pyc differ
 
litellm/llms/__pycache__/ollama.cpython-39.pyc CHANGED
Binary files a/litellm/llms/__pycache__/ollama.cpython-39.pyc and b/litellm/llms/__pycache__/ollama.cpython-39.pyc differ
 
litellm/llms/__pycache__/ollama_chat.cpython-39.pyc CHANGED
Binary files a/litellm/llms/__pycache__/ollama_chat.cpython-39.pyc and b/litellm/llms/__pycache__/ollama_chat.cpython-39.pyc differ
 
litellm/llms/__pycache__/oobabooga.cpython-39.pyc CHANGED
Binary files a/litellm/llms/__pycache__/oobabooga.cpython-39.pyc and b/litellm/llms/__pycache__/oobabooga.cpython-39.pyc differ
 
litellm/llms/__pycache__/openai.cpython-39.pyc CHANGED
Binary files a/litellm/llms/__pycache__/openai.cpython-39.pyc and b/litellm/llms/__pycache__/openai.cpython-39.pyc differ
 
litellm/llms/__pycache__/openrouter.cpython-39.pyc CHANGED
Binary files a/litellm/llms/__pycache__/openrouter.cpython-39.pyc and b/litellm/llms/__pycache__/openrouter.cpython-39.pyc differ
 
litellm/llms/__pycache__/palm.cpython-39.pyc CHANGED
Binary files a/litellm/llms/__pycache__/palm.cpython-39.pyc and b/litellm/llms/__pycache__/palm.cpython-39.pyc differ
 
litellm/llms/__pycache__/petals.cpython-39.pyc CHANGED
Binary files a/litellm/llms/__pycache__/petals.cpython-39.pyc and b/litellm/llms/__pycache__/petals.cpython-39.pyc differ
 
litellm/llms/__pycache__/replicate.cpython-39.pyc CHANGED
Binary files a/litellm/llms/__pycache__/replicate.cpython-39.pyc and b/litellm/llms/__pycache__/replicate.cpython-39.pyc differ