Skip to content

Add minor updates/fixes to readme #1394

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

diksipav
Copy link

@diksipav diksipav commented May 2, 2025

Context

Updated the README.md.

What

  • remove langchain installation (the example works without it),
  • updated the server start command to ./indexify-server --dev (it was using -dev instead of --dev),
  • removed unused Union import from typing, and collection variable.

Additionally, since the server binary is unsigned, macOS flags it as quarantined and prevents it from running. To work around this I used the xattr command to remove the quarantined flag.

And maybe in the section when running the server and executors locally after:

from tensorlake import RemoteGraph
remote_graph = RemoteGraph.by_name("text_embedder")

the invocation can be added:

invocation_id = graph.run(input={"text": "This is a test text"}, block_until_done=True)
print(f"Invocation ID: {invocation_id}")
embedding = graph.output(invocation_id, "embedder")
print("Embedding: ", embedding)

because it runs asynchronously and block_until_done=True is needed in order to wait for the response.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant