am trying to integrate chainlink functions to do some computations in my system ,however am using geth client , and I can t find anything in the documentation on how to set or configure these functions with local geth network
I only see docs on how to set it on mumbai
Chainlink Functions uses a decentralized network of node operators, all of whom connect their oracles to public blockchains using their own choice of RPC provider (ie, Geth client), in order to maximize decentralization. Functions oracles cannot connect to your locally-run blockchain environment.
What goal are you trying to to accomplish? If you're just looking to write some basic test dara to a private blockchain network using Chainlink, I'd recommend running your own Chainlink node, pointing it to your local Geth network's RPC URL within the Chainlink node's EVM settings, and using Chainlink's Any API functionality (also called Direct Requests or Basic Requests) to make your request.
Best of luck, and I hope that helps!