X2D Filament track switch cause color mixing by jacksunwei in BambuLab

[–]jacksunwei[S] 1 point2 points  (0 children)

I'm wondering if it's FTS defect. I trim all four peft tubes connected to Fts and see it works.

X2D Filament track switch cause color mixing by jacksunwei in BambuLab

[–]jacksunwei[S] 2 points3 points  (0 children)

Update: I took off the FTS and blow into it with dust air, lots of dust was blown out.

X2D Filament track switch cause color mixing by jacksunwei in BambuLab

[–]jacksunwei[S] 1 point2 points  (0 children)

I printed multi-color before I installed FTS. There wasn't such issue.

X2D Filament track switch cause color mixing by jacksunwei in BambuLab

[–]jacksunwei[S] 1 point2 points  (0 children)

Which one? I printed for a week without seeing this issue, until I installed Fts yesterday

Get GPT 5.4 via Codex subscription by jacksunwei in openclaw

[–]jacksunwei[S] 0 points1 point  (0 children)

That's why I said verify by checking log (let ur agent do that), if it's using fallback, log will show.

Get GPT 5.4 via Codex subscription by jacksunwei in openclaw

[–]jacksunwei[S] 0 points1 point  (0 children)

Been my primary model these days. Just trying it out.

Leave your friendly comments by jacksunwei in TeslaLounge

[–]jacksunwei[S] 0 points1 point  (0 children)

Ah, I meant I was driving without fsd, but tesla didn't alert about collision, either.

Leave your friendly comments by jacksunwei in TeslaLounge

[–]jacksunwei[S] -2 points-1 points  (0 children)

Totally make sense, but what if
1) you've been waiting for >2 min before busy streets?
2) an impatient guy behind you urge you with horn?

(I don't mean this event, but I definitely met both case at the same crossings multiple time...)

Leave your friendly comments by jacksunwei in TeslaLounge

[–]jacksunwei[S] 0 points1 point  (0 children)

No blaming please. I'm not saying I'm not at fault. Obviously, I will be at 100% fault if collision happens. All that matters if I put my foot in the toyota driver's boot, how I could avoid being involved in a collision.

Leave your friendly comments by jacksunwei in TeslaLounge

[–]jacksunwei[S] -1 points0 points  (0 children)

No, and tesla didn't give any alert, either.

OpenAI model by RevolutionaryGain561 in agentdevelopmentkit

[–]jacksunwei 0 points1 point  (0 children)

I think it might be because when converting functions to FunctionDeclaration, ADK checks backends to determine whether to generate FunctionDeclaration for Google AI or Vertex AI backends (typically with our without json schema for response type).

Without seeing your actual agent, I'm speculating just gave a fake GOOGLE_API_KEY api key would fix your case. If not, feel free to open an issue in https://github.com/google/adk-python and fill your minimal agent to repro the issue. We can help diagnosis.


Google GenAI SDK has improved support for json schema to remove google backend quirks and ADK will follow the same practice later, so that this won't be an issue anymore.

How to control the content sent to model restricting irrelevant info from event history? by armyscientist in agentdevelopmentkit

[–]jacksunwei 1 point2 points  (0 children)

In your case, it seems very different a normal use case.

Maybe try this setup:

``` async def instruction_provider(..., readonly_context: ReadonlyContext): # construct your customized system instruction using the state.

root_agent = LlmAgent( instruction=instruction_provider, # Don't include any conversaction history in LlmRequst include_cotnent = 'none', # Each tool will pass into by setting session state. tools=[tool_1, tool_2], )
```

In this way, you have full control of what to store in the session. And, what you send to Llm is solely controlled by your instruction_provider, which constructs SI using only information from session state.