Skip to content

Commit

Permalink
api: Remove the "/" from the URL
Browse files Browse the repository at this point in the history
  • Loading branch information
irfanpena committed May 30, 2024
1 parent 9b89d43 commit 5cb8e7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cortex-js/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ async function bootstrap() {
.addTag('Models', 'These endpoints provide a list and descriptions of all available models within the Cortex framework.')
.addTag('Messages', "These endpoints manage the retrieval and storage of conversation content, including responses from LLMs and other metadata related to chat interactions.")
.addTag('Threads', 'These endpoints handle the creation, retrieval, updating, and deletion of conversation threads.')
.addServer('http://localhost:1337/')
.addServer('http://localhost:1337')
.addServer('http://localhost:1337/v1')
.build();
const document = SwaggerModule.createDocument(app, config);
Expand Down

0 comments on commit 5cb8e7a

Please sign in to comment.