Merge pull request #2302 from automatisch/together-ai-integration

feat(together-ai): add app with create completion and create chat completion actions
This commit is contained in:
Ali BARIN
2025-01-24 13:14:29 +01:00
committed by GitHub
17 changed files with 433 additions and 0 deletions

View File

@@ -526,6 +526,15 @@ export default defineConfig({
{ text: 'Connection', link: '/apps/todoist/connection' },
],
},
{
text: 'Together AI',
collapsible: true,
collapsed: true,
items: [
{ text: 'Actions', link: '/apps/together-ai/actions' },
{ text: 'Connection', link: '/apps/together-ai/connection' },
],
},
{
text: 'Trello',
collapsible: true,

View File

@@ -0,0 +1,14 @@
---
favicon: /favicons/together-ai.svg
items:
- name: Create chat completion
desc: Queries a chat model.
- name: Create completion
desc: Queries a language, code, or image model.
---
<script setup>
import CustomListing from '../../components/CustomListing.vue'
</script>
<CustomListing />

View File

@@ -0,0 +1,8 @@
# Together AI
1. Go to [API Keys page](https://api.together.ai/settings/api-keys) on Together AI.
2. Copy your API key.
3. Paste the key into the `API Key` field in Automatisch.
4. Write any screen name to be displayed in Automatisch.
5. Click `Save`.
6. Start using Together AI integration with Automatisch!

View File

@@ -54,6 +54,7 @@ The following integrations are currently supported by Automatisch.
- [Stripe](/apps/stripe/triggers)
- [Telegram](/apps/telegram-bot/actions)
- [Todoist](/apps/todoist/triggers)
- [Together AI](/apps/together-ai/actions)
- [Trello](/apps/trello/actions)
- [Twilio](/apps/twilio/triggers)
- [Twitter](/apps/twitter/triggers)

View File

@@ -0,0 +1 @@
<svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><g clip-path="url(#clip0_542_18748)"><rect width="32" height="32" rx="5.64706" fill="#F1EFED"></rect><circle cx="22.8233" cy="9.64706" r="5.64706" fill="#D3D1D1"></circle><circle cx="22.8233" cy="22.8238" r="5.64706" fill="#D3D1D1"></circle><circle cx="9.64706" cy="22.8238" r="5.64706" fill="#D3D1D1"></circle><circle cx="9.64706" cy="9.64706" r="5.64706" fill="#0F6FFF"></circle></g><defs><clipPath id="clip0_542_18748"><rect width="32" height="32" fill="white"></rect></clipPath></defs></svg>

After

Width:  |  Height:  |  Size: 567 B