-
Notifications
You must be signed in to change notification settings - Fork 255
Threads graphql #802
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
Merged
Merged
Threads graphql #802
+11,377
−20,973
Conversation
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
…ependency, and simplify data structures
- Update `current_model` usages to incorporate Option type for better error handling. - Modify `ft_toolset` field to utilize Option type, reflecting potential absence of toolset data. - Enhance safety by using `.ok_or` method to provide meaningful error messages when current_model is not set. - Simplify certain sections by eliminating unnecessary variable initialization and comments. - Optimize the connection initialization by directly passing required parameters.
- Delete `at_web.rs` and `tool_web.rs` files due to functionality migration. - Remove `@web` command registration from `at_commands.rs`. - Comment out `ToolWeb` initialization in `tools_list.rs` to reflect removal. - Update URL in `caps.rs` to use new refact URL. - Ensure consistent module updates by removing imports from `mod.rs` files.
# Conflicts: # refact-agent/gui/src/components/Toolbar/Dropdown.tsx
f5dbc44
to
27223da
Compare
- teams workspace is being stored in extensions global context - if user has only one option for workspaces, preselecting it in select box on wizard stage - if user's current active workspace doesn't match with available workspaces from flexus - full cleanup and wizard reappears again - reworked useGetUser
Conflicts: refact-agent/engine/src/constants.rs refact-agent/engine/src/scratchpads/chat_passthrough.rs refact-agent/engine/src/scratchpads/chat_utils_prompts.rs refact-agent/engine/src/scratchpads/passthrough_convert_messages.rs refact-agent/engine/src/tools/tools_list.rs refact-agent/gui/generated/documents.ts refact-agent/gui/generated/graphql/gql.ts refact-agent/gui/generated/graphql/graphql.ts refact-agent/gui/generated/schema.graphql refact-agent/gui/src/__fixtures__/msw.ts refact-agent/gui/src/__tests__/StartNewChat.test.tsx refact-agent/gui/src/components/Sidebar/GroupTree/NavTreeWantWorkspaces.graphql refact-agent/gui/src/components/Sidebar/GroupTree/useGroupTree.ts refact-agent/gui/src/components/Toolbar/Dropdown.tsx refact-agent/gui/src/hooks/useActiveTeamsGroup.ts refact-agent/gui/src/hooks/useGetUser.ts refact-agent/gui/src/hooks/useThinking.ts refact-agent/gui/urqlProvider.tsx Changes to be committed: modified: ../../README.md modified: ../engine/Cargo.toml modified: ../engine/src/at_commands/at_commands.rs modified: ../engine/src/background_tasks.rs modified: ../engine/src/call_validation.rs modified: ../engine/src/caps/self_hosted.rs modified: ../engine/src/cloud/messages_req.rs modified: ../engine/src/constants.rs modified: ../engine/src/forward_to_openai_endpoint.rs modified: ../engine/src/git/checkpoints.rs new file: ../engine/src/git/cleanup.rs new file: ../engine/src/git/cleanup_tests.rs modified: ../engine/src/git/mod.rs modified: ../engine/src/memories.rs modified: ../engine/src/scratchpads/chat_utils_prompts.rs modified: ../engine/src/tools/file_edit/auxiliary.rs modified: ../engine/src/tools/file_edit/tool_update_textdoc.rs modified: ../engine/src/tools/file_edit/tool_update_textdoc_regex.rs modified: ../engine/src/tools/tool_regex_search.rs modified: ../engine/src/tools/tools_list.rs modified: codegen.ts modified: generated/documents.ts modified: generated/graphql/gql.ts modified: generated/graphql/graphql.ts modified: generated/schema.graphql modified: src/__tests__/DeleteChat.test.tsx modified: src/__tests__/RestoreChat.test.tsx modified: src/__tests__/StartNewChat.test.tsx modified: src/__tests__/UserSurvey.test.tsx modified: src/components/Buttons/Buttons.tsx modified: src/components/Callout/Callout.tsx modified: src/components/IntegrationsView/Confirmation/Confirmation.tsx modified: src/components/IntegrationsView/CustomFieldsAndWidgets.tsx modified: src/components/IntegrationsView/Header/IntegrationsHeader.tsx modified: src/components/IntegrationsView/IntegrationForm/FormAvailabilityAndDelete.tsx modified: src/components/IntegrationsView/IntegrationForm/FormFields.tsx modified: src/components/IntegrationsView/IntegrationForm/FormSmartlinks.tsx modified: src/components/IntegrationsView/IntegrationForm/IntegrationAvailability.tsx modified: src/components/IntegrationsView/IntegrationForm/IntegrationForm.tsx modified: src/components/IntegrationsView/IntegrationForm/MCPLogs.tsx deleted: src/components/IntegrationsView/IntegrationsTable/ArgumentsTable.tsx modified: src/components/IntegrationsView/IntegrationsTable/ConfirmationTable.tsx modified: src/components/IntegrationsView/IntegrationsTable/KeyValueTable.tsx modified: src/components/IntegrationsView/IntegrationsTable/ParametersTable.tsx modified: src/components/IntegrationsView/IntegrationsView.tsx modified: src/components/IntegrationsView/IntermediateIntegration/IntermediateIntegration.tsx deleted: src/components/IntegrationsView/hooks/useFormAvailability.ts modified: src/components/IntegrationsView/hooks/useIntegrations.ts new file: src/components/IntegrationsView/utils/prepareNotConfiguredIntegration.ts renamed: src/components/Sidebar/GroupTree/ConfirmGroupSelection/ConfirmGroupSelection.graphql -> src/components/Sidebar/GroupTree/ConfirmGroupSelection.graphql deleted: src/components/Sidebar/GroupTree/ConfirmGroupSelection/ConfirmGroupSelection.module.css deleted: src/components/Sidebar/GroupTree/ConfirmGroupSelection/ConfirmGroupSelection.tsx deleted: src/components/Sidebar/GroupTree/ConfirmGroupSelection/index.ts modified: src/components/Sidebar/GroupTree/CustomTreeNode.tsx modified: src/components/Sidebar/GroupTree/GroupTree.tsx modified: src/components/Sidebar/GroupTree/NavTreeWantWorkspaces.graphql modified: src/components/Sidebar/GroupTree/useGroupTree.ts modified: src/components/Toolbar/Dropdown.tsx modified: src/components/Tools/Textdoc.tsx modified: src/components/Tools/types.ts modified: src/events/index.ts modified: src/features/Chat/Thread/utils.ts modified: src/features/Integrations/IntegrationFormField.tsx deleted: src/features/Integrations/convertRawIntegrationFormValues.ts modified: src/features/Login/LoginPage.tsx new file: src/features/Login/UnderConstruction.tsx modified: src/features/Teams/teamsSlice.ts modified: src/hooks/useActiveTeamsGroup.ts modified: src/hooks/useEventBusForIDE.ts modified: src/hooks/useGetUser.ts modified: src/hooks/useGetUserSurvey.ts modified: src/hooks/useLogin.ts modified: src/hooks/useStartPollingForUser.ts modified: src/hooks/useThinking.ts modified: src/services/refact/integrations.ts modified: src/services/smallcloud/index.ts modified: src/services/smallcloud/types.ts modified: src/utils/test-utils.tsx modified: src/utils/validateSnakeCase.ts modified: urqlProvider.tsx modified: ../../refact-server/refact_utils/third_party/utils/configs.py modified: ../../refact-server/refact_webgui/webgui/selfhost_fastapi_completions.py modified: ../../refact-server/refact_webgui/webgui/selfhost_model_assigner.py modified: ../../refact-server/refact_webgui/webgui/static/tab-model-hosting.html modified: ../../refact-server/refact_webgui/webgui/static/tab-model-hosting.js modified: ../../refact-server/refact_webgui/webgui/static/tab-third-party-apis.js modified: ../../refact-server/refact_webgui/webgui/tab_models_host.py modified: ../../refact-server/setup.py
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
No description provided.