Skip to main content
Solved

Setting temperature to 0

  • November 18, 2025
  • 7 replies
  • 43 views

nroshak
Forum|alt.badge.img+9

Creating a field agent to do a simple task. I want it to find some text in a document and copy it out. It’s doing great on the “finding” but being a bit too creative with the “copying”. Is there any way to set temperature for the model to 0? 

Best answer by Mike_AutomaticN

Hey ​@nroshak,

I don’t see that as an option on field agents. However I guess you could still build a workaround to use both field agents and AI action blocks on automations, as the latter do allow for setting temperature. See image below.

 

 
Would that work?

Completely different matter, but would love to have you join our Airtable Hackathon! Make sure to sign up!!

Mike, Consultant @ Automatic Nation 
YouTube Channel

7 replies

Mike_AutomaticN
Forum|alt.badge.img+28
  • Genius
  • 1585 replies
  • Answer
  • November 18, 2025

Hey ​@nroshak,

I don’t see that as an option on field agents. However I guess you could still build a workaround to use both field agents and AI action blocks on automations, as the latter do allow for setting temperature. See image below.

 

 
Would that work?

Completely different matter, but would love to have you join our Airtable Hackathon! Make sure to sign up!!

Mike, Consultant @ Automatic Nation 
YouTube Channel


Forum|alt.badge.img+6
  • Participating Frequently
  • 6 replies
  • November 18, 2025

If the issue is that the agent field starts with some inner-monologue (e.g., “I see that the source includes a date, so I’ll provide it here: 2025-11-18”), I’ve found that instructing the agent to output in a JSON format and then using a formula field to read that format eliminates any extra data. See below.

 

Agent field output:

"Based on the IMDb page for Frozen, I'll create the requested JSON output with all the required information:

```json
{
  ""title"": ""Frozen"",
  ""originalLanguage"": ""English"",
}
```"

Formula: 

IF({Agent field},REGEX_EXTRACT({Agent field}, '"originalLanguage":\\s*"([^"]*)"'),BLANK())

Formula output:

English


nroshak
Forum|alt.badge.img+9
  • Author
  • Inspiring
  • 26 replies
  • November 18, 2025

Thanks ​@Mike_AutomaticN ! I thought I’d seen this option somewhere. I will switch to an automation to set temp to custom value of 0 and see how that goes.

@ryanmr thank you for the tip, and JSON is indeed a good fix for that problem - my issue is the agent inserting random text in the middle of what it’s meant to be copying 😬


Forum|alt.badge.img+6
  • Participating Frequently
  • 6 replies
  • November 18, 2025

@nroshak - That is really unfortunate! You could still give the JSON instruction a try since the agents seem to operate more mechanically when they receive that instruction. Shifting to an automation is definitely the best way to actually control the temperature value in the prompt until Airtable releases some additional field prompting options.


nroshak
Forum|alt.badge.img+9
  • Author
  • Inspiring
  • 26 replies
  • November 18, 2025

@ryanmr ​@Mike_AutomaticN  Unfortunately, turns out I can’t get an automation to work for this, since the Automations agent is not able to connect to Google Docs. Automations have a very limited ability to interact with Google Docs. The field agents can connect to Google Docs and read the file, but I can’t set the temperature directly (it seems).

I’ll mark this attempt to use Airtable AI to automate this task a failure for now. Thanks for your help! 


Mike_AutomaticN
Forum|alt.badge.img+28
  • Genius
  • 1585 replies
  • November 18, 2025

Ohhhhh ​@nroshak I’m super sorry to hear that.

I have one additional suggestion before sending the classic “you can still do this by building your own n8n/make automation” lol.

What if you enable internet access on the automation -see screenshot below, and you make sure (i) to share the drive url on the prompt, and (ii) such url is accessible publicly.

 



I guess it will NOT work, but it might make sense to give it a shot?

Completely different matter, but would love to have you join our Airtable Hackathon! Make sure to sign up!!

Mike, Consultant @ Automatic Nation 
YouTube Channel


nroshak
Forum|alt.badge.img+9
  • Author
  • Inspiring
  • 26 replies
  • November 18, 2025

Hi Mike, that would probably work, but these particular files need to stay internal-only, not visible to the whole internet. But many thanks for your help! -Natalka