ChatGPT interacting with farmOS

I just discovered som superpowers for farmOS.
With a plus-subscription on ChatGPT, its possible to make your own GPTs. You can train them the way you like with your own data.

So with all logs, and sensordata in farmos, there is a lot of possibilities. I think it can produce decent reports too.

Only problem for me so far: I cant make ChatGPT authenticate to the farmOS api.

I do this fine from Node-Red.

In the GPT setup I can select
Api key or Oauth

I seem to get 401 no matter how I try this.

1 Like

Can I join this work?

Of course :ok_hand:
Have you tried this too?

1 Like

Hmm.. seems like I nailed it myself. @aathi179
(I have to remind me once again, to never give up :slight_smile: )

Seems like GPT builder is limited for using refresh tokens. I had to extend the token expiracy period in farmOS SimpleOauth setup.
I made a special consumer for this purpose.
I sat the time to one year.

I let the builder authenticate with the api-key option, and paste my access token in the bearer field.

This is the needed schema:

openapi: 3.1.0
info:
  title: farmOS sensorlogger
  version: 1.0.0
servers:
  - url: https://my.farmosserver.domain
paths:
  /api/log/observation:
    get:
      summary: Get latest observation logs
      operationId: getObservationLogs
      parameters:
        - name: sort
          in: query
          required: false
          schema:
            type: string
            example: -timestamp
        - name: page[limit]
          in: query
          required: false
          schema:
            type: integer
            default: 5
      responses:
        '200':
          description: List of observation logs
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        attributes:
                          type: object
                          properties:
                            timestamp:
                              type: string
                              format: date-time
                            name:
                              type: string
                            data:
                              type: object
                              additionalProperties: true
components:
  schemas: {}
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
security:
  - BearerAuth: []

Thats about it, it reads the observation logs.

Propably need some tuning. It seems slow and difficult to serach through the API.
I think the API is not organised in a AI-friendly way.

ChatGPT seems keen on using a proxy to organize the data faster searching.

A new rabbithole to explore.

1 Like

This should be a more generic path.

paths:
  /api/{path}:
    get:
      summary: Generisk GET mot JSON:API
      parameters:
        - name: path
          in: path
          required: true
          schema:
            type: string
            example: log/observation
        - name: sort
          in: query
          schema:
            type: string
        - name: page[limit]
          in: query
          schema:
            type: integer
        - name: filter
          in: query
          schema:
            type: string
      responses:
        '200':
          description: JSON:API-respons
          content:
            application/json:
              schema:
                type: object
security:
  - BearerAuth: []

or just some additions:

paths:
  /api/log/observation:
    get:
      ...
  /api/area:
    get:
      summary: Hent skifter
      operationId: getAreas
      responses:
        '200':
          description: Liste over områder/skifter
  /api/asset:
    get:
      summary: Hent eiendeler
      operationId: getAssets
      responses:
        '200':
          description: Liste over eiendeler

Just need to try it out

1 Like

I didn’t tried yet. But, I want to be in AI ground.

AIGround for fligthsim?? (I try not to look silly)