Last active
November 20, 2024 01:35
-
-
Save alexandramartinez/57bf665ed073331038e14b94142a617c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#%RAML 1.0 | |
title: MAC-Ollama-API | |
version: 1.0.0 | |
description: Simple API to connect a Mule application and Ollama locally using the MAC project. | |
mediaType: application/json | |
/chat: | |
post: | |
body: | |
description: The question to ask Ollama | |
type: string | |
example: "Hello!" | |
responses: | |
200: | |
description: The response from Ollama | |
body: | |
type: string | |
example: Hey! How's it going? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment