News & Intel

Live

Daily AI-curated intelligence on Palantir Foundry, Ontology, AIP, Apollo, contracts, and community feedback. Updated automatically via GitHub Actions every day at 7 AM UTC.

3636
Total Articles
587
Contract Awards
240
Community Feedback
5
Daily Briefings
ONTOLOGY

Any method to add custom icons for Ontology Object Types

Being able to add SVG to the library would be useful! 1 post - 1 participant Read full topic

Palantir Community — LatestFeb 24, 2026
FOUNDRY

Gemini models do not support JSON schema

The gemini series of models is proxied by functions generic chat completions: import { Function } from "@foundry/functions-api" // NOTE: Model Imports must be manually added through "Resource Imports" in the left-hand panel import { Gemini_2_5_Flash } from "@foundry/models-api/language-models" /** * Used to send a text completion request to the model based on user input * @param {string} userInput - Text input to send to model */ export class MyFunctions { @Function() public async createGenericChatCompletion(userInput: string): Promise<string | undefined> { const response = await Gemini_2_5_Flash.createGenericChatCompletion({ params: { "temperature": 0, "maxTokens": 1000, }, messages: [{ role: "SYSTEM", contents: [{ text: "This is system prompt for completion" }] }, { role: "USER", contents: [{ text: userInput }] }], }); return response.completion; } } I examined the

Palantir Community — LatestFeb 24, 2026
FOUNDRYRELEASE

Question about Automate in foundry

I have a Automation running on all objects has 75k Objects I am performing an action to update the values in a object when I put the batch size 999 with 1 batch run parllel hit execute comes out 76 batches- turns out of 75k objects I see 58k are completed but 17k are not completed I retry the failed batches I can see 67 batches re running is there anyway that I can solve this issue or is there any way that I can re trigger this retry failed batches? 1 post - 1 participant Read full topic

Palantir Community — LatestFeb 24, 2026
FOUNDRY

Can I write multiple times in Lightweight transforms via write_table?

I would like to load some data in memory (e.g. while doing an API call) then process this data, then dump it to disk on the output dataset, and then repeat the operation - to keep the burden on the memory low. Is it possible ? 2 posts - 1 participant Read full topic

Palantir Community — LatestFeb 24, 2026
EARNINGSPARTNERSHIP

If Palantir is Near a Bottom, What's the Best Play in PLTR Stock?

