This repository was archived by the owner on Jan 9, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
feat: expose description field in Operator entity #66
Merged
jvallesm
merged 4 commits into
main
from
jvalles/ins-3809-fix-update-readme-template-for-a-consistent-description
Mar 4, 2024
Merged
feat: expose description field in Operator entity #66
jvallesm
merged 4 commits into
main
from
jvalles/ins-3809-fix-update-readme-template-for-a-consistent-description
Mar 4, 2024
Conversation
This file contains 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
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #66 +/- ##
=======================================
Coverage 70.84% 70.84%
=======================================
Files 7 7
Lines 758 758
=======================================
Hits 537 537
Misses 175 175
Partials 46 46
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
✅ QA$ curl --request GET \
--url "localhost:8080/vdp/v1beta/component-definitions?page_size=25" \
--header 'accept: application/json' | jq '.component_definitions[] | if .type == "COMPONENT_TYPE_OPERATOR" then .operator_definition else .connector_definition end | {name: .name, description: .description}'
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 21212 0 21212 0 0 548k 0 --:--:-- --:--:-- --:--:-- 559k
{
"name": "connector-definitions/stability-ai",
"description": "Connect the AI models served on the Stability AI Platform"
}
{
"name": "connector-definitions/instill-model",
"description": "Connect the AI models served on the Instill Model Platform"
}
{
"name": "connector-definitions/hugging-face",
"description": "Connect the AI models served on the Hugging Face Platform"
}
{
"name": "connector-definitions/openai",
"description": "Connect the AI models served on the OpenAI Platform"
}
{
"name": "connector-definitions/archetype-ai",
"description": "Connect the AI models served on the Archetype AI Platform"
}
{
"name": "connector-definitions/numbers",
"description": "Seamlessly integrate third-party blockchain services through the Numbers Protocol, providing security, verifiability and traceability to data management"
}
{
"name": "connector-definitions/airbyte-destination",
"description": "Leverage the power of Airbyte and its 30+ destination connectors to facilitate data movement and transformation"
}
{
"name": "connector-definitions/bigquery",
"description": "Insert data to BigQuery tables"
}
{
"name": "connector-definitions/gcs",
"description": "Upload data to Google's Cloud Storage"
}
{
"name": "connector-definitions/google-search",
"description": "Leverage the Google Search engine"
}
{
"name": "connector-definitions/pinecone",
"description": "Build and search vector datasets"
}
{
"name": "connector-definitions/redis",
"description": "Manage data in NoSQL Redis databases"
}
{
"name": "connector-definitions/restapi",
"description": "Make requests to external REST APIs"
}
{
"name": "connector-definitions/website",
"description": "Scrape websites"
}
{
"name": "operator-definitions/base64",
"description": "Encode or decode a string in Base64 format"
}
{
"name": "operator-definitions/start",
"description": "Define data formats customized for their AI-first applications"
}
{
"name": "operator-definitions/end",
"description": "Create an output interface in a pipeline when triggered synchronously"
}
{
"name": "operator-definitions/json",
"description": "Manipulate and convert JSON objects"
}
{
"name": "operator-definitions/image",
"description": "Manipulate image files"
}
{
"name": "operator-definitions/text",
"description": "Extract and manipulate text from different sources"
} |
donch1989
pushed a commit
that referenced
this pull request
Mar 12, 2024
🤖 I have created a release *beep* *boop* --- ## [0.10.0-beta](v0.9.0-beta...v0.10.0-beta) (2024-03-12) ### Features * expose description field in Operator entity ([#66](#66)) ([043d5e3](043d5e3)) ### Bug Fixes * **text:** fix nil meta issue for txt file ([#70](#70)) ([b5ac353](b5ac353)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
Because
This commit
protogen-go
to use the newdescription
field in the operatorentity in
protobufs
.description
fields in the operator definitions to use theimperative form.