8,767 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
Advice
0
votes
2
replies
103
views
As Data Engineer, what is the best way to grow/prepare/transit to AI era?
As an experienced data engineer, what is the best way to prepare/grow/transition to the AI era?
I have over a decade of DE experience, with AI advancement and adoption, I feel the need to grow as a DE ...
-4
votes
0
answers
46
views
Trying to build a free, open-source tool that gives feedback on website text. Where to start? [closed]
I’m experimenting with a small proof-of-concept project to see how AI could help suggest improvements for website or landing page text. The idea is to identify possible usability or clarity issues, ...
Advice
0
votes
0
replies
41
views
AI/IDE Integration: Claude Code for VS Code vs. Cursor Models
I seem to be missing the subtleties in the IDE integration between these two options:
Claude Code for VS Code
Cursor Models
I've been been using Cursor for the Models; I've toggled a few, seems to ...
-2
votes
0
answers
28
views
Vercel keeps on giving me a deeply error when I try to deploy something [closed]
I tried using the Vercel nextjs-ai-chat but I keep getting an error. Here is the error:
Command "pnpm run build" exited with 1
I’m confused and I don’t know how to fix it. how to I fix ...
-4
votes
0
answers
63
views
Multi Turn Entity Extraction Problem in Langgraph [closed]
I want to make an Intent and Entity Extraction feature using LLM in Langgraph. I want it for HRMS Chatbot. I want, like a chatbot, It recognises intent( which is doing fine), and gather the required ...
1
vote
0
answers
38
views
AnalyzeDocumentContent not found
When attempting to create data extract for a custom form using Azure.AI.DocumentIntelligence, I get this error
The type or namespace AnalyzeDocumentContent does not exist in the namespace Azure.AI....
1
vote
1
answer
157
views
ModuleNotFoundError when importing ConversationBufferMemory and ConversationalRetrievalChain from LangChain
I'm trying to import ConversationBufferMemory and ConversationalRetrievalChain in my Python notebook as follows:
from langchain.memory import ConversationBufferMemory
from langchain.chains import ...
0
votes
1
answer
63
views
Proper way to weight whole tag group same, based on code?
https://github.com/AUTOMATIC1111/stable-diffusion-webui/blob/master/modules/prompt_parser.py
Is the proper way to weigh a group:
(tag1, tag2, tag3):2
or
(tag1, tag2, tag3:2)
Advice
1
vote
4
replies
119
views
How to retain CrewAI Short-Term Memory with Azure OpenAI Embeddings?
I'm working on implementing CrewAI's short-term memory feature, but it's not behaving as expected.
embedder_config = {
"provider": "openai",
"config": {
&...
2
votes
1
answer
30
views
AttributeError: 'NoneType' object has no attribute 'blocks' when running Cache-DiT example with Wan2.2 model
I’m trying to use
Cache-DiT
to accelerate inference for the Wan2.2 model.
However, when I run the example script,
python run_wan_2.2_i2v.py --steps 28 --cache
I get the following error.
Namespace(...
0
votes
0
answers
52
views
Chat model returns empty content when I inject a delayed ToolMessage from a scheduled callback
I have a scheduler that triggers a tool function later (outside the original user–model exchange).
When the scheduled time comes, it sends a ToolMessage back into the chat model — but the model ...
0
votes
0
answers
28
views
Gemini Nano AICore prompt failing with 11-RESPONSE_PROCESSING_ERROR on Android
I'm trying to run the following prompt on Gemini Nano, the on-device AI.
I'm running the prompt on the sample app Google provided:
TASK: Extract entities from the input text into a single JSON object.
...
-4
votes
1
answer
58
views
Troubles with the creation of tools and agents in langchain [closed]
I’m trying to create an agent in LangChain using Google Gemini, but I’m running into some issues because of the latest LangChain updates. As a result, I haven’t been able to create a chain with the ...
0
votes
0
answers
42
views
AgentWorkflow doesn't call functions when using Ollama
I modified the example from the LlamaIndex documentation: Single Agent Workflow Example to work with a local LLM using the @llamaindex/ollama adapter package.
import { tool } from 'llamaindex';
import ...
0
votes
0
answers
69
views
How can I run the inference on the HunyuanImage-3.0 model?
I follow the instructions on https://github.com/Tencent-Hunyuan/HunyuanImage-3.0:
conda create -y -n hunyuan312 python=3.12
conda activate hunyuan312
# 1. First install PyTorch (CUDA 12.8 Version)
...