SwiftyOS
e063f4bcda
Navbar publish agent button hooked up
2024-11-28 10:12:01 +01:00
SwiftyOS
6c64c5b98f
OPEN-2127 make tutorial button show only in the builder
2024-11-28 09:57:30 +01:00
SwiftyOS
5530db63de
Fix styling on home page
2024-11-28 09:43:35 +01:00
SwiftyOS
4278ae61b0
hooked up become a creator
2024-11-28 09:00:32 +01:00
SwiftyOS
0c78edb592
Added logout
2024-11-28 09:00:23 +01:00
Bently
93d3bd3773
feat(platform): Tweaks to Search page ( #8806 )
...
* Update to make it properly show "No results found" and look better
* fix text spacing under SearchFilterChips
* add flex to spacing
2024-11-27 13:57:16 +01:00
Bently
c1c3fd4982
feat(platform): Updates to Search page ( #8769 )
...
Updates to search page
2024-11-27 11:55:51 +01:00
SwiftyOS
d4b69d864f
formatting
2024-11-27 11:53:09 +01:00
SwiftyOS
db3284830a
getting dashboard working
2024-11-27 11:52:50 +01:00
SwiftyOS
d16cf6cfeb
add slug
2024-11-27 11:41:02 +01:00
SwiftyOS
3f3919a843
Create store agent now working
2024-11-27 11:38:10 +01:00
SwiftyOS
244171d748
wip creat agent
2024-11-26 17:37:28 +01:00
SwiftyOS
faa683b6e4
update lock file
2024-11-26 11:37:20 +01:00
SwiftyOS
9255759e1e
Merge remote-tracking branch 'origin/dev' into swiftyos/open-1920-marketplace-home-components
2024-11-26 11:36:31 +01:00
SwiftyOS
abbed4051d
dashboard updates
2024-11-26 11:31:05 +01:00
SwiftyOS
8c5380d4f9
fix creator page layout
2024-11-26 11:16:00 +01:00
SwiftyOS
cacc6e1f86
file uploads working
2024-11-26 11:12:46 +01:00
SwiftyOS
9616baf695
switch to gcs
2024-11-26 11:04:08 +01:00
dependabot[bot]
c6e838da37
chore(market): Update Ruff from 0.7.4 to 0.8.0 ( #8758 )
2024-11-26 08:12:27 +00:00
dependabot[bot]
03f776681a
build(deps-dev): bump the development-dependencies group in /autogpt_platform/backend with 2 updates ( #8761 )
...
build(deps-dev): bump the development-dependencies group
Bumps the development-dependencies group in /autogpt_platform/backend with 2 updates: [poethepoet](https://github.com/nat-n/poethepoet ) and [ruff](https://github.com/astral-sh/ruff ).
Updates `poethepoet` from 0.30.0 to 0.31.0
- [Release notes](https://github.com/nat-n/poethepoet/releases )
- [Commits](https://github.com/nat-n/poethepoet/compare/v0.30.0...v0.31.0 )
Updates `ruff` from 0.7.4 to 0.8.0
- [Release notes](https://github.com/astral-sh/ruff/releases )
- [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md )
- [Commits](https://github.com/astral-sh/ruff/compare/0.7.4...0.8.0 )
---
updated-dependencies:
- dependency-name: poethepoet
dependency-type: direct:development
update-type: version-update:semver-minor
dependency-group: development-dependencies
- dependency-name: ruff
dependency-type: direct:development
update-type: version-update:semver-minor
dependency-group: development-dependencies
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-11-25 22:49:45 +00:00
Reinier van der Leer
3d21d54dab
fix(backend): Add missing strenum dependency
...
Follow-up hotfix for #8358
2024-11-25 18:26:13 +00:00
Reinier van der Leer
eef9bbe991
feat(platform, blocks): Webhook-triggered blocks ( #8358 )
...
- feat(blocks): Add GitHub Pull Request Trigger block
## feat(platform): Add support for Webhook-triggered blocks
- ⚠️ Add `PLATFORM_BASE_URL` setting
- Add webhook config option and `BlockType.WEBHOOK` to `Block`
- Add check to `Block.__init__` to enforce type and shape of webhook event filter
- Add check to `Block.__init__` to enforce `payload` input on webhook blocks
- Add check to `Block.__init__` to disable webhook blocks if `PLATFORM_BASE_URL` is not set
- Add `Webhook` model + CRUD functions in `backend.data.integrations` to represent webhooks created by our system
- Add `IntegrationWebhook` to DB schema + reference `AgentGraphNode.webhook_id`
- Add `set_node_webhook(..)` in `backend.data.graph`
- Add webhook-related endpoints:
- `POST /integrations/{provider}/webhooks/{webhook_id}/ingress` endpoint, to receive webhook payloads, and for all associated nodes create graph executions
- Add `Node.is_triggered_by_event_type(..)` helper method
- `POST /integrations/{provider}/webhooks/{webhook_id}/ping` endpoint, to allow testing a webhook
- Add `WebhookEvent` + pub/sub functions in `backend.data.integrations`
- Add `backend.integrations.webhooks` module, including:
- `graph_lifecycle_hooks`, e.g. `on_graph_activate(..)`, to handle corresponding webhook creation etc.
- Add calls to these hooks in the graph create/update endpoints
- `BaseWebhooksManager` + `GithubWebhooksManager` to handle creating + registering, removing + deregistering, and retrieving existing webhooks, and validating incoming payloads
## Other improvements
- fix(blocks): Allow having an input and output pin with the same name
- fix(blocks): Add tooltip with description in places where block inputs are rendered without `NodeHandle`
- feat(blocks): Allow hiding inputs (e.g. `payload`) with `SchemaField(hidden=True)`
- fix(frontend): Fix `MultiSelector` component styling
- feat(frontend): Add `AlertDialog` UI component
- feat(frontend): Add `NodeMultiSelectInput` component
- feat(backend/data): Add `NodeModel` with `graph_id`, `graph_version`; `GraphModel` with `user_id`
- Add `make_graph_model(..)` helper function in `backend.data.graph`
- refactor(backend/data): Make `RedisEventQueue` generic and move to `backend.data.execution`
- refactor(frontend): Deduplicate & clean up code for different block types in `generateInputHandles(..)` in `CustomNode`
- dx(backend): Add `MissingConfigError`, `NeedConfirmation` exception
---------
Co-authored-by: Zamil Majdy <zamil.majdy@agpt.co >
2024-11-25 18:42:36 +01:00
Reinier van der Leer
464b5309d7
fix(forge): Fix double model kwarg error in AnthropicProvider.create_chat_completion(..) ( #8666 )
2024-11-25 15:41:50 +00:00
Bently
518f196e6b
feat(platform): Updates to Home page ( #8753 )
...
* feat(platform): Updates to Home page
* remove left over variant's
2024-11-25 15:13:26 +01:00
SwiftyOS
a9693b582f
profile page working
2024-11-25 12:16:20 +01:00
SwiftyOS
64fcba3f3a
updates
2024-11-25 11:08:21 +01:00
Zamil Majdy
f00654cb2c
fix(backend): Fix .env file read contention on pyro connection setup ( #8736 )
2024-11-25 16:55:52 +07:00
thecosmicmuffet
bc8ae1f542
docs(platform): Fix url in README.md ( #8747 )
2024-11-23 02:37:41 +00:00
Reinier van der Leer
f2816f98e9
Merge branch 'master' into dev
2024-11-21 18:06:08 +00:00
Abhimanyu Yadav
5ee8b62d67
fix: hide content except login when not authenticated to prevent errors ( #8398 )
...
* fix: hide content except login when not authenticated to prevent errors
* Remove supabase folder from tracking
* Remove supabase folder from Git tracking
* adding git submodule
* adding git submodule
* Discard changes to .gitignore
* only showing AutoGPT logo if user is not present
---------
Co-authored-by: Nicholas Tindle <nicholas.tindle@agpt.co >
Co-authored-by: Nicholas Tindle <nicktindle@outlook.com >
Co-authored-by: Swifty <craigswift13@gmail.com >
Co-authored-by: Toran Bruce Richards <toran.richards@gmail.com >
2024-11-21 15:57:35 +00:00
SwiftyOS
a53f3f0e0a
dark mode tweaks
2024-11-21 13:27:26 +01:00
SwiftyOS
84cdf189f4
udpate z level so it is always ontop
2024-11-21 13:24:33 +01:00
SwiftyOS
610a5b9943
Added theme toggle, fixed navbar
2024-11-21 13:19:04 +01:00
SwiftyOS
18b5f2047c
update poetry locl
2024-11-21 12:15:40 +01:00
SwiftyOS
17db193faa
Merge branch 'dev' into swiftyos/open-1920-marketplace-home-components
2024-11-21 12:13:20 +01:00
Zamil Majdy
8b4bb27077
fix(backend): Re-work the connection input consumption logic for Agent Executor Block ( #8710 )
2024-11-21 11:05:41 +00:00
Zamil Majdy
6954f4eb0e
fix(backend): Revert non-async routes that are changed to async ( #8734 )
2024-11-21 11:46:55 +01:00
Zamil Majdy
c14ab0c37a
refactor(backend): Remove un-needed join in fix_llm_provider_credentials query ( #8728 )
2024-11-21 09:35:17 +00:00
Reinier van der Leer
13da8af170
chore(platform): Bump version to v0.3.3
autogpt-platform-beta-v0.3.3
2024-11-20 23:25:14 +00:00
Bently
63e3244e7e
feat(platform): Updates to Runner Output UI ( #8717 )
...
* feat(platform): Updates to Runner Output UI
* add copy text button to output boxes
* prettier
---------
Co-authored-by: Aarushi <50577581+aarushik93@users.noreply.github.com >
2024-11-20 19:35:29 +00:00
Simone Busoli
19095be249
docs: replace docker-compose with docker compose ( #8502 )
...
Co-authored-by: Swifty <craigswift13@gmail.com >
Co-authored-by: Aarushi <50577581+aarushik93@users.noreply.github.com >
2024-11-20 19:20:46 +00:00
Nicholas Tindle
26a6bd4d10
docs(platform): update docs for security ssrf ( #8675 )
2024-11-20 15:29:45 +00:00
Nicholas Tindle
92bfbfad57
feat: generate simple auth tests ( #8709 )
2024-11-20 15:21:16 +00:00
Krzysztof Czerwinski
cf43248ab8
feat(frontend): Show Agent Output on Monitor page ( #8501 )
...
* Show Output in Monitor
* Updates
* Updates
* Move hardcoded ids to a dedicated enum
---------
Co-authored-by: Toran Bruce Richards <toran.richards@gmail.com >
Co-authored-by: Aarushi <50577581+aarushik93@users.noreply.github.com >
Co-authored-by: Zamil Majdy <zamil.majdy@agpt.co >
2024-11-20 15:08:22 +00:00
dependabot[bot]
aea6e7caed
build(deps): bump the production-dependencies group in /autogpt_platform/frontend with 7 updates ( #8703 )
...
build(deps): bump the production-dependencies group
Bumps the production-dependencies group in /autogpt_platform/frontend with 7 updates:
| Package | From | To |
| --- | --- | --- |
| @radix-ui/react-icons | `1.3.1` | `1.3.2` |
| [@radix-ui/react-scroll-area](https://github.com/radix-ui/primitives ) | `1.2.0` | `1.2.1` |
| [@radix-ui/react-tooltip](https://github.com/radix-ui/primitives ) | `1.1.3` | `1.1.4` |
| [@sentry/nextjs](https://github.com/getsentry/sentry-javascript ) | `8.37.1` | `8.38.0` |
| [elliptic](https://github.com/indutny/elliptic ) | `6.6.0` | `6.6.1` |
| [lucide-react](https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react ) | `0.456.0` | `0.460.0` |
| [react-day-picker](https://github.com/gpbl/react-day-picker ) | `9.3.0` | `9.3.2` |
Updates `@radix-ui/react-icons` from 1.3.1 to 1.3.2
Updates `@radix-ui/react-scroll-area` from 1.2.0 to 1.2.1
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md )
- [Commits](https://github.com/radix-ui/primitives/commits )
Updates `@radix-ui/react-tooltip` from 1.1.3 to 1.1.4
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md )
- [Commits](https://github.com/radix-ui/primitives/commits )
Updates `@sentry/nextjs` from 8.37.1 to 8.38.0
- [Release notes](https://github.com/getsentry/sentry-javascript/releases )
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/develop/CHANGELOG.md )
- [Commits](https://github.com/getsentry/sentry-javascript/compare/8.37.1...8.38.0 )
Updates `elliptic` from 6.6.0 to 6.6.1
- [Commits](https://github.com/indutny/elliptic/compare/v6.6.0...v6.6.1 )
Updates `lucide-react` from 0.456.0 to 0.460.0
- [Release notes](https://github.com/lucide-icons/lucide/releases )
- [Commits](https://github.com/lucide-icons/lucide/commits/0.460.0/packages/lucide-react )
Updates `react-day-picker` from 9.3.0 to 9.3.2
- [Release notes](https://github.com/gpbl/react-day-picker/releases )
- [Changelog](https://github.com/gpbl/react-day-picker/blob/main/CHANGELOG.md )
- [Commits](https://github.com/gpbl/react-day-picker/compare/v9.3.0...v9.3.2 )
---
updated-dependencies:
- dependency-name: "@radix-ui/react-icons"
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: production-dependencies
- dependency-name: "@radix-ui/react-scroll-area"
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: production-dependencies
- dependency-name: "@radix-ui/react-tooltip"
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: production-dependencies
- dependency-name: "@sentry/nextjs"
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: production-dependencies
- dependency-name: elliptic
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: production-dependencies
- dependency-name: lucide-react
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: production-dependencies
- dependency-name: react-day-picker
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: production-dependencies
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Zamil Majdy <zamil.majdy@agpt.co >
2024-11-20 17:20:27 +04:00
dependabot[bot]
c84cc292f1
build(deps): bump fastapi from 0.115.4 to 0.115.5 in /autogpt_platform/market in the production-dependencies group ( #8705 )
...
build(deps): bump fastapi
Bumps the production-dependencies group in /autogpt_platform/market with 1 update: [fastapi](https://github.com/fastapi/fastapi ).
Updates `fastapi` from 0.115.4 to 0.115.5
- [Release notes](https://github.com/fastapi/fastapi/releases )
- [Commits](https://github.com/fastapi/fastapi/compare/0.115.4...0.115.5 )
---
updated-dependencies:
- dependency-name: fastapi
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: production-dependencies
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Zamil Majdy <zamil.majdy@agpt.co >
2024-11-20 17:08:07 +04:00
Swifty
d84ddfcf1a
fix(block): Updated model_version to prevent conflicts with pydantic naming ( #8729 )
...
changed model_version name to avoid conflicts
2024-11-20 12:51:06 +00:00
SwiftyOS
78476630cd
fix migrations
2024-11-20 12:47:35 +01:00
SwiftyOS
7a41f36b13
update lock file
2024-11-20 12:32:07 +01:00
SwiftyOS
c315b8e700
Merge branch 'dev' into swiftyos/open-1920-marketplace-home-components
2024-11-20 12:31:40 +01:00