-
Notifications
You must be signed in to change notification settings - Fork 88
Weaviate Agents extras integration #1562
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
Changes from 3 commits
297ea99
a037b34
1f36365
e7985ee
33834a8
b1455d4
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
from weaviate.exceptions import WeaviateAgentsNotInstalledError | ||
|
||
try: | ||
from weaviate_agents import * # type: ignore # noqa: F403, F401 | ||
except ImportError: | ||
raise WeaviateAgentsNotInstalledError |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
from weaviate.exceptions import WeaviateAgentsNotInstalledError | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. do we need these .pyi files in addition to the .py file? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes the |
||
|
||
try: | ||
from weaviate_agents import * | ||
except ImportError: | ||
raise WeaviateAgentsNotInstalledError |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
from weaviate.exceptions import WeaviateAgentsNotInstalledError | ||
|
||
try: | ||
from weaviate_agents.base import * | ||
except ImportError: | ||
raise WeaviateAgentsNotInstalledError |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
from weaviate.exceptions import WeaviateAgentsNotInstalledError | ||
|
||
try: | ||
from weaviate_agents.classes import * | ||
except ImportError: | ||
raise WeaviateAgentsNotInstalledError |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
from weaviate.exceptions import WeaviateAgentsNotInstalledError | ||
|
||
try: | ||
from weaviate_agents.errors import * | ||
except ImportError: | ||
raise WeaviateAgentsNotInstalledError |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
from weaviate.exceptions import WeaviateAgentsNotInstalledError | ||
|
||
try: | ||
from weaviate_agents.personalization import * # type: ignore | ||
except ImportError: | ||
raise WeaviateAgentsNotInstalledError |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
from weaviate.exceptions import WeaviateAgentsNotInstalledError | ||
|
||
try: | ||
from weaviate_agents.query import * | ||
except ImportError: | ||
raise WeaviateAgentsNotInstalledError |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
from weaviate.exceptions import WeaviateAgentsNotInstalledError | ||
|
||
try: | ||
from weaviate_agents.transformation import * | ||
except ImportError: | ||
raise WeaviateAgentsNotInstalledError |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
from weaviate.exceptions import WeaviateAgentsNotInstalledError | ||
|
||
try: | ||
from weaviate_agents.utils import * # type: ignore | ||
except ImportError: | ||
raise WeaviateAgentsNotInstalledError |
Uh oh!
There was an error while loading. Please reload this page.