If you click 'Accept all', we and our partners, including 245 who are part of the IAB Transparency & Consent Framework, will also store and / or access information on a device (in other words, us… [+1046 chars]

Yahoo EntertainmentFeb 24, 2026
EARNINGSPARTNERSHIP

Phillip Securities Cuts Palantir (PLTR) Target, Reiterates Buy Rating Again

If you click 'Accept all', we and our partners, including 245 who are part of the IAB Transparency & Consent Framework, will also store and / or access information on a device (in other words, us… [+1046 chars]

Yahoo EntertainmentFeb 24, 2026
EARNINGS

Michael Burry Sounds Alarm On Palantir, Flags CEO Alex Karp's 'Elevated' $17.2 Million Private Jet Tab

The “Big Short” investor Michael Burry has targeted Palantir Technologies Inc. (NASDAQ:PLTR) again after the company's latest annual filing revealed CEO Alex...

Yahoo EntertainmentFeb 24, 2026
EARNINGSPARTNERSHIP

Palantir (PLTR) Called a “Category of One” as Analysts Upgrade the Stock

If you click 'Accept all', we and our partners, including 245 who are part of the IAB Transparency & Consent Framework, will also store and / or access information on a device (in other words, us… [+1046 chars]

Yahoo EntertainmentFeb 24, 2026
RELEASE

The Weekly Dirt: Palantir heads to Miami, but will the real estate impact match Citadel’s?

Palantir Technologies took to X this week to announce its move to Miami.  The publicly traded AI software firm, led by CEO Alex Karp, is leasing space at Industrious, a co-working space in Aventura. Boosters of Miami real estate rejoiced, but will the move, a…

The Real DealFeb 24, 2026
GENERAL

Tech Firm Spars with Pentagon over Unchecked Use of AI in Warfare, Surveillance

As the political West’s militaries struggle to meet recruitment criteria and face widening technological gaps in new weapon systems (particularly hypersonics), they’re forced to look for alternatives in order to continue their aggression against the world. Th…

Globalresearch.caFeb 24, 2026
GENERAL

Selected Articles: Video: The Myth of the “Good Wars.” Jacques Pauwels and Michel Chossudovsky

Video: The Myth of the “Good Wars.” Jacques Pauwels and Michel Chossudovsky By Dr. Jacques R. Pauwels and Prof Michel Chossudovsky, February 23, 2026 The First World War was labelled as “the war to end all wars.” That was … The post Selected Articles: Video: …

Globalresearch.caFeb 24, 2026
GENERAL

The Patriot [Profile of Shyam Sankar of Palantir]

HN Discussion — 0 comments · 2 points.

Hacker NewsFeb 24, 2026
GENERAL

Continue in Code Workspaces doesn't restart / doesn't load

In one of my Repo’s Code Workspaces - Continue can’t be restarted anymore. I see this screen reloading forever: And In the bottom I see: What should I do? How can I get you better error logs? 1 post - 1 participant Read full topic

Palantir Community — LatestFeb 23, 2026
GENERAL

Sunday Summary: The Mamdani/CRE Honeymoon Is Officially Over

That was fast. Not that the commercial real estate industry was expecting a bouquet of flowers and a kiss on the cheek, but since he was inaugurated in January many have been making efforts to play nice with Mayor Zohran Mamdani. The Real Estate Board of New …

Commercial ObserverFeb 23, 2026
FOUNDRY

Delete Action to specific object Set

I have a list of assets in an object table that are linked to a list of parts in another object table. I want to be able to perform a delete action on the parts list only when the selected Asset (Parent) is chosen. I’ve created the delete Action Type. and have linked it to a button in workshop to perform the delete action “clear all asset Parts”. whilst the parameter defaults work and immidiately populate the form with those part numbers that are linked to the selected part. you can still delete other parts which are assocated with different assets. Does anyone know how to perform an action type so that the form only presents the parts listed specifically against the asset selected above? as to now delete parts related to completely different assets. I’m non-Dev, so trying to avoid going down the TypeScript route… thank you 4 posts - 3 participants Read full topic

Palantir Community — LatestFeb 23, 2026
FOUNDRYONTOLOGYRELEASE

Developer Console, unscoped application & Ontology SDK docs

Per a recent announcement: can an Unscoped Developer Console application automatically access and generate Ontology SDK documentation for Projects it has access to? The announcement seems to indicate yes, but I wanted to double-check with the community. ” … Developer Console applications can now be unscoped , giving you full access to Developer Console features that were previously unavailable with standalone OAuth clients, including: Documentation (OSDK, Platform APIs, development) …. “ https://www.palantir.com/docs/foundry/announcements/#create-unscoped-developer-console-applications 1 post - 1 participant Read full topic

Palantir Community — LatestFeb 23, 2026
ONTOLOGY

Pucks Dissappearing on Scheduling Gantt Chart Widget

Hello, We’re having seeing issues with pucks disappearing when dragging and dropping them onto the scheduling gantt widget. We’ve gone through every post on this community, as well as the documentation to ensure our Ontology and the widget is configured correctly. Is anyone else facing this issue? Thanks! Alexa 1 post - 1 participant Read full topic

Palantir Community — LatestFeb 23, 2026
FOUNDRYONTOLOGYRELEASE

Feature request: Add MCP tools for managing Object Type Groups

The Palantir MCP server currently has no tools for creating, updating, or assigning Object Type Groups (type groups). Groups are a core organizational primitive in Ontology Manager, but they can only be managed through the UI — there is no programmatic access via MCP, API, or SDK. Requested Tools list_object_type_groups — List all groups in an ontology create_object_type_group — Create a new group with displayName and description assign_object_type_to_group — Add an object type to one or more groups remove_object_type_from_group — Remove an object type from a group Alternatively, a typeGroups field on create_or_update_foundry_object_type would also work. 1 post - 1 participant Read full topic

Palantir Community — LatestFeb 23, 2026
← PreviousPage 197 of 202Next →