pyspur icon indicating copy to clipboard operation
pyspur copied to clipboard

A visual playground for agentic workflows: Iterate over your agents 10x faster

Results 32 pyspur issues
Sort by recently updated
recently updated
newest added

May i get a quick overview between langflow & pyspur

I'm running a self hosted qdrant with an internal dns at https://qdrant.mydomain.org. Port 443 redirecting to 6333. However it seems that the client insists on using the grpc port at...

I have a local branch with k8s deployment yamls. How would you like me to create the PR for it?

It is great to have a framework for creating agents with no-code, but observability is also important for debugging and identifying bottlenecks. Is it possible to implement an integration with...

Would be great if we could have some ollama embeddings. Thanks.

Hi, I'm facing the following error with "Single LLM Call" node and local Ollama (model: mistral): ``` Traceback (most recent call last): File "/Users/user/.local/share/uv/tools/pyspur/lib/python3.12/site-packages/pyspur/nodes/llm/single_llm_call.py", line 333, in run assistant_message =...

Hi, I created a custom tool following the example from https://github.com/PySpur-Dev/pyspur/blob/main/backend/pyspur/examples/tool_function_example.py, but encountered an error when using it and running in workflow: ```python Traceback (most recent call last): File "/data/xxxxxx/venv/lib/python3.11/site-packages/pyspur/execution/workflow_executor.py",...

I initialized a pyspur project and configured PostgreSQL database connection but during the initialization process, I received this error: (llm) user@raspberrypi:~/Desktop/Projects/PySpur-agent/theasy $ pyspur serve ✓ Loaded configuration from .env Running...

I ran PySpur with, pyspur serve --sqlite and I configured a basic RAG, uploaded 64 PDF files but during the collection creation, received this error: ![Image](https://github.com/user-attachments/assets/6160f2f9-3255-4691-a8aa-40afa56a2953) and I also investigated...

```from typing import Dict, Any from pyspur.nodes.decorator import tool_function @tool_function( name="united_healthcare_insurance", display_name="United HealthCare Tool", description="Checks if a United Healthcare insurance is active using API key and policyholder details.", category="Insurance" )...