Jump to content

vitor

Staff
  • Posts

    8,512
  • Joined

  • Last visited

  • Days Won

    708

Posts posted by vitor

  1. It’s not possible to define a hard minimum for the Gallery at the moment. The ones requiring 5.5 show it as a dependency at the top but would still be updated.

     

    That said, while new objects couldn’t possibly be backwards compatible, caching and the number slider will just be ignored gracefully in pre-5.5. Meaning Alfred won’t use the feature but users can still install and use the workflow.

  2. That message is not in the workflow, meaning it is being returned by the API. In other words, you’ll have to ask OpenAI why your key isn’t working. The given link (also not in the workflow) has some hypothesis but only you or OpenAI can know the cause.

  3. As with most things in computing, using local models has tradeoffs. You’ve mentioned some of the positives, but some of the challenges include having to download multi-GB files, requiring better machines, and being harder to set up. None of that is insurmountable, but it is an extra hurdle that can confuse most users. There are so many different knobs and dials, even when using one specific service, that an early explicit goal of this workflow remains to avoid configuration fatigue. We’re aware alternative models exist and are certainly not averse to them, but for this workflow right this moment the operative word is focus.

     

    The great news is that everything in the workflow is built on top of the new Text View, which is content agnostic. In other words, as you’ve noticed, there’s nothing tying Alfred to a particular approach and anyone can build their own!

  4. Why use the general shortcut? When you’re in Alfred you’re supposed to use fn ctrl (whatever is configured at the top of Alfred Preferences → Features → Universal Actions).


    But I’ve been trying in different ways and so far am unable to reproduce the behaviour you’re facing. Please provide your version of macOS, the debugger output, and a short video (with the debugger open and visible) so I can look for clues.

  5. When reporting issues, please include your exact installed versions of:

    • The Workflow.
    • Alfred.
    • macOS.

    In addition to:

    • The debugger output. Perform the failing action, click “Copy” on the top right and paste it here.
    • Details on what you did, what happened, and what you expected to happen. A short video of the steps with the debugger open may help to find the problem faster.

    Thank you. Accurate and thorough information is crucial for a proper diagnosis which allows me to help you better.

  6. Frequently Asked Questions (FAQ)


    How do I set up an alternative AI model?


    The workflow offers the ability to change the API end points and override model names in the Workflow Environment Variables. This requires advanced configuration and is not something we can provide support for, but our community are doing it with great success and can help you on a different thread.


    How do I access the service behind a proxy?


    Add a new https_proxy key in Workflow Environment Variables. Or configure the proxy for all workflows under Alfred Preferences → Advanced → Network.


    Why can’t I use the workflow with a ChatGPT Plus subscription?


    The ChatGPT Plus subscription does not include access to the ChatGPT API and are billed separately.


    Is there a video which shows how to use the workflow?


    Yes, on YouTube.


    How do I report an issue?


    Accurate and thorough information is crucial for a proper diagnosis. When reporting issues, please include your exact installed versions of:

    • The Workflow.
    • Alfred.
    • macOS.

    In addition to:

    • The debugger output. Perform the failing action, click “Copy” on the top right and paste it here.
    • Details on what you did, what happened, and what you expected to happen. A short video of the steps with the debugger open may help to find the problem faster.

     

    Why do I keep getting [Connection Stalled]?

     

    This happens when the workflow takes too long to receive a reply from the API. It indicates a problem either with your connection or OpenAI’s service.


    Open a terminal and run the following (replace the YOUR_API_KEY text within the quotes with your API key):

     

    openai_key="YOUR_API_KEY"
    time /usr/bin/curl "https://api.openai.com/v1/chat/completions" --header "Authorization: Bearer ${openai_key}" --header "Content-Type: application/json" --data '{ "model": "gpt-3.5-turbo", "messages": [{ "role": "user", "content": "What is red?" }], "stream": true }'
    


    It should provide a clue as to what is happening. Include the result in your report.

  7. When reporting issues, please include your exact installed versions of:

    • The Workflow.
    • Alfred.
    • macOS.

    In addition to:

    • The debugger output. Perform the failing action, click “Copy” on the top right and paste it here.
    • Details on what you did, what happened, and what you expected to happen. A short video of the steps with the debugger open may help to find the problem faster.

    Thank you. Accurate and thorough information is crucial for a proper diagnosis which allows me to help you better.

  8. When reporting issues, please include your exact installed versions of:

    • The Workflow.
    • Alfred.
    • macOS.

    In addition to:

    • The debugger output. Perform the failing action, click “Copy” on the top right and paste it here.
    • Details on what you did, what happened, and what you expected to happen. A short video of the steps with the debugger open may help to find the problem faster.

    Thank you. Accurate and thorough information is crucial for a proper diagnosis which allows me to help you better.

  9. When reporting issues, please include your exact installed versions of:

    • The Workflow.
    • Alfred.
    • macOS.

    In addition to:

    • The debugger output. Perform the failing action, click “Copy” on the top right and paste it here.
    • Details on what you did, what happened, and what you expected to happen. A short video of the steps with the debugger open may help to find the problem faster.

    Thank you. Accurate and thorough information is crucial for a proper diagnosis which allows me to help you better.

×
×
  • Create New...