File size: 635 Bytes
8afc3f4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
---
title: llm-api
emoji: 
colorFrom: indigo
colorTo: yellow
sdk: docker
pinned: false
app_port: 8080
---


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

curl https://innovatorved-llm-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-llm-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
  }'

```