api / README.md
Ved Gupta
Update Dockerfile and README.md
793c0f5
|
raw
history blame contribute delete
No virus
624 Bytes
metadata
title: llm-api
emoji: 
colorFrom: indigo
colorTo: yellow
sdk: docker
pinned: false
app_port: 8000

curl https://innovatorved-api.hf.space/v1/models

curl https://innovatorved-api.hf.space/v1/chat/completions -H "Content-Type: application/json" -d '{
     "model": "gpt-3.5-turbo",
     "messages": [{"role": "user", "content": "How are you?"}],
     "temperature": 0.9
   }'

curl https://innovatorved-api.hf.space/v1/chat/completions -H "Content-Type: application/json" -d '{
    "model": "luna-ai-llama2",
    "messages": [{"role": "user", "content": "How are you?"}],
    "temperature": 0.9
  }'