priority is by default set to 1.0 and is used when using two or more steering behaviors on an AICharacter.
The velocity at which the AICharacter seeks is determined when you first create your AICharacter object using the AICharacter constructor.
Note : Seek's direction is calculated only during the first instance of the call and so is more efficient than pursue, if all you want is an object to go to a point.
Here is a full program written implementing 'seek' using PandAI :
#for directx window and functions import direct.directbase.DirectStart #for most bus3d stuff from pandac.PandaModulesimport* #for directx object support from direct.showbase.DirectObjectimport DirectObject #for tasks from direct.taskimport Task #for Actors from direct.actor.Actorimport Actor #for Pandai from panda3d.aiimport*