Helicone Community Page

Home
Members
harryTheharry
h
harryTheharry
Offline, last seen 2 weeks ago
Joined August 29, 2024

What's the issue?

We subscribed to a premium plan and expected our new org to be labeled as "Pro", but it isn't.

I added scott@helicone.ai to the org for further investigation.
31 comments
a
h
J
Hello,

I've found an issue within the Request View. Here's a detailed breakdown:

  1. In the Request View ( https://www.helicone.ai/requests ), there seems to be an inconsistency with parameter handling that results in referencing an undefined parameter. Specifically:
  1. Given that the Model is "undefined", the following code will always return "GPT3Builder": https://github.com/Helicone/helicone/blob/b6a0b8355abf8d499ea197a4ab6f149de5b56d54/web/components/templates/requestsV2/builder/requestBuilder.tsx#L18
  1. When response_body.choices exists, the code tries to reference this.response.response_body?.choices[0].text. However, the actual response of azure openai models is this.response.response_body?.choices[0].message: https://github.com/Helicone/helicone/blob/b6a0b8355abf8d499ea197a4ab6f149de5b56d54/web/components/templates/requestsV2/builder/GPT3Builder.tsx#L44
I hope this helps in rectifying the issues. Please let me know if you need further information.

Br,
Harry
11 comments
h
a

What's the problem?

On the Pro Plan, we should be able to add unlimited seats to a Helicone Organization. However, we can only add up to 5 seats, even with the Pro Plan subscription.

How to reproduce this?

  1. Upgrade to the Pro Plan.
  2. Try to invite more than 5 users to a Helicone organization.

Root Cause Analysis

The line below doesn't distinguish between the Pro plan and other plans:
https://github.com/Helicone/helicone/blob/104b023364728ad2719c9f6d44db84593d182160/web/components/templates/organizationId/addMemberModal.tsx#L35
9 comments
a
h
Has anyone faced an issue with "Invalid operatorundefined" ?

For example, we use filter in GraphQL:
Plain Text
{
  "limit": 10,
  "offset": 0,
  "filters": [
    {
      "property": {
        "name": "app",
        "value": {
          "equals": "test"
        }
      }
    }
  ]
}


But this returns an error like at the line https://github.com/Helicone/helicone/blob/main/web/services/lib/filters/filters.ts#L31:
Plain Text
  "errors": [
    {
      "message": "Invalid operatorundefined",
      "locations": [
        {
          "line": 2,
          "column": 3
        }
      ],
      "path": [
        "heliconeRequest"
      ],
      "extensions": {
        "code": "INTERNAL_SERVER_ERROR"
      }
    }
  ]
6 comments
J
h
p