-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
docs: enhance README with technical architecture details #65
base: development
Are you sure you want to change the base?
docs: enhance README with technical architecture details #65
Conversation
Resolves ubiquity-os-marketplace/.github#4 |
This must be in the pull body so you need to edit the top comment. |
┌─────────────────┐ ┌──────────────┐ | ||
│ GitHub Webhook │ ──────> │ Cloudflare │ | ||
│ (Comments) │ │ Worker │ | ||
└─────────────────┘ └──────┬───────┘ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
┌─────────────────┐ ┌──────────────┐ | |
│ GitHub Webhook │ ──────> │ Cloudflare │ | |
│ (Comments) │ │ Worker │ | |
└─────────────────┘ └──────┬───────┘ | |
┌─────────────────┐ ┌──────────────┐ | |
│ GitHub Webhook │ ──────> │ Github │ | |
│ (Comments) │ │ Action │ | |
└─────────────────┘ └──────┬───────┘ |
Shouldn't this be a GitHub Action, since it's more commonly used than worker deployment in most cases?
|
||
```yml | ||
plugins: | ||
- uses: | ||
- plugin: http://localhost:4000 | ||
with: | ||
model: "" | ||
openAiBaseUrl: "" | ||
openRouterBaseUrl: "" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
openRouterBaseUrl: "" | |
openAiBaseUrl: "" |
This is incorrect, it should be openAiBaseUrl.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't we switch every plugin to OpenRouter?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, we should be converting everywhere. Except for the Command-Ask
andtelegram
plugins, almost all other plugins use OpenAI and need to be converted.
|
||
```sh | ||
OPENAI_API_KEY=your_openai_api_key | ||
SUPABASE_URL=your_supabase_url | ||
SUPABASE_KEY=your_supabase_key | ||
VOYAGEAI_API_KEY=your_voyageai_api_key |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
VOYAGEAI_API_KEY=your_voyageai_api_key | |
VOYAGEAI_API_KEY=your_voyageai_api_key | |
OPENROUTER_API_KEY=your_openrouter_key |
Resolves ubiquity-os-marketplace/.github#4