File size: 624 Bytes
8afc3f4
 
 
 
 
 
 
793c0f5
8afc3f4
 
 
 
b528013
96f0c46
8afc3f4
96f0c46
8afc3f4
 
 
 
 
96f0c46
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
28
---
title: llm-api
emoji: 
colorFrom: indigo
colorTo: yellow
sdk: docker
pinned: false
app_port: 8000
---


```bash

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
  }'

```