You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docker compose -f script/docker-compose.yaml up -d
localhost:3000을 접속해서 Swagger UI로 API를 테스트하거나 curl로 LLM API 앱이 잘 작동되는지 확인합니다.
curl -X 'POST' \
'http://localhost:3000/generate' \
-H 'accept: application/json' \
-H 'Content-Type: application/json' \
-d '{ "params": { "prompt": "What is the latest LLM Model released by OpenAI?" }}'
{
"response": "The latest LLM model released by OpenAI is called o3, which was unveiled during their recent event. This model is the successor to the o1 model, which is designed for reasoning tasks. The context also mentions other models, such as the text-embedding-3-small, which provides significant improvements in embedding compared to its predecessor, text-embedding-ada-002. \n\nTo summarize, the most recent model is o3, which follows the earlier o1 model, and is a part of OpenAI's continuous updates to their language models to enhance performance and capabilities across various applications."
